2024-04-14T15:55:25.752 INFO:root:teuthology version: 0.0.1.dev267+g6c63784 2024-04-14T15:55:25.753 DEBUG:teuthology.run:Teuthology command: teuthology --description orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/off mon_election/connectivity task/test_host_drain} --owner scheduled_teuthology@teuthology --archive /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159 --name teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi --verbose -- /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159/orig.config.yaml 2024-04-14T15:55:25.786 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-14T15:55:25.869 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159 branch: main description: orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/off mon_election/connectivity task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7646159' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi no_nested_subset: false nuke-on-error: true os_type: centos os_version: 9.stream overrides: admin_socket: branch: main ceph: conf: global: mon election default strategy: 3 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 - mons down - mon down - out of quorum sha1: a971fd5f5719038c70b817bafacd6d5400b1d888 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: a971fd5f5719038c70b817bafacd6d5400b1d888 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: main sha1: 05c9d46e7de5db2cb434c177a6bbfc56f472d09b owner: scheduled_teuthology@teuthology priority: 950 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: 6509 sha1: a971fd5f5719038c70b817bafacd6d5400b1d888 sleep_before_teardown: 0 subset: 21/64 suite: orch suite_branch: main suite_path: /home/teuthworker/src/git.ceph.com_ceph_05c9d46e7de5db2cb434c177a6bbfc56f472d09b/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 05c9d46e7de5db2cb434c177a6bbfc56f472d09b targets: smithi016.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJxjFudNhF057/mo78NbBSDGf0+/HjWORSfeDHvN/8gHf0XMMptm26fGSc/GnQHqKYejumKdIzM/DCWdC8cEi84= smithi027.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFE+nc2i2Vx42/1dgo6pyngSKdKxDRdecgVi58MWGw+tdzZAPFkOo9rfLvERnwAn3pzPgid0Gov0BD3lC/BTXKo= smithi122.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEkJPfQhre4oTK82d2Tx34VdJ+z+qdF3KeeZT8PyyKAXeqk94R5zacGLliIV/F3IW8ccEx2YNFgU0iX8MOxBtIg= 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-08_20:08:14 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-14T15:55:25.869 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_05c9d46e7de5db2cb434c177a6bbfc56f472d09b/qa; will attempt to use it 2024-04-14T15:55:25.870 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_05c9d46e7de5db2cb434c177a6bbfc56f472d09b/qa/tasks 2024-04-14T15:55:25.870 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-14T15:55:25.872 INFO:teuthology.task.internal:Checking packages... 2024-04-14T15:55:25.895 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'a971fd5f5719038c70b817bafacd6d5400b1d888' 2024-04-14T15:55:25.895 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-14T15:55:25.895 INFO:teuthology.packaging:ref: None 2024-04-14T15:55:25.895 INFO:teuthology.packaging:tag: None 2024-04-14T15:55:25.895 INFO:teuthology.packaging:branch: main 2024-04-14T15:55:25.895 INFO:teuthology.packaging:sha1: a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T15:55:25.896 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=main 2024-04-14T15:55:26.222 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-3080.gc2d8c315 2024-04-14T15:55:26.224 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-14T15:55:26.229 INFO:teuthology.task.internal:no buildpackages task found 2024-04-14T15:55:26.229 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-14T15:55:26.250 INFO:teuthology.task.internal:Saving configuration 2024-04-14T15:55:26.264 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-14T15:55:26.270 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-14T15:55:26.299 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi016.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159', '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-14 15:49:07.169812', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJxjFudNhF057/mo78NbBSDGf0+/HjWORSfeDHvN/8gHf0XMMptm26fGSc/GnQHqKYejumKdIzM/DCWdC8cEi84='} 2024-04-14T15:55:26.322 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi027.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159', '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-14 15:49:07.168054', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFE+nc2i2Vx42/1dgo6pyngSKdKxDRdecgVi58MWGw+tdzZAPFkOo9rfLvERnwAn3pzPgid0Gov0BD3lC/BTXKo='} 2024-04-14T15:55:26.344 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi122.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159', '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-14 15:49:07.166041', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEkJPfQhre4oTK82d2Tx34VdJ+z+qdF3KeeZT8PyyKAXeqk94R5zacGLliIV/F3IW8ccEx2YNFgU0iX8MOxBtIg='} 2024-04-14T15:55:26.344 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-14T15:55:26.350 INFO:teuthology.task.internal:roles: ubuntu@smithi016.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-04-14T15:55:26.350 INFO:teuthology.task.internal:roles: ubuntu@smithi027.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-04-14T15:55:26.350 INFO:teuthology.task.internal:roles: ubuntu@smithi122.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-04-14T15:55:26.350 INFO:teuthology.run_tasks:Running task console_log... 2024-04-14T15:55:26.457 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f7fbf548f70>, signals=[15]) 2024-04-14T15:55:26.458 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-14T15:55:26.464 INFO:teuthology.task.internal:Opening connections... 2024-04-14T15:55:26.464 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi016.front.sepia.ceph.com 2024-04-14T15:55:26.466 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:55:26.570 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi027.front.sepia.ceph.com 2024-04-14T15:55:26.571 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:55:26.678 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi122.front.sepia.ceph.com 2024-04-14T15:55:26.679 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi122.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:55:26.767 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-14T15:55:26.774 DEBUG:teuthology.orchestra.run.smithi016:> uname -m 2024-04-14T15:55:26.793 INFO:teuthology.orchestra.run.smithi016.stdout:x86_64 2024-04-14T15:55:26.793 DEBUG:teuthology.orchestra.run.smithi016:> cat /etc/os-release 2024-04-14T15:55:26.850 INFO:teuthology.orchestra.run.smithi016.stdout:NAME="CentOS Stream" 2024-04-14T15:55:26.851 INFO:teuthology.orchestra.run.smithi016.stdout:VERSION="9" 2024-04-14T15:55:26.851 INFO:teuthology.orchestra.run.smithi016.stdout:ID="centos" 2024-04-14T15:55:26.851 INFO:teuthology.orchestra.run.smithi016.stdout:ID_LIKE="rhel fedora" 2024-04-14T15:55:26.851 INFO:teuthology.orchestra.run.smithi016.stdout:VERSION_ID="9" 2024-04-14T15:55:26.851 INFO:teuthology.orchestra.run.smithi016.stdout:PLATFORM_ID="platform:el9" 2024-04-14T15:55:26.851 INFO:teuthology.orchestra.run.smithi016.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-14T15:55:26.851 INFO:teuthology.orchestra.run.smithi016.stdout:ANSI_COLOR="0;31" 2024-04-14T15:55:26.851 INFO:teuthology.orchestra.run.smithi016.stdout:LOGO="fedora-logo-icon" 2024-04-14T15:55:26.851 INFO:teuthology.orchestra.run.smithi016.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-14T15:55:26.851 INFO:teuthology.orchestra.run.smithi016.stdout:HOME_URL="https://centos.org/" 2024-04-14T15:55:26.851 INFO:teuthology.orchestra.run.smithi016.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-14T15:55:26.852 INFO:teuthology.orchestra.run.smithi016.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-14T15:55:26.852 INFO:teuthology.orchestra.run.smithi016.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-14T15:55:26.852 INFO:teuthology.lock.ops:Updating smithi016.front.sepia.ceph.com on lock server 2024-04-14T15:55:26.993 DEBUG:teuthology.orchestra.run.smithi027:> uname -m 2024-04-14T15:55:27.012 INFO:teuthology.orchestra.run.smithi027.stdout:x86_64 2024-04-14T15:55:27.012 DEBUG:teuthology.orchestra.run.smithi027:> cat /etc/os-release 2024-04-14T15:55:27.069 INFO:teuthology.orchestra.run.smithi027.stdout:NAME="CentOS Stream" 2024-04-14T15:55:27.069 INFO:teuthology.orchestra.run.smithi027.stdout:VERSION="9" 2024-04-14T15:55:27.069 INFO:teuthology.orchestra.run.smithi027.stdout:ID="centos" 2024-04-14T15:55:27.070 INFO:teuthology.orchestra.run.smithi027.stdout:ID_LIKE="rhel fedora" 2024-04-14T15:55:27.070 INFO:teuthology.orchestra.run.smithi027.stdout:VERSION_ID="9" 2024-04-14T15:55:27.070 INFO:teuthology.orchestra.run.smithi027.stdout:PLATFORM_ID="platform:el9" 2024-04-14T15:55:27.070 INFO:teuthology.orchestra.run.smithi027.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-14T15:55:27.070 INFO:teuthology.orchestra.run.smithi027.stdout:ANSI_COLOR="0;31" 2024-04-14T15:55:27.070 INFO:teuthology.orchestra.run.smithi027.stdout:LOGO="fedora-logo-icon" 2024-04-14T15:55:27.070 INFO:teuthology.orchestra.run.smithi027.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-14T15:55:27.070 INFO:teuthology.orchestra.run.smithi027.stdout:HOME_URL="https://centos.org/" 2024-04-14T15:55:27.070 INFO:teuthology.orchestra.run.smithi027.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-14T15:55:27.070 INFO:teuthology.orchestra.run.smithi027.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-14T15:55:27.070 INFO:teuthology.orchestra.run.smithi027.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-14T15:55:27.071 INFO:teuthology.lock.ops:Updating smithi027.front.sepia.ceph.com on lock server 2024-04-14T15:55:27.105 DEBUG:teuthology.orchestra.run.smithi122:> uname -m 2024-04-14T15:55:27.123 INFO:teuthology.orchestra.run.smithi122.stdout:x86_64 2024-04-14T15:55:27.123 DEBUG:teuthology.orchestra.run.smithi122:> cat /etc/os-release 2024-04-14T15:55:27.180 INFO:teuthology.orchestra.run.smithi122.stdout:NAME="CentOS Stream" 2024-04-14T15:55:27.180 INFO:teuthology.orchestra.run.smithi122.stdout:VERSION="9" 2024-04-14T15:55:27.180 INFO:teuthology.orchestra.run.smithi122.stdout:ID="centos" 2024-04-14T15:55:27.180 INFO:teuthology.orchestra.run.smithi122.stdout:ID_LIKE="rhel fedora" 2024-04-14T15:55:27.180 INFO:teuthology.orchestra.run.smithi122.stdout:VERSION_ID="9" 2024-04-14T15:55:27.180 INFO:teuthology.orchestra.run.smithi122.stdout:PLATFORM_ID="platform:el9" 2024-04-14T15:55:27.180 INFO:teuthology.orchestra.run.smithi122.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-14T15:55:27.180 INFO:teuthology.orchestra.run.smithi122.stdout:ANSI_COLOR="0;31" 2024-04-14T15:55:27.180 INFO:teuthology.orchestra.run.smithi122.stdout:LOGO="fedora-logo-icon" 2024-04-14T15:55:27.180 INFO:teuthology.orchestra.run.smithi122.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-14T15:55:27.181 INFO:teuthology.orchestra.run.smithi122.stdout:HOME_URL="https://centos.org/" 2024-04-14T15:55:27.181 INFO:teuthology.orchestra.run.smithi122.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-14T15:55:27.181 INFO:teuthology.orchestra.run.smithi122.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-14T15:55:27.181 INFO:teuthology.orchestra.run.smithi122.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-14T15:55:27.181 INFO:teuthology.lock.ops:Updating smithi122.front.sepia.ceph.com on lock server 2024-04-14T15:55:27.205 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-14T15:55:27.216 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-14T15:55:27.221 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-14T15:55:27.221 DEBUG:teuthology.orchestra.run.smithi016:> test '!' -e /home/ubuntu/cephtest 2024-04-14T15:55:27.223 DEBUG:teuthology.orchestra.run.smithi027:> test '!' -e /home/ubuntu/cephtest 2024-04-14T15:55:27.226 DEBUG:teuthology.orchestra.run.smithi122:> test '!' -e /home/ubuntu/cephtest 2024-04-14T15:55:27.242 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-14T15:55:27.250 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-14T15:55:27.250 DEBUG:teuthology.orchestra.run.smithi016:> test -z $(ls -A /var/lib/ceph) 2024-04-14T15:55:27.281 DEBUG:teuthology.orchestra.run.smithi027:> test -z $(ls -A /var/lib/ceph) 2024-04-14T15:55:27.283 DEBUG:teuthology.orchestra.run.smithi122:> test -z $(ls -A /var/lib/ceph) 2024-04-14T15:55:27.399 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-14T15:55:27.477 INFO:teuthology.run_tasks:Running task kernel... 2024-04-14T15:55:27.492 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-14T15:55:27.493 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-14T15:55:27.493 DEBUG:teuthology.orchestra.run.smithi016:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-14T15:55:27.493 DEBUG:teuthology.orchestra.run.smithi027:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-14T15:55:27.494 DEBUG:teuthology.orchestra.run.smithi122:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-14T15:55:27.510 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T15:55:27.511 DEBUG:teuthology.orchestra.run.smithi027:> uname -r 2024-04-14T15:55:27.512 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T15:55:27.512 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T15:55:27.513 DEBUG:teuthology.orchestra.run.smithi016:> uname -r 2024-04-14T15:55:27.513 DEBUG:teuthology.orchestra.run.smithi122:> uname -r 2024-04-14T15:55:27.568 INFO:teuthology.orchestra.run.smithi027.stdout:5.14.0-361.el9.x86_64 2024-04-14T15:55:27.569 INFO:teuthology.task.kernel:Running kernel on smithi027: 5.14.0-361.el9.x86_64 2024-04-14T15:55:27.569 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum install -y kernel 2024-04-14T15:55:27.570 INFO:teuthology.orchestra.run.smithi122.stdout:5.14.0-361.el9.x86_64 2024-04-14T15:55:27.570 INFO:teuthology.task.kernel:Running kernel on smithi122: 5.14.0-361.el9.x86_64 2024-04-14T15:55:27.570 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum install -y kernel 2024-04-14T15:55:27.571 INFO:teuthology.orchestra.run.smithi016.stdout:5.14.0-361.el9.x86_64 2024-04-14T15:55:27.572 INFO:teuthology.task.kernel:Running kernel on smithi016: 5.14.0-361.el9.x86_64 2024-04-14T15:55:27.572 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum install -y kernel 2024-04-14T15:55:29.734 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS-9 - AppStream 16 MB/s | 8.1 MB 00:00 2024-04-14T15:55:29.867 INFO:teuthology.orchestra.run.smithi122.stdout:CentOS-9 - AppStream 13 MB/s | 8.1 MB 00:00 2024-04-14T15:55:29.869 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS-9 - AppStream 13 MB/s | 8.1 MB 00:00 2024-04-14T15:55:31.376 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS-9 - BaseOS 8.8 MB/s | 2.5 MB 00:00 2024-04-14T15:55:31.551 INFO:teuthology.orchestra.run.smithi122.stdout:CentOS-9 - BaseOS 6.9 MB/s | 2.5 MB 00:00 2024-04-14T15:55:31.553 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS-9 - BaseOS 8.0 MB/s | 2.5 MB 00:00 2024-04-14T15:55:32.509 INFO:teuthology.orchestra.run.smithi122.stdout:CentOS Stream 9 - BaseOS 16 MB/s | 8.0 MB 00:00 2024-04-14T15:55:32.742 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS Stream 9 - BaseOS 9.2 MB/s | 8.0 MB 00:00 2024-04-14T15:55:32.894 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - BaseOS 8.5 MB/s | 8.0 MB 00:00 2024-04-14T15:55:34.501 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS Stream 9 - AppStream 31 MB/s | 19 MB 00:00 2024-04-14T15:55:40.036 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS Stream 9 - CRB 3.4 MB/s | 6.2 MB 00:01 2024-04-14T15:55:40.818 INFO:teuthology.orchestra.run.smithi122.stdout:CentOS Stream 9 - AppStream 2.6 MB/s | 19 MB 00:07 2024-04-14T15:55:41.586 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS Stream 9 - Extras packages 47 kB/s | 16 kB 00:00 2024-04-14T15:55:44.911 INFO:teuthology.orchestra.run.smithi122.stdout:CentOS Stream 9 - CRB 12 MB/s | 6.2 MB 00:00 2024-04-14T15:55:45.037 INFO:teuthology.orchestra.run.smithi016.stdout:Extra Packages for Enterprise Linux 6.3 MB/s | 21 MB 00:03 2024-04-14T15:55:46.537 INFO:teuthology.orchestra.run.smithi122.stdout:CentOS Stream 9 - Extras packages 34 kB/s | 16 kB 00:00 2024-04-14T15:55:48.488 INFO:teuthology.orchestra.run.smithi122.stdout:Extra Packages for Enterprise Linux 12 MB/s | 21 MB 00:01 2024-04-14T15:55:50.254 INFO:teuthology.orchestra.run.smithi016.stdout:lab-extras 45 kB/s | 1.7 kB 00:00 2024-04-14T15:55:52.591 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T15:55:52.591 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T15:55:52.591 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T15:55:52.591 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.591 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T15:55:52.591 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.591 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T15:55:52.591 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.592 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T15:55:52.592 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.592 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T15:55:52.592 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.592 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T15:55:52.592 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.592 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T15:55:52.592 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.592 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T15:55:52.592 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.592 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T15:55:52.592 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.593 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T15:55:52.593 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.593 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T15:55:52.593 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.593 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T15:55:52.593 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.593 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T15:55:52.593 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.593 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T15:55:52.593 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.593 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T15:55:52.593 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.593 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T15:55:52.594 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.594 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T15:55:52.594 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.594 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T15:55:52.594 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.594 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T15:55:52.594 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.594 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T15:55:52.594 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.594 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T15:55:52.594 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.594 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T15:55:52.594 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T15:55:52.595 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T15:55:52.596 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.597 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.598 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.598 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.598 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T15:55:52.598 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.598 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.598 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.598 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.598 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T15:55:52.598 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.598 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.598 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.598 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.598 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T15:55:52.599 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.599 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.599 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.599 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.599 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T15:55:52.599 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.599 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.599 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.599 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.599 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T15:55:52.599 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.599 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.599 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.600 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.600 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T15:55:52.600 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.600 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.600 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.600 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T15:55:52.961 INFO:teuthology.orchestra.run.smithi016.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-14T15:55:52.961 INFO:teuthology.orchestra.run.smithi016.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-14T15:55:53.058 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T15:55:53.068 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T15:55:53.068 INFO:teuthology.orchestra.run.smithi016.stdout: Package Architecture Version Repository Size 2024-04-14T15:55:53.068 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T15:55:53.068 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T15:55:53.068 INFO:teuthology.orchestra.run.smithi016.stdout: kernel x86_64 5.14.0-435.el9 baseos 214 k 2024-04-14T15:55:53.069 INFO:teuthology.orchestra.run.smithi016.stdout:Installing dependencies: 2024-04-14T15:55:53.069 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-core x86_64 5.14.0-435.el9 baseos 15 M 2024-04-14T15:55:53.069 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-modules x86_64 5.14.0-435.el9 baseos 34 M 2024-04-14T15:55:53.069 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-modules-core x86_64 5.14.0-435.el9 baseos 28 M 2024-04-14T15:55:53.069 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T15:55:53.069 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T15:55:53.069 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T15:55:53.069 INFO:teuthology.orchestra.run.smithi016.stdout:Install 4 Packages 2024-04-14T15:55:53.069 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T15:55:53.070 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 77 M 2024-04-14T15:55:53.070 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 123 M 2024-04-14T15:55:53.070 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T15:55:53.439 INFO:teuthology.orchestra.run.smithi016.stdout:(1/4): kernel-5.14.0-435.el9.x86_64.rpm 852 kB/s | 214 kB 00:00 2024-04-14T15:55:53.638 INFO:teuthology.orchestra.run.smithi122.stdout:lab-extras 13 kB/s | 1.7 kB 00:00 2024-04-14T15:55:54.956 INFO:teuthology.orchestra.run.smithi016.stdout:(2/4): kernel-core-5.14.0-435.el9.x86_64.rpm 8.5 MB/s | 15 MB 00:01 2024-04-14T15:55:55.871 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T15:55:55.871 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T15:55:55.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T15:55:55.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T15:55:55.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T15:55:55.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T15:55:55.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T15:55:55.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T15:55:55.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T15:55:55.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T15:55:55.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T15:55:55.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T15:55:55.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T15:55:55.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T15:55:55.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T15:55:55.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T15:55:55.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T15:55:55.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T15:55:55.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T15:55:55.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T15:55:55.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T15:55:55.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T15:55:55.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T15:55:55.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T15:55:55.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T15:55:55.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T15:55:55.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T15:55:55.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.876 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T15:55:55.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.876 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T15:55:55.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.876 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T15:55:55.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.876 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T15:55:55.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.876 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T15:55:55.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.876 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T15:55:55.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.877 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T15:55:55.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.877 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T15:55:55.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.877 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T15:55:55.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.877 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T15:55:55.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.877 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T15:55:55.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.877 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T15:55:55.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.878 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T15:55:55.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.878 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T15:55:55.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.879 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T15:55:55.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.879 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T15:55:55.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.880 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T15:55:55.880 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.880 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.880 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.880 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.880 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T15:55:55.880 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.880 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.880 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.880 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.880 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T15:55:55.880 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.880 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.881 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.881 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.881 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T15:55:55.881 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.881 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.881 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T15:55:55.881 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T15:55:56.184 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - AppStream 872 kB/s | 19 MB 00:22 2024-04-14T15:55:56.287 INFO:teuthology.orchestra.run.smithi122.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-14T15:55:56.287 INFO:teuthology.orchestra.run.smithi122.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-14T15:55:56.395 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T15:55:56.402 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T15:55:56.402 INFO:teuthology.orchestra.run.smithi122.stdout: Package Architecture Version Repository Size 2024-04-14T15:55:56.402 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T15:55:56.402 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T15:55:56.402 INFO:teuthology.orchestra.run.smithi122.stdout: kernel x86_64 5.14.0-435.el9 baseos 214 k 2024-04-14T15:55:56.402 INFO:teuthology.orchestra.run.smithi122.stdout:Installing dependencies: 2024-04-14T15:55:56.402 INFO:teuthology.orchestra.run.smithi122.stdout: kernel-core x86_64 5.14.0-435.el9 baseos 15 M 2024-04-14T15:55:56.402 INFO:teuthology.orchestra.run.smithi122.stdout: kernel-modules x86_64 5.14.0-435.el9 baseos 34 M 2024-04-14T15:55:56.402 INFO:teuthology.orchestra.run.smithi122.stdout: kernel-modules-core x86_64 5.14.0-435.el9 baseos 28 M 2024-04-14T15:55:56.402 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T15:55:56.402 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T15:55:56.402 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T15:55:56.402 INFO:teuthology.orchestra.run.smithi122.stdout:Install 4 Packages 2024-04-14T15:55:56.403 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T15:55:56.403 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 77 M 2024-04-14T15:55:56.403 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 123 M 2024-04-14T15:55:56.403 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T15:55:56.406 INFO:teuthology.orchestra.run.smithi016.stdout:(3/4): kernel-modules-5.14.0-435.el9.x86_64.rpm 10 MB/s | 34 MB 00:03 2024-04-14T15:55:56.664 INFO:teuthology.orchestra.run.smithi016.stdout:(4/4): kernel-modules-core-5.14.0-435.el9.x86_6 8.6 MB/s | 28 MB 00:03 2024-04-14T15:55:56.665 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T15:55:56.665 INFO:teuthology.orchestra.run.smithi016.stdout:Total 21 MB/s | 77 MB 00:03 2024-04-14T15:55:56.882 INFO:teuthology.orchestra.run.smithi122.stdout:(1/4): kernel-5.14.0-435.el9.x86_64.rpm 788 kB/s | 214 kB 00:00 2024-04-14T15:55:57.369 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T15:55:57.801 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T15:55:57.801 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T15:55:58.846 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T15:55:58.846 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T15:56:01.472 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T15:56:01.912 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - CRB 3.1 MB/s | 6.2 MB 00:01 2024-04-14T15:56:02.091 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : kernel-modules-core-5.14.0-435.el9.x86_64 1/4 2024-04-14T15:56:02.173 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-14T15:56:05.064 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-14T15:56:05.200 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-14T15:56:05.785 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - Extras packages 6.0 kB/s | 16 kB 00:02 2024-04-14T15:56:06.157 INFO:teuthology.orchestra.run.smithi122.stdout:(2/4): kernel-core-5.14.0-435.el9.x86_64.rpm 1.6 MB/s | 15 MB 00:09 2024-04-14T15:56:09.898 INFO:teuthology.orchestra.run.smithi027.stdout:Extra Packages for Enterprise Linux 5.3 MB/s | 21 MB 00:03 2024-04-14T15:56:10.307 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-14T15:56:10.353 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : kernel-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:56:15.098 INFO:teuthology.orchestra.run.smithi122.stdout:(3/4): kernel-modules-5.14.0-435.el9.x86_64.rpm 1.8 MB/s | 34 MB 00:18 2024-04-14T15:56:15.170 INFO:teuthology.orchestra.run.smithi027.stdout:lab-extras 31 kB/s | 1.7 kB 00:00 2024-04-14T15:56:15.488 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: kernel-modules-core-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:56:16.040 INFO:teuthology.orchestra.run.smithi122.stdout:(4/4): kernel-modules-core-5.14.0-435.el9.x86_6 1.4 MB/s | 28 MB 00:19 2024-04-14T15:56:16.040 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T15:56:16.040 INFO:teuthology.orchestra.run.smithi122.stdout:Total 3.9 MB/s | 77 MB 00:19 2024-04-14T15:56:16.710 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T15:56:17.099 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T15:56:17.099 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T15:56:17.518 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T15:56:17.518 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T15:56:17.518 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T15:56:17.518 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.518 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T15:56:17.518 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.518 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T15:56:17.518 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.518 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T15:56:17.518 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.519 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T15:56:17.520 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.521 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.522 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T15:56:17.523 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.524 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.525 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T15:56:17.526 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.526 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.526 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.526 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T15:56:17.961 INFO:teuthology.orchestra.run.smithi027.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-14T15:56:17.961 INFO:teuthology.orchestra.run.smithi027.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-14T15:56:18.066 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T15:56:18.072 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T15:56:18.072 INFO:teuthology.orchestra.run.smithi027.stdout: Package Architecture Version Repository Size 2024-04-14T15:56:18.072 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T15:56:18.072 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T15:56:18.072 INFO:teuthology.orchestra.run.smithi027.stdout: kernel x86_64 5.14.0-435.el9 baseos 214 k 2024-04-14T15:56:18.072 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-04-14T15:56:18.072 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-core x86_64 5.14.0-435.el9 baseos 15 M 2024-04-14T15:56:18.072 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules x86_64 5.14.0-435.el9 baseos 34 M 2024-04-14T15:56:18.072 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules-core x86_64 5.14.0-435.el9 baseos 28 M 2024-04-14T15:56:18.072 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T15:56:18.072 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T15:56:18.072 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T15:56:18.072 INFO:teuthology.orchestra.run.smithi027.stdout:Install 4 Packages 2024-04-14T15:56:18.073 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T15:56:18.073 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 77 M 2024-04-14T15:56:18.073 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 123 M 2024-04-14T15:56:18.073 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T15:56:18.094 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T15:56:18.094 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T15:56:18.463 INFO:teuthology.orchestra.run.smithi027.stdout:(1/4): kernel-5.14.0-435.el9.x86_64.rpm 652 kB/s | 214 kB 00:00 2024-04-14T15:56:19.680 INFO:teuthology.orchestra.run.smithi027.stdout:(2/4): kernel-core-5.14.0-435.el9.x86_64.rpm 9.8 MB/s | 15 MB 00:01 2024-04-14T15:56:20.575 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T15:56:20.822 INFO:teuthology.orchestra.run.smithi027.stdout:(3/4): kernel-modules-core-5.14.0-435.el9.x86_6 12 MB/s | 28 MB 00:02 2024-04-14T15:56:21.155 INFO:teuthology.orchestra.run.smithi027.stdout:(4/4): kernel-modules-5.14.0-435.el9.x86_64.rpm 11 MB/s | 34 MB 00:03 2024-04-14T15:56:21.158 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T15:56:21.158 INFO:teuthology.orchestra.run.smithi027.stdout:Total 25 MB/s | 77 MB 00:03 2024-04-14T15:56:21.176 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : kernel-modules-core-5.14.0-435.el9.x86_64 1/4 2024-04-14T15:56:21.267 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-14T15:56:21.860 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T15:56:22.348 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T15:56:22.348 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T15:56:23.408 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T15:56:23.409 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T15:56:24.007 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-14T15:56:24.300 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-14T15:56:26.031 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T15:56:26.647 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-modules-core-5.14.0-435.el9.x86_64 1/4 2024-04-14T15:56:26.739 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-14T15:56:29.009 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-14T15:56:29.134 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : kernel-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:56:29.614 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-14T15:56:29.752 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-14T15:56:33.865 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: kernel-modules-core-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:56:34.832 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-14T15:56:34.878 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : kernel-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:56:39.978 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-modules-core-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:56:46.575 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: kernel-core-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:56:46.576 INFO:teuthology.orchestra.run.smithi016.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-14T15:56:46.576 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T15:56:46.623 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: kernel-modules-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:56:47.025 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: kernel-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:56:47.025 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : kernel-5.14.0-435.el9.x86_64 1/4 2024-04-14T15:56:47.025 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-14T15:56:47.025 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-14T15:56:47.480 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : kernel-modules-core-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:56:47.480 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T15:56:47.480 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T15:56:47.480 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-5.14.0-435.el9.x86_64 2024-04-14T15:56:47.480 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-core-5.14.0-435.el9.x86_64 2024-04-14T15:56:47.480 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-modules-5.14.0-435.el9.x86_64 2024-04-14T15:56:47.480 INFO:teuthology.orchestra.run.smithi016.stdout: kernel-modules-core-5.14.0-435.el9.x86_64 2024-04-14T15:56:47.480 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T15:56:47.480 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T15:56:47.826 DEBUG:teuthology.orchestra.run.smithi016:> rpm -q kernel | sort -rV | head -n 1 2024-04-14T15:56:47.932 INFO:teuthology.orchestra.run.smithi016.stdout:kernel-5.14.0-435.el9.x86_64 2024-04-14T15:56:47.933 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-435.el9.x86_64 2024-04-14T15:56:47.933 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-435.el9.x86_64 2024-04-14T15:56:47.933 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-14T15:56:47.933 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-14T15:56:47.933 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-14T15:56:47.933 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi016.front.sepia.ceph.com, path=None, version=distro) 2024-04-14T15:56:47.934 DEBUG:teuthology.orchestra.run.smithi016:> rpm -q kernel | sort -rV | head -n 1 2024-04-14T15:56:48.017 INFO:teuthology.orchestra.run.smithi016.stdout:kernel-5.14.0-435.el9.x86_64 2024-04-14T15:56:48.018 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-435.el9.x86_64 2024-04-14T15:56:48.018 DEBUG:teuthology.orchestra.run.smithi016:> sudo rpm -qi grub2-tools 2024-04-14T15:56:48.056 INFO:teuthology.orchestra.run.smithi016.stdout:Name : grub2-tools 2024-04-14T15:56:48.056 INFO:teuthology.orchestra.run.smithi016.stdout:Epoch : 1 2024-04-14T15:56:48.056 INFO:teuthology.orchestra.run.smithi016.stdout:Version : 2.06 2024-04-14T15:56:48.056 INFO:teuthology.orchestra.run.smithi016.stdout:Release : 68.el9 2024-04-14T15:56:48.056 INFO:teuthology.orchestra.run.smithi016.stdout:Architecture: x86_64 2024-04-14T15:56:48.056 INFO:teuthology.orchestra.run.smithi016.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-14T15:56:48.056 INFO:teuthology.orchestra.run.smithi016.stdout:Group : Unspecified 2024-04-14T15:56:48.056 INFO:teuthology.orchestra.run.smithi016.stdout:Size : 8264254 2024-04-14T15:56:48.056 INFO:teuthology.orchestra.run.smithi016.stdout:License : GPLv3+ 2024-04-14T15:56:48.056 INFO:teuthology.orchestra.run.smithi016.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-14T15:56:48.056 INFO:teuthology.orchestra.run.smithi016.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout:Packager : builder@centos.org 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout:Vendor : CentOS 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout:Summary : Support tools for GRUB. 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout:Description : 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout:hardware devices. 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T15:56:48.057 INFO:teuthology.orchestra.run.smithi016.stdout:This subpackage provides tools for support of all platforms. 2024-04-14T15:56:48.058 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-14T15:56:48.058 INFO:teuthology.task.kernel:Updating grub on smithi016 to boot 5.14.0-435.el9.x86_64 2024-04-14T15:56:48.058 DEBUG:teuthology.orchestra.run.smithi016:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-14T15:56:48.741 INFO:teuthology.orchestra.run.smithi016.stderr:Generating grub configuration file ... 2024-04-14T15:56:50.333 INFO:teuthology.orchestra.run.smithi016.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-14T15:56:50.382 INFO:teuthology.orchestra.run.smithi016.stderr:done 2024-04-14T15:56:50.384 DEBUG:teuthology.orchestra.run.smithi016:> mktemp 2024-04-14T15:56:50.399 INFO:teuthology.orchestra.run.smithi016.stdout:/tmp/tmp.QiO9AZ7f5G 2024-04-14T15:56:50.399 DEBUG:teuthology.orchestra.run.smithi016:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.QiO9AZ7f5G 2024-04-14T15:56:50.471 DEBUG:teuthology.orchestra.run.smithi016:> sudo chmod 0666 /tmp/tmp.QiO9AZ7f5G 2024-04-14T15:56:50.619 DEBUG:teuthology.orchestra.remote:smithi016:/tmp/tmp.QiO9AZ7f5G is 6KB 2024-04-14T15:56:50.640 DEBUG:teuthology.orchestra.run.smithi016:> rm -fr /tmp/tmp.QiO9AZ7f5G 2024-04-14T15:56:50.655 DEBUG:teuthology.orchestra.run.smithi016:> sudo /bin/ls /boot/loader/entries || true 2024-04-14T15:56:50.723 INFO:teuthology.orchestra.run.smithi016.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-14T15:56:50.723 INFO:teuthology.orchestra.run.smithi016.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-14T15:56:50.723 INFO:teuthology.orchestra.run.smithi016.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-14T15:56:50.723 INFO:teuthology.orchestra.run.smithi016.stdout:15949e3c88704300882482eddfd7baae-5.14.0-435.el9.x86_64.conf 2024-04-14T15:56:50.725 DEBUG:teuthology.orchestra.run.smithi016:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-435.el9.x86_64 2024-04-14T15:56:50.867 DEBUG:teuthology.orchestra.run.smithi016:> sudo shutdown -r now 2024-04-14T15:56:50.963 ERROR:paramiko.transport:Socket exception: Connection reset by peer (104) 2024-04-14T15:57:03.169 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: kernel-core-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:57:03.169 INFO:teuthology.orchestra.run.smithi122.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-14T15:57:03.169 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T15:57:03.214 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: kernel-modules-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:57:03.605 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: kernel-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:57:03.605 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : kernel-5.14.0-435.el9.x86_64 1/4 2024-04-14T15:57:03.606 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-14T15:57:03.606 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-14T15:57:04.055 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : kernel-modules-core-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:57:04.055 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T15:57:04.055 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T15:57:04.055 INFO:teuthology.orchestra.run.smithi122.stdout: kernel-5.14.0-435.el9.x86_64 2024-04-14T15:57:04.055 INFO:teuthology.orchestra.run.smithi122.stdout: kernel-core-5.14.0-435.el9.x86_64 2024-04-14T15:57:04.055 INFO:teuthology.orchestra.run.smithi122.stdout: kernel-modules-5.14.0-435.el9.x86_64 2024-04-14T15:57:04.055 INFO:teuthology.orchestra.run.smithi122.stdout: kernel-modules-core-5.14.0-435.el9.x86_64 2024-04-14T15:57:04.055 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T15:57:04.056 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T15:57:04.457 DEBUG:teuthology.orchestra.run.smithi122:> rpm -q kernel | sort -rV | head -n 1 2024-04-14T15:57:04.559 INFO:teuthology.orchestra.run.smithi122.stdout:kernel-5.14.0-435.el9.x86_64 2024-04-14T15:57:04.559 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-435.el9.x86_64 2024-04-14T15:57:04.559 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-435.el9.x86_64 2024-04-14T15:57:04.560 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-14T15:57:04.560 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-14T15:57:04.560 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-04-14T15:57:04.560 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi122.front.sepia.ceph.com, path=None, version=distro) 2024-04-14T15:57:04.560 DEBUG:teuthology.orchestra.run.smithi122:> rpm -q kernel | sort -rV | head -n 1 2024-04-14T15:57:04.641 INFO:teuthology.orchestra.run.smithi122.stdout:kernel-5.14.0-435.el9.x86_64 2024-04-14T15:57:04.641 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-435.el9.x86_64 2024-04-14T15:57:04.642 DEBUG:teuthology.orchestra.run.smithi122:> sudo rpm -qi grub2-tools 2024-04-14T15:57:04.682 INFO:teuthology.orchestra.run.smithi122.stdout:Name : grub2-tools 2024-04-14T15:57:04.682 INFO:teuthology.orchestra.run.smithi122.stdout:Epoch : 1 2024-04-14T15:57:04.682 INFO:teuthology.orchestra.run.smithi122.stdout:Version : 2.06 2024-04-14T15:57:04.683 INFO:teuthology.orchestra.run.smithi122.stdout:Release : 68.el9 2024-04-14T15:57:04.683 INFO:teuthology.orchestra.run.smithi122.stdout:Architecture: x86_64 2024-04-14T15:57:04.683 INFO:teuthology.orchestra.run.smithi122.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-14T15:57:04.683 INFO:teuthology.orchestra.run.smithi122.stdout:Group : Unspecified 2024-04-14T15:57:04.683 INFO:teuthology.orchestra.run.smithi122.stdout:Size : 8264254 2024-04-14T15:57:04.683 INFO:teuthology.orchestra.run.smithi122.stdout:License : GPLv3+ 2024-04-14T15:57:04.683 INFO:teuthology.orchestra.run.smithi122.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-14T15:57:04.683 INFO:teuthology.orchestra.run.smithi122.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-14T15:57:04.683 INFO:teuthology.orchestra.run.smithi122.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-14T15:57:04.683 INFO:teuthology.orchestra.run.smithi122.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-14T15:57:04.683 INFO:teuthology.orchestra.run.smithi122.stdout:Packager : builder@centos.org 2024-04-14T15:57:04.683 INFO:teuthology.orchestra.run.smithi122.stdout:Vendor : CentOS 2024-04-14T15:57:04.683 INFO:teuthology.orchestra.run.smithi122.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-14T15:57:04.684 INFO:teuthology.orchestra.run.smithi122.stdout:Summary : Support tools for GRUB. 2024-04-14T15:57:04.684 INFO:teuthology.orchestra.run.smithi122.stdout:Description : 2024-04-14T15:57:04.684 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T15:57:04.684 INFO:teuthology.orchestra.run.smithi122.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-14T15:57:04.684 INFO:teuthology.orchestra.run.smithi122.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-14T15:57:04.684 INFO:teuthology.orchestra.run.smithi122.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-14T15:57:04.684 INFO:teuthology.orchestra.run.smithi122.stdout:hardware devices. 2024-04-14T15:57:04.684 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T15:57:04.684 INFO:teuthology.orchestra.run.smithi122.stdout:This subpackage provides tools for support of all platforms. 2024-04-14T15:57:04.685 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-14T15:57:04.685 INFO:teuthology.task.kernel:Updating grub on smithi122 to boot 5.14.0-435.el9.x86_64 2024-04-14T15:57:04.685 DEBUG:teuthology.orchestra.run.smithi122:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-14T15:57:05.259 INFO:teuthology.orchestra.run.smithi122.stderr:Generating grub configuration file ... 2024-04-14T15:57:06.584 INFO:teuthology.orchestra.run.smithi122.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-14T15:57:06.614 INFO:teuthology.orchestra.run.smithi122.stderr:done 2024-04-14T15:57:06.617 DEBUG:teuthology.orchestra.run.smithi122:> mktemp 2024-04-14T15:57:06.632 INFO:teuthology.orchestra.run.smithi122.stdout:/tmp/tmp.cHNII3RGq3 2024-04-14T15:57:06.633 DEBUG:teuthology.orchestra.run.smithi122:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.cHNII3RGq3 2024-04-14T15:57:06.719 DEBUG:teuthology.orchestra.run.smithi122:> sudo chmod 0666 /tmp/tmp.cHNII3RGq3 2024-04-14T15:57:06.820 DEBUG:teuthology.orchestra.remote:smithi122:/tmp/tmp.cHNII3RGq3 is 6KB 2024-04-14T15:57:06.869 DEBUG:teuthology.orchestra.run.smithi122:> rm -fr /tmp/tmp.cHNII3RGq3 2024-04-14T15:57:06.882 DEBUG:teuthology.orchestra.run.smithi122:> sudo /bin/ls /boot/loader/entries || true 2024-04-14T15:57:06.951 INFO:teuthology.orchestra.run.smithi122.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-14T15:57:06.951 INFO:teuthology.orchestra.run.smithi122.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-14T15:57:06.951 INFO:teuthology.orchestra.run.smithi122.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-14T15:57:06.951 INFO:teuthology.orchestra.run.smithi122.stdout:15949e3c88704300882482eddfd7baae-5.14.0-435.el9.x86_64.conf 2024-04-14T15:57:06.954 DEBUG:teuthology.orchestra.run.smithi122:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-435.el9.x86_64 2024-04-14T15:57:07.103 DEBUG:teuthology.orchestra.run.smithi122:> sudo shutdown -r now 2024-04-14T15:57:07.207 ERROR:paramiko.transport:Socket exception: Connection reset by peer (104) 2024-04-14T15:57:10.661 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-core-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:57:10.661 INFO:teuthology.orchestra.run.smithi027.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-14T15:57:10.661 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T15:57:10.714 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-modules-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:57:11.098 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: kernel-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:57:11.099 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-5.14.0-435.el9.x86_64 1/4 2024-04-14T15:57:11.099 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-14T15:57:11.099 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-14T15:57:11.549 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : kernel-modules-core-5.14.0-435.el9.x86_64 4/4 2024-04-14T15:57:11.549 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T15:57:11.549 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T15:57:11.549 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-5.14.0-435.el9.x86_64 2024-04-14T15:57:11.549 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-core-5.14.0-435.el9.x86_64 2024-04-14T15:57:11.549 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules-5.14.0-435.el9.x86_64 2024-04-14T15:57:11.549 INFO:teuthology.orchestra.run.smithi027.stdout: kernel-modules-core-5.14.0-435.el9.x86_64 2024-04-14T15:57:11.550 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T15:57:11.550 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T15:57:11.877 DEBUG:teuthology.orchestra.run.smithi027:> rpm -q kernel | sort -rV | head -n 1 2024-04-14T15:57:11.978 INFO:teuthology.orchestra.run.smithi027.stdout:kernel-5.14.0-435.el9.x86_64 2024-04-14T15:57:11.979 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-435.el9.x86_64 2024-04-14T15:57:11.979 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-435.el9.x86_64 2024-04-14T15:57:11.979 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-14T15:57:11.979 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-14T15:57:11.979 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-14T15:57:11.979 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi027.front.sepia.ceph.com, path=None, version=distro) 2024-04-14T15:57:11.980 DEBUG:teuthology.orchestra.run.smithi027:> rpm -q kernel | sort -rV | head -n 1 2024-04-14T15:57:12.064 INFO:teuthology.orchestra.run.smithi027.stdout:kernel-5.14.0-435.el9.x86_64 2024-04-14T15:57:12.065 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-435.el9.x86_64 2024-04-14T15:57:12.065 DEBUG:teuthology.orchestra.run.smithi027:> sudo rpm -qi grub2-tools 2024-04-14T15:57:12.102 INFO:teuthology.orchestra.run.smithi027.stdout:Name : grub2-tools 2024-04-14T15:57:12.103 INFO:teuthology.orchestra.run.smithi027.stdout:Epoch : 1 2024-04-14T15:57:12.103 INFO:teuthology.orchestra.run.smithi027.stdout:Version : 2.06 2024-04-14T15:57:12.103 INFO:teuthology.orchestra.run.smithi027.stdout:Release : 68.el9 2024-04-14T15:57:12.103 INFO:teuthology.orchestra.run.smithi027.stdout:Architecture: x86_64 2024-04-14T15:57:12.103 INFO:teuthology.orchestra.run.smithi027.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-14T15:57:12.103 INFO:teuthology.orchestra.run.smithi027.stdout:Group : Unspecified 2024-04-14T15:57:12.103 INFO:teuthology.orchestra.run.smithi027.stdout:Size : 8264254 2024-04-14T15:57:12.103 INFO:teuthology.orchestra.run.smithi027.stdout:License : GPLv3+ 2024-04-14T15:57:12.103 INFO:teuthology.orchestra.run.smithi027.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-14T15:57:12.103 INFO:teuthology.orchestra.run.smithi027.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-14T15:57:12.103 INFO:teuthology.orchestra.run.smithi027.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-14T15:57:12.103 INFO:teuthology.orchestra.run.smithi027.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-14T15:57:12.104 INFO:teuthology.orchestra.run.smithi027.stdout:Packager : builder@centos.org 2024-04-14T15:57:12.104 INFO:teuthology.orchestra.run.smithi027.stdout:Vendor : CentOS 2024-04-14T15:57:12.104 INFO:teuthology.orchestra.run.smithi027.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-14T15:57:12.104 INFO:teuthology.orchestra.run.smithi027.stdout:Summary : Support tools for GRUB. 2024-04-14T15:57:12.104 INFO:teuthology.orchestra.run.smithi027.stdout:Description : 2024-04-14T15:57:12.104 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T15:57:12.104 INFO:teuthology.orchestra.run.smithi027.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-14T15:57:12.104 INFO:teuthology.orchestra.run.smithi027.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-14T15:57:12.104 INFO:teuthology.orchestra.run.smithi027.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-14T15:57:12.104 INFO:teuthology.orchestra.run.smithi027.stdout:hardware devices. 2024-04-14T15:57:12.104 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T15:57:12.104 INFO:teuthology.orchestra.run.smithi027.stdout:This subpackage provides tools for support of all platforms. 2024-04-14T15:57:12.105 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-14T15:57:12.105 INFO:teuthology.task.kernel:Updating grub on smithi027 to boot 5.14.0-435.el9.x86_64 2024-04-14T15:57:12.105 DEBUG:teuthology.orchestra.run.smithi027:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-14T15:57:12.722 INFO:teuthology.orchestra.run.smithi027.stderr:Generating grub configuration file ... 2024-04-14T15:57:14.110 INFO:teuthology.orchestra.run.smithi027.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-14T15:57:14.134 INFO:teuthology.orchestra.run.smithi027.stderr:done 2024-04-14T15:57:14.136 DEBUG:teuthology.orchestra.run.smithi027:> mktemp 2024-04-14T15:57:14.152 INFO:teuthology.orchestra.run.smithi027.stdout:/tmp/tmp.gtch8YvqLl 2024-04-14T15:57:14.152 DEBUG:teuthology.orchestra.run.smithi027:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.gtch8YvqLl 2024-04-14T15:57:14.224 DEBUG:teuthology.orchestra.run.smithi027:> sudo chmod 0666 /tmp/tmp.gtch8YvqLl 2024-04-14T15:57:14.365 DEBUG:teuthology.orchestra.remote:smithi027:/tmp/tmp.gtch8YvqLl is 6KB 2024-04-14T15:57:14.415 DEBUG:teuthology.orchestra.run.smithi027:> rm -fr /tmp/tmp.gtch8YvqLl 2024-04-14T15:57:14.430 DEBUG:teuthology.orchestra.run.smithi027:> sudo /bin/ls /boot/loader/entries || true 2024-04-14T15:57:14.500 INFO:teuthology.orchestra.run.smithi027.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-14T15:57:14.500 INFO:teuthology.orchestra.run.smithi027.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-14T15:57:14.500 INFO:teuthology.orchestra.run.smithi027.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-14T15:57:14.500 INFO:teuthology.orchestra.run.smithi027.stdout:15949e3c88704300882482eddfd7baae-5.14.0-435.el9.x86_64.conf 2024-04-14T15:57:14.502 DEBUG:teuthology.orchestra.run.smithi027:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-435.el9.x86_64 2024-04-14T15:57:14.660 DEBUG:teuthology.orchestra.run.smithi027:> sudo shutdown -r now 2024-04-14T15:57:20.876 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-14T15:57:20.876 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-14T15:57:20.877 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:57:37.118 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-04-14T15:57:37.119 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi122.front.sepia.ceph.com' 2024-04-14T15:57:37.119 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi122.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:57:44.670 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-14T15:57:44.670 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-14T15:57:44.671 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:58:19.171 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-04-14T15:58:20.881 DEBUG:teuthology.orchestra.remote:timed out 2024-04-14T15:58:28.179 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-14T15:58:28.180 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:58:29.884 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-14T15:58:29.885 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:58:30.254 DEBUG:teuthology.orchestra.run.smithi016:> true 2024-04-14T15:58:30.652 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-14T15:58:30.653 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-435.el9.x86_64"... 2024-04-14T15:58:30.653 DEBUG:teuthology.orchestra.run.smithi016:> uname -r 2024-04-14T15:58:30.667 INFO:teuthology.orchestra.run.smithi016.stdout:5.14.0-435.el9.x86_64 2024-04-14T15:58:30.667 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-435.el9.x86_64 vs 5.14.0-435.el9.x86_64 2024-04-14T15:58:30.667 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-14T15:58:30.667 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-14T15:58:31.266 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-04-14T15:58:31.668 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-14T15:58:31.668 DEBUG:teuthology.orchestra.run.smithi016:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-14T15:58:31.754 INFO:teuthology.orchestra.run.smithi016.stdout:ttyS1 2024-04-14T15:58:31.807 DEBUG:teuthology.parallel:result is None 2024-04-14T15:58:37.121 DEBUG:teuthology.orchestra.remote:timed out 2024-04-14T15:58:43.267 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-14T15:58:43.268 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:58:46.121 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi122.front.sepia.ceph.com' 2024-04-14T15:58:46.122 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi122.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:58:46.334 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-04-14T15:58:46.815 DEBUG:teuthology.orchestra.run.smithi122:> true 2024-04-14T15:58:47.251 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi122.front.sepia.ceph.com' 2024-04-14T15:58:47.251 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-435.el9.x86_64"... 2024-04-14T15:58:47.251 DEBUG:teuthology.orchestra.run.smithi122:> uname -r 2024-04-14T15:58:47.265 INFO:teuthology.orchestra.run.smithi122.stdout:5.14.0-435.el9.x86_64 2024-04-14T15:58:47.265 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-435.el9.x86_64 vs 5.14.0-435.el9.x86_64 2024-04-14T15:58:47.265 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-14T15:58:47.265 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-14T15:58:48.266 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-04-14T15:58:48.267 DEBUG:teuthology.orchestra.run.smithi122:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-14T15:58:48.328 INFO:teuthology.orchestra.run.smithi122.stdout:ttyS1 2024-04-14T15:58:48.373 DEBUG:teuthology.parallel:result is None 2024-04-14T15:59:01.335 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-14T15:59:01.336 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:59:19.838 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.27 2024-04-14T15:59:37.840 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-14T15:59:37.841 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T15:59:38.291 DEBUG:teuthology.orchestra.run.smithi027:> true 2024-04-14T15:59:38.779 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-14T15:59:38.779 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-435.el9.x86_64"... 2024-04-14T15:59:38.780 DEBUG:teuthology.orchestra.run.smithi027:> uname -r 2024-04-14T15:59:38.798 INFO:teuthology.orchestra.run.smithi027.stdout:5.14.0-435.el9.x86_64 2024-04-14T15:59:38.799 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-435.el9.x86_64 vs 5.14.0-435.el9.x86_64 2024-04-14T15:59:38.799 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-14T15:59:38.799 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-14T15:59:39.800 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-14T15:59:39.800 DEBUG:teuthology.orchestra.run.smithi027:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-14T15:59:39.865 INFO:teuthology.orchestra.run.smithi027.stdout:ttyS1 2024-04-14T15:59:39.900 DEBUG:teuthology.parallel:result is None 2024-04-14T15:59:39.900 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-14T15:59:39.908 INFO:teuthology.task.internal:Creating test directory... 2024-04-14T15:59:39.908 DEBUG:teuthology.orchestra.run.smithi016:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-14T15:59:39.914 DEBUG:teuthology.orchestra.run.smithi027:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-14T15:59:39.917 DEBUG:teuthology.orchestra.run.smithi122:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-14T15:59:39.936 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-14T15:59:39.945 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-14T15:59:39.992 INFO:teuthology.task.internal:Creating archive directory... 2024-04-14T15:59:39.993 DEBUG:teuthology.orchestra.run.smithi016:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-14T15:59:39.995 DEBUG:teuthology.orchestra.run.smithi027:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-14T15:59:40.000 DEBUG:teuthology.orchestra.run.smithi122:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-14T15:59:40.033 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-14T15:59:40.040 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-14T15:59:40.041 DEBUG:teuthology.orchestra.run.smithi016:> 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-14T15:59:40.065 DEBUG:teuthology.orchestra.run.smithi027:> 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-14T15:59:40.069 DEBUG:teuthology.orchestra.run.smithi122:> 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-14T15:59:40.102 INFO:teuthology.orchestra.run.smithi016.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-14T15:59:40.103 INFO:teuthology.orchestra.run.smithi027.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-14T15:59:40.116 INFO:teuthology.orchestra.run.smithi016.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-14T15:59:40.119 INFO:teuthology.orchestra.run.smithi027.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-14T15:59:40.119 INFO:teuthology.orchestra.run.smithi122.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-14T15:59:40.133 INFO:teuthology.orchestra.run.smithi122.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-14T15:59:40.135 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-14T15:59:40.143 INFO:teuthology.task.internal:Configuring sudo... 2024-04-14T15:59:40.143 DEBUG:teuthology.orchestra.run.smithi016:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-14T15:59:40.160 DEBUG:teuthology.orchestra.run.smithi027:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-14T15:59:40.162 DEBUG:teuthology.orchestra.run.smithi122:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-14T15:59:40.192 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-14T15:59:40.201 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-14T15:59:40.201 DEBUG:teuthology.orchestra.run.smithi016:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-14T15:59:40.230 DEBUG:teuthology.orchestra.run.smithi027:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-14T15:59:40.233 DEBUG:teuthology.orchestra.run.smithi122:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-14T15:59:40.249 DEBUG:teuthology.orchestra.run.smithi016:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-14T15:59:40.324 DEBUG:teuthology.orchestra.run.smithi016:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-14T15:59:40.379 DEBUG:teuthology.orchestra.run.smithi016:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-14T15:59:40.461 DEBUG:teuthology.orchestra.run.smithi016:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-14T15:59:40.504 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T15:59:40.504 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-14T15:59:40.572 DEBUG:teuthology.orchestra.run.smithi027:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-14T15:59:40.621 DEBUG:teuthology.orchestra.run.smithi027:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-14T15:59:40.670 DEBUG:teuthology.orchestra.run.smithi027:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-14T15:59:40.752 DEBUG:teuthology.orchestra.run.smithi027:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-14T15:59:40.799 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-14T15:59:40.799 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-14T15:59:40.870 DEBUG:teuthology.orchestra.run.smithi122:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-14T15:59:40.917 DEBUG:teuthology.orchestra.run.smithi122:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-14T15:59:40.977 DEBUG:teuthology.orchestra.run.smithi122:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-14T15:59:41.026 DEBUG:teuthology.orchestra.run.smithi122:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-14T15:59:41.068 DEBUG:teuthology.orchestra.run.smithi122:> set -ex 2024-04-14T15:59:41.068 DEBUG:teuthology.orchestra.run.smithi122:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-14T15:59:41.138 DEBUG:teuthology.orchestra.run.smithi016:> sudo service rsyslog restart 2024-04-14T15:59:41.141 DEBUG:teuthology.orchestra.run.smithi027:> sudo service rsyslog restart 2024-04-14T15:59:41.143 DEBUG:teuthology.orchestra.run.smithi122:> sudo service rsyslog restart 2024-04-14T15:59:41.189 INFO:teuthology.orchestra.run.smithi027.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-14T15:59:41.193 INFO:teuthology.orchestra.run.smithi016.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-14T15:59:41.238 INFO:teuthology.orchestra.run.smithi122.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-14T15:59:41.704 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-14T15:59:41.712 INFO:teuthology.task.internal:Starting timer... 2024-04-14T15:59:41.712 INFO:teuthology.run_tasks:Running task pcp... 2024-04-14T15:59:41.722 INFO:teuthology.run_tasks:Running task selinux... 2024-04-14T15:59:41.730 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-14T15:59:41.731 DEBUG:teuthology.orchestra.run.smithi016:> sudo service auditd rotate 2024-04-14T15:59:41.789 INFO:teuthology.orchestra.run.smithi016.stdout:Rotating logs: 2024-04-14T15:59:41.790 DEBUG:teuthology.orchestra.run.smithi027:> sudo service auditd rotate 2024-04-14T15:59:41.854 INFO:teuthology.orchestra.run.smithi027.stdout:Rotating logs: 2024-04-14T15:59:41.856 DEBUG:teuthology.orchestra.run.smithi122:> sudo service auditd rotate 2024-04-14T15:59:41.916 INFO:teuthology.orchestra.run.smithi122.stdout:Rotating logs: 2024-04-14T15:59:41.918 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-14T15:59:41.918 DEBUG:teuthology.orchestra.run.smithi016:> /usr/sbin/getenforce 2024-04-14T15:59:41.942 INFO:teuthology.orchestra.run.smithi016.stdout:Permissive 2024-04-14T15:59:41.942 DEBUG:teuthology.orchestra.run.smithi027:> /usr/sbin/getenforce 2024-04-14T15:59:41.983 INFO:teuthology.orchestra.run.smithi027.stdout:Permissive 2024-04-14T15:59:41.983 DEBUG:teuthology.orchestra.run.smithi122:> /usr/sbin/getenforce 2024-04-14T15:59:42.010 INFO:teuthology.orchestra.run.smithi122.stdout:Permissive 2024-04-14T15:59:42.010 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi016.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi027.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi122.front.sepia.ceph.com': 'permissive'} 2024-04-14T15:59:42.011 DEBUG:teuthology.orchestra.run.smithi016:> 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-14T15:59:42.040 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T15:59:42.041 DEBUG:teuthology.orchestra.run.smithi027:> 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-14T15:59:42.075 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T15:59:42.075 DEBUG:teuthology.orchestra.run.smithi122:> 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-14T15:59:42.105 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T15:59:42.107 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-14T15:59:42.107 DEBUG:teuthology.orchestra.run.smithi016:> sudo /usr/sbin/setenforce permissive 2024-04-14T15:59:42.142 DEBUG:teuthology.orchestra.run.smithi027:> sudo /usr/sbin/setenforce permissive 2024-04-14T15:59:42.176 DEBUG:teuthology.orchestra.run.smithi122:> sudo /usr/sbin/setenforce permissive 2024-04-14T15:59:42.212 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-14T15:59:42.225 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-14T15:59:42.280 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-14T15:59:42.282 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi016.front.sepia.ceph.com,smithi027.front.sepia.ceph.com,smithi122.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-14T16:04:19.691 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi016.front.sepia.ceph.com'), Remote(name='ubuntu@smithi027.front.sepia.ceph.com'), Remote(name='ubuntu@smithi122.front.sepia.ceph.com')] 2024-04-14T16:04:19.692 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-14T16:04:19.693 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi016.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T16:04:19.786 DEBUG:teuthology.orchestra.run.smithi016:> true 2024-04-14T16:04:19.865 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi016.front.sepia.ceph.com' 2024-04-14T16:04:19.865 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-14T16:04:19.866 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi027.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T16:04:19.976 DEBUG:teuthology.orchestra.run.smithi027:> true 2024-04-14T16:04:20.058 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi027.front.sepia.ceph.com' 2024-04-14T16:04:20.058 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi122.front.sepia.ceph.com' 2024-04-14T16:04:20.059 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi122.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-14T16:04:20.151 DEBUG:teuthology.orchestra.run.smithi122:> true 2024-04-14T16:04:20.230 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi122.front.sepia.ceph.com' 2024-04-14T16:04:20.230 INFO:teuthology.run_tasks:Running task clock... 2024-04-14T16:04:20.242 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-14T16:04:20.242 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-14T16:04:20.243 DEBUG:teuthology.orchestra.run.smithi016:> 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-14T16:04:20.245 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-14T16:04:20.245 DEBUG:teuthology.orchestra.run.smithi027:> 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-14T16:04:20.247 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-14T16:04:20.247 DEBUG:teuthology.orchestra.run.smithi122:> 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-14T16:04:20.278 INFO:teuthology.orchestra.run.smithi016.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-14T16:04:20.281 INFO:teuthology.orchestra.run.smithi027.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-14T16:04:20.296 INFO:teuthology.orchestra.run.smithi016.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-14T16:04:20.301 INFO:teuthology.orchestra.run.smithi122.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-14T16:04:20.302 INFO:teuthology.orchestra.run.smithi027.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-14T16:04:20.317 INFO:teuthology.orchestra.run.smithi122.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-14T16:04:20.328 INFO:teuthology.orchestra.run.smithi016.stderr:sudo: ntpd: command not found 2024-04-14T16:04:20.340 INFO:teuthology.orchestra.run.smithi027.stderr:sudo: ntpd: command not found 2024-04-14T16:04:20.342 INFO:teuthology.orchestra.run.smithi016.stdout:506 Cannot talk to daemon 2024-04-14T16:04:20.347 INFO:teuthology.orchestra.run.smithi122.stderr:sudo: ntpd: command not found 2024-04-14T16:04:20.357 INFO:teuthology.orchestra.run.smithi027.stdout:506 Cannot talk to daemon 2024-04-14T16:04:20.359 INFO:teuthology.orchestra.run.smithi016.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-14T16:04:20.360 INFO:teuthology.orchestra.run.smithi122.stdout:506 Cannot talk to daemon 2024-04-14T16:04:20.376 INFO:teuthology.orchestra.run.smithi016.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-14T16:04:20.377 INFO:teuthology.orchestra.run.smithi122.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-14T16:04:20.377 INFO:teuthology.orchestra.run.smithi027.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-14T16:04:20.393 INFO:teuthology.orchestra.run.smithi122.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-14T16:04:20.397 INFO:teuthology.orchestra.run.smithi027.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-14T16:04:20.430 INFO:teuthology.orchestra.run.smithi016.stderr:bash: line 1: ntpq: command not found 2024-04-14T16:04:20.433 INFO:teuthology.orchestra.run.smithi016.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-14T16:04:20.433 INFO:teuthology.orchestra.run.smithi016.stdout:=============================================================================== 2024-04-14T16:04:20.433 INFO:teuthology.orchestra.run.smithi016.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:04:20.433 INFO:teuthology.orchestra.run.smithi016.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:04:20.433 INFO:teuthology.orchestra.run.smithi016.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:04:20.434 INFO:teuthology.orchestra.run.smithi016.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:04:20.442 INFO:teuthology.orchestra.run.smithi122.stderr:bash: line 1: ntpq: command not found 2024-04-14T16:04:20.446 INFO:teuthology.orchestra.run.smithi122.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-14T16:04:20.446 INFO:teuthology.orchestra.run.smithi122.stdout:=============================================================================== 2024-04-14T16:04:20.446 INFO:teuthology.orchestra.run.smithi122.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:04:20.446 INFO:teuthology.orchestra.run.smithi122.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:04:20.446 INFO:teuthology.orchestra.run.smithi122.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:04:20.446 INFO:teuthology.orchestra.run.smithi122.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:04:20.452 INFO:teuthology.orchestra.run.smithi027.stderr:bash: line 1: ntpq: command not found 2024-04-14T16:04:20.456 INFO:teuthology.orchestra.run.smithi027.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-14T16:04:20.456 INFO:teuthology.orchestra.run.smithi027.stdout:=============================================================================== 2024-04-14T16:04:20.456 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:04:20.456 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:04:20.456 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:04:20.456 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:04:20.457 INFO:teuthology.run_tasks:Running task pexec... 2024-04-14T16:04:20.467 INFO:teuthology.task.pexec:Executing custom commands... 2024-04-14T16:04:20.467 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi016.front.sepia.ceph.com 2024-04-14T16:04:20.467 DEBUG:teuthology.orchestra.run.smithi016:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-14T16:04:20.468 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi027.front.sepia.ceph.com 2024-04-14T16:04:20.468 DEBUG:teuthology.orchestra.run.smithi027:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-14T16:04:20.468 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi122.front.sepia.ceph.com 2024-04-14T16:04:20.468 DEBUG:teuthology.orchestra.run.smithi122:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-14T16:04:21.100 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:01 ago on Sun 14 Apr 2024 04:03:19 PM UTC. 2024-04-14T16:04:21.100 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:03 ago on Sun 14 Apr 2024 04:03:17 PM UTC. 2024-04-14T16:04:21.143 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:00:50 ago on Sun 14 Apr 2024 04:03:30 PM UTC. 2024-04-14T16:04:21.386 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:04:21.386 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:04:21.386 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:04:21.386 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.386 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:04:21.387 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.387 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:04:21.387 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.387 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:04:21.387 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.387 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:04:21.387 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.387 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:04:21.387 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.387 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:04:21.387 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.387 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:04:21.387 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:04:21.388 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.389 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:04:21.389 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.389 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:04:21.389 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.389 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:04:21.389 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.389 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:04:21.389 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.389 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:04:21.389 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.389 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:04:21.389 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.389 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:04:21.390 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:04:21.391 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.392 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:04:21.392 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.392 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.392 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.392 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:04:21.392 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.392 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.392 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.392 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.392 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:04:21.392 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.392 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.392 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.393 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.393 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.393 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.393 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:04:21.393 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.393 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.393 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.393 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.393 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:04:21.393 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.393 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.393 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.393 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.394 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.395 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.395 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:04:21.395 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.395 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.395 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.395 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.401 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:04:21.401 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:04:21.401 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:04:21.401 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:04:21.402 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:04:21.402 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:04:21.402 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:04:21.402 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:04:21.402 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:04:21.402 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:04:21.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.404 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:04:21.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.404 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:04:21.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.404 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:04:21.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.404 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:04:21.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.404 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:04:21.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.404 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:04:21.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.404 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.405 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:04:21.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.406 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:04:21.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.406 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:04:21.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.406 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:04:21.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.406 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:04:21.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.406 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:04:21.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.406 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:04:21.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.407 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:04:21.407 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.407 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:04:21.407 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.407 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.407 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.407 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:04:21.407 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.407 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.407 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.407 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.407 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:04:21.408 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.408 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.408 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.408 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.408 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.408 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.408 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:04:21.408 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.408 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.408 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.408 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.408 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.409 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:04:21.410 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.410 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.410 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.410 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.410 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:04:21.410 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.410 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.410 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.410 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.449 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:04:21.449 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:04:21.450 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:04:21.450 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.450 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:04:21.450 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.450 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:04:21.450 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.450 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:04:21.450 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.450 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:04:21.450 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.450 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:04:21.450 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.451 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:04:21.451 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.451 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:04:21.451 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.451 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:04:21.451 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.451 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:04:21.451 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.451 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:04:21.451 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.451 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:04:21.451 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.451 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:04:21.452 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.452 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:04:21.452 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.452 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:04:21.452 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.452 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:04:21.452 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.452 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:04:21.452 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.452 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:04:21.452 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.452 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:04:21.452 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:04:21.453 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.454 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:04:21.454 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.454 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:04:21.454 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.454 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:04:21.454 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.454 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:04:21.454 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.454 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:04:21.454 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.454 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:04:21.454 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.454 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.455 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.456 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.457 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:04:21.457 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.457 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.457 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.457 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.457 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:04:21.457 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.457 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.457 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.457 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.457 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:04:21.457 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.457 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.458 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.458 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.458 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:04:21.458 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.458 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.458 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.458 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.458 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:04:21.458 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.458 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.458 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.458 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:04:21.459 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:04:21.471 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:04:21.471 INFO:teuthology.orchestra.run.smithi122.stdout: Package Architecture Version Repository Size 2024-04-14T16:04:21.471 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:04:21.471 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:04:21.471 INFO:teuthology.orchestra.run.smithi122.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-14T16:04:21.471 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:04:21.472 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:04:21.472 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:04:21.472 INFO:teuthology.orchestra.run.smithi122.stdout:Install 1 Package 2024-04-14T16:04:21.472 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:04:21.472 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 3.1 M 2024-04-14T16:04:21.473 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 9.8 M 2024-04-14T16:04:21.473 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:04:21.473 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:04:21.475 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:04:21.475 INFO:teuthology.orchestra.run.smithi016.stdout: Package Architecture Version Repository Size 2024-04-14T16:04:21.475 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:04:21.475 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:04:21.475 INFO:teuthology.orchestra.run.smithi016.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-14T16:04:21.475 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:04:21.475 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:04:21.475 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:04:21.475 INFO:teuthology.orchestra.run.smithi016.stdout:Install 1 Package 2024-04-14T16:04:21.475 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:04:21.475 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 3.1 M 2024-04-14T16:04:21.475 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 9.8 M 2024-04-14T16:04:21.476 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:04:21.520 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:04:21.534 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:04:21.535 INFO:teuthology.orchestra.run.smithi027.stdout: Package Architecture Version Repository Size 2024-04-14T16:04:21.535 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:04:21.535 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:04:21.535 INFO:teuthology.orchestra.run.smithi027.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-14T16:04:21.535 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:04:21.535 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:04:21.535 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:04:21.535 INFO:teuthology.orchestra.run.smithi027.stdout:Install 1 Package 2024-04-14T16:04:21.535 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:04:21.536 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 3.1 M 2024-04-14T16:04:21.536 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 9.8 M 2024-04-14T16:04:21.536 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:04:21.865 INFO:teuthology.orchestra.run.smithi122.stdout:runc-1.1.12-2.el9.x86_64.rpm 13 MB/s | 3.1 MB 00:00 2024-04-14T16:04:21.866 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:04:21.866 INFO:teuthology.orchestra.run.smithi122.stdout:Total 7.9 MB/s | 3.1 MB 00:00 2024-04-14T16:04:21.901 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:04:21.907 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:04:21.907 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:04:21.986 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:04:21.987 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:04:22.015 INFO:teuthology.orchestra.run.smithi016.stdout:runc-1.1.12-2.el9.x86_64.rpm 12 MB/s | 3.1 MB 00:00 2024-04-14T16:04:22.015 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:04:22.015 INFO:teuthology.orchestra.run.smithi016.stdout:Total 5.8 MB/s | 3.1 MB 00:00 2024-04-14T16:04:22.053 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:04:22.059 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:04:22.059 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:04:22.143 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:04:22.144 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:04:22.202 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:04:22.332 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-14T16:04:22.358 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:04:22.463 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-14T16:04:22.918 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-14T16:04:22.999 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-14T16:04:23.237 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-14T16:04:23.237 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:04:23.237 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:04:23.237 INFO:teuthology.orchestra.run.smithi122.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-14T16:04:23.237 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:04:23.237 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:04:23.354 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-14T16:04:23.354 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:04:23.355 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:04:23.355 INFO:teuthology.orchestra.run.smithi016.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-14T16:04:23.355 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:04:23.355 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:04:23.497 DEBUG:teuthology.parallel:result is None 2024-04-14T16:04:23.605 DEBUG:teuthology.parallel:result is None 2024-04-14T16:04:26.173 INFO:teuthology.orchestra.run.smithi027.stdout:runc-1.1.12-2.el9.x86_64.rpm 713 kB/s | 3.1 MB 00:04 2024-04-14T16:04:26.173 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:04:26.173 INFO:teuthology.orchestra.run.smithi027.stdout:Total 690 kB/s | 3.1 MB 00:04 2024-04-14T16:04:26.214 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:04:26.221 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:04:26.222 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:04:26.308 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:04:26.309 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:04:26.542 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:04:26.629 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-14T16:04:27.178 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-14T16:04:27.550 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-14T16:04:27.550 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:04:27.550 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:04:27.550 INFO:teuthology.orchestra.run.smithi027.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-14T16:04:27.550 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:04:27.551 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:04:27.809 DEBUG:teuthology.parallel:result is None 2024-04-14T16:04:27.809 INFO:teuthology.run_tasks:Running task install... 2024-04-14T16:04:27.818 DEBUG:teuthology.task.install:project ceph 2024-04-14T16:04:27.818 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'a971fd5f5719038c70b817bafacd6d5400b1d888'}} 2024-04-14T16:04:27.818 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'a971fd5f5719038c70b817bafacd6d5400b1d888'} 2024-04-14T16:04:27.819 INFO:teuthology.task.install:Using flavor: default 2024-04-14T16:04:27.825 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-14T16:04:27.825 INFO:teuthology.task.install:extra packages: [] 2024-04-14T16:04:27.825 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': 'a971fd5f5719038c70b817bafacd6d5400b1d888', 'tag': None, 'wait_for_package': False} 2024-04-14T16:04:27.826 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T16:04:27.828 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': 'a971fd5f5719038c70b817bafacd6d5400b1d888', 'tag': None, 'wait_for_package': False} 2024-04-14T16:04:27.828 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T16:04:27.829 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': 'a971fd5f5719038c70b817bafacd6d5400b1d888', 'tag': None, 'wait_for_package': False} 2024-04-14T16:04:27.829 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T16:04:27.970 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/ 2024-04-14T16:04:27.971 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2778.ga971fd5f 2024-04-14T16:04:27.980 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/ 2024-04-14T16:04:27.980 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2778.ga971fd5f 2024-04-14T16:04:28.042 INFO:teuthology.task.install.rpm:Pulling from https://4.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/ 2024-04-14T16:04:28.042 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2778.ga971fd5f 2024-04-14T16:04:28.097 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-14T16:04:28.097 DEBUG:teuthology.orchestra.run.smithi122:> set -ex 2024-04-14T16:04:28.097 DEBUG:teuthology.orchestra.run.smithi122:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-14T16:04:28.129 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-14T16:04:28.130 DEBUG:teuthology.orchestra.run.smithi122:> 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/a971fd5f5719038c70b817bafacd6d5400b1d888/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-14T16:04:28.145 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-14T16:04:28.146 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T16:04:28.146 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-14T16:04:28.148 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://4.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://4.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://4.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-14T16:04:28.148 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-14T16:04:28.148 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-14T16:04:28.179 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-14T16:04:28.179 DEBUG:teuthology.orchestra.run.smithi027:> 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/a971fd5f5719038c70b817bafacd6d5400b1d888/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-14T16:04:28.180 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-14T16:04:28.180 DEBUG:teuthology.orchestra.run.smithi016:> 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/a971fd5f5719038c70b817bafacd6d5400b1d888/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-14T16:04:28.200 DEBUG:teuthology.orchestra.run.smithi122:> 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-14T16:04:28.251 DEBUG:teuthology.orchestra.run.smithi016:> 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-14T16:04:28.251 DEBUG:teuthology.orchestra.run.smithi027:> 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-14T16:04:28.283 DEBUG:teuthology.orchestra.run.smithi122:> 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-14T16:04:28.334 DEBUG:teuthology.orchestra.run.smithi016:> 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-14T16:04:28.339 DEBUG:teuthology.orchestra.run.smithi027:> 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-14T16:04:28.350 INFO:teuthology.orchestra.run.smithi122.stdout:check_obsoletes = 1 2024-04-14T16:04:28.352 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum clean all 2024-04-14T16:04:28.368 INFO:teuthology.orchestra.run.smithi027.stdout:check_obsoletes = 1 2024-04-14T16:04:28.370 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum clean all 2024-04-14T16:04:28.401 INFO:teuthology.orchestra.run.smithi016.stdout:check_obsoletes = 1 2024-04-14T16:04:28.403 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum clean all 2024-04-14T16:04:28.604 INFO:teuthology.orchestra.run.smithi122.stdout:74 files removed 2024-04-14T16:04:28.625 INFO:teuthology.orchestra.run.smithi027.stdout:74 files removed 2024-04-14T16:04:28.633 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install ceph-radosgw 2024-04-14T16:04:28.651 INFO:teuthology.orchestra.run.smithi016.stdout:74 files removed 2024-04-14T16:04:28.654 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install ceph-radosgw 2024-04-14T16:04:28.678 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install ceph-radosgw 2024-04-14T16:04:29.371 INFO:teuthology.orchestra.run.smithi016.stdout:ceph packages for x86_64 216 kB/s | 83 kB 00:00 2024-04-14T16:04:29.421 INFO:teuthology.orchestra.run.smithi027.stdout:ceph packages for x86_64 186 kB/s | 83 kB 00:00 2024-04-14T16:04:29.821 INFO:teuthology.orchestra.run.smithi122.stdout:ceph packages for x86_64 94 kB/s | 83 kB 00:00 2024-04-14T16:04:29.855 INFO:teuthology.orchestra.run.smithi027.stdout:ceph noarch packages 30 kB/s | 11 kB 00:00 2024-04-14T16:04:30.222 INFO:teuthology.orchestra.run.smithi016.stdout:ceph noarch packages 14 kB/s | 11 kB 00:00 2024-04-14T16:04:30.271 INFO:teuthology.orchestra.run.smithi122.stdout:ceph noarch packages 29 kB/s | 11 kB 00:00 2024-04-14T16:04:30.597 INFO:teuthology.orchestra.run.smithi016.stdout:ceph source packages 5.6 kB/s | 1.9 kB 00:00 2024-04-14T16:04:30.647 INFO:teuthology.orchestra.run.smithi122.stdout:ceph source packages 5.5 kB/s | 1.9 kB 00:00 2024-04-14T16:04:31.083 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS-9 - AppStream 18 MB/s | 8.1 MB 00:00 2024-04-14T16:04:31.133 INFO:teuthology.orchestra.run.smithi122.stdout:CentOS-9 - AppStream 18 MB/s | 8.1 MB 00:00 2024-04-14T16:04:31.380 INFO:teuthology.orchestra.run.smithi027.stdout:ceph source packages 1.3 kB/s | 1.9 kB 00:01 2024-04-14T16:04:31.832 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS-9 - AppStream 20 MB/s | 8.1 MB 00:00 2024-04-14T16:04:32.770 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS-9 - BaseOS 8.3 MB/s | 2.5 MB 00:00 2024-04-14T16:04:32.858 INFO:teuthology.orchestra.run.smithi122.stdout:CentOS-9 - BaseOS 6.3 MB/s | 2.5 MB 00:00 2024-04-14T16:04:33.500 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS-9 - BaseOS 8.8 MB/s | 2.5 MB 00:00 2024-04-14T16:04:33.782 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS Stream 9 - BaseOS 15 MB/s | 8.0 MB 00:00 2024-04-14T16:04:35.716 INFO:teuthology.orchestra.run.smithi122.stdout:CentOS Stream 9 - BaseOS 3.3 MB/s | 8.0 MB 00:02 2024-04-14T16:04:38.002 INFO:teuthology.orchestra.run.smithi122.stdout:CentOS Stream 9 - AppStream 16 MB/s | 19 MB 00:01 2024-04-14T16:04:41.983 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS Stream 9 - AppStream 2.7 MB/s | 19 MB 00:07 2024-04-14T16:04:42.915 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - BaseOS 923 kB/s | 8.0 MB 00:08 2024-04-14T16:04:43.051 INFO:teuthology.orchestra.run.smithi122.stdout:CentOS Stream 9 - CRB 4.2 MB/s | 6.2 MB 00:01 2024-04-14T16:04:44.768 INFO:teuthology.orchestra.run.smithi122.stdout:CentOS Stream 9 - Extras packages 31 kB/s | 16 kB 00:00 2024-04-14T16:04:46.570 INFO:teuthology.orchestra.run.smithi122.stdout:Extra Packages for Enterprise Linux 13 MB/s | 21 MB 00:01 2024-04-14T16:04:46.907 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - AppStream 6.7 MB/s | 19 MB 00:02 2024-04-14T16:04:47.367 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS Stream 9 - CRB 3.7 MB/s | 6.2 MB 00:01 2024-04-14T16:04:49.110 INFO:teuthology.orchestra.run.smithi016.stdout:CentOS Stream 9 - Extras packages 33 kB/s | 16 kB 00:00 2024-04-14T16:04:50.995 INFO:teuthology.orchestra.run.smithi016.stdout:Extra Packages for Enterprise Linux 12 MB/s | 21 MB 00:01 2024-04-14T16:04:51.394 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - CRB 7.6 MB/s | 6.2 MB 00:00 2024-04-14T16:04:51.720 INFO:teuthology.orchestra.run.smithi122.stdout:lab-extras 11 kB/s | 1.7 kB 00:00 2024-04-14T16:04:52.926 INFO:teuthology.orchestra.run.smithi027.stdout:CentOS Stream 9 - Extras packages 54 kB/s | 16 kB 00:00 2024-04-14T16:04:54.288 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:04:54.288 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:04:54.288 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:04:54.288 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.288 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:04:54.288 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.289 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:04:54.289 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.289 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:04:54.289 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.289 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:04:54.289 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.289 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:04:54.289 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.289 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:04:54.289 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.289 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:04:54.289 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.290 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:04:54.290 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.290 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:04:54.290 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.290 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:04:54.290 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.290 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:04:54.290 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.290 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:04:54.290 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.290 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:04:54.290 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.291 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:04:54.291 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.291 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:04:54.291 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.291 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:04:54.291 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.291 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:04:54.291 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.291 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:04:54.291 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.291 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:04:54.291 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.292 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:04:54.292 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.292 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:04:54.292 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.292 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:04:54.292 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.292 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:04:54.292 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.292 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:04:54.292 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.292 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:04:54.292 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.292 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:04:54.293 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.293 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:04:54.293 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.293 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:04:54.293 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.293 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:04:54.293 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.293 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:04:54.293 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.293 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:04:54.293 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.293 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:04:54.293 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.294 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:04:54.294 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.294 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:04:54.294 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.294 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:04:54.294 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.294 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:04:54.294 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.294 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.294 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.294 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:04:54.294 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.295 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.296 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.296 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:04:54.296 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.296 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.296 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.296 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.296 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:04:54.296 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.296 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.296 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.296 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.296 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:04:54.296 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.297 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.297 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.297 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.297 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:04:54.297 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.297 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.297 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.297 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.297 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:04:54.297 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.297 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.297 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.298 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:04:54.588 INFO:teuthology.orchestra.run.smithi027.stdout:Extra Packages for Enterprise Linux 14 MB/s | 21 MB 00:01 2024-04-14T16:04:54.870 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:04:54.872 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:04:54.872 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repository Size 2024-04-14T16:04:54.873 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:04:54.873 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:04:54.873 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-radosgw x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 10 M 2024-04-14T16:04:54.873 INFO:teuthology.orchestra.run.smithi122.stdout:Upgrading: 2024-04-14T16:04:54.873 INFO:teuthology.orchestra.run.smithi122.stdout: librados2 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 3.4 M 2024-04-14T16:04:54.873 INFO:teuthology.orchestra.run.smithi122.stdout: librbd1 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 3.1 M 2024-04-14T16:04:54.873 INFO:teuthology.orchestra.run.smithi122.stdout:Installing dependencies: 2024-04-14T16:04:54.873 INFO:teuthology.orchestra.run.smithi122.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-04-14T16:04:54.873 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-base x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 5.4 M 2024-04-14T16:04:54.873 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-common x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 21 M 2024-04-14T16:04:54.873 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-selinux x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 25 k 2024-04-14T16:04:54.873 INFO:teuthology.orchestra.run.smithi122.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-14T16:04:54.873 INFO:teuthology.orchestra.run.smithi122.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-14T16:04:54.874 INFO:teuthology.orchestra.run.smithi122.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-14T16:04:54.874 INFO:teuthology.orchestra.run.smithi122.stdout: libcephfs2 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 746 k 2024-04-14T16:04:54.874 INFO:teuthology.orchestra.run.smithi122.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-14T16:04:54.874 INFO:teuthology.orchestra.run.smithi122.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-04-14T16:04:54.874 INFO:teuthology.orchestra.run.smithi122.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-04-14T16:04:54.874 INFO:teuthology.orchestra.run.smithi122.stdout: libradosstriper1 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 501 k 2024-04-14T16:04:54.874 INFO:teuthology.orchestra.run.smithi122.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-04-14T16:04:54.874 INFO:teuthology.orchestra.run.smithi122.stdout: librgw2 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 5.2 M 2024-04-14T16:04:54.874 INFO:teuthology.orchestra.run.smithi122.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-14T16:04:54.874 INFO:teuthology.orchestra.run.smithi122.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-04-14T16:04:54.874 INFO:teuthology.orchestra.run.smithi122.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-14T16:04:54.875 INFO:teuthology.orchestra.run.smithi122.stdout: python3-ceph-argparse x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 45 k 2024-04-14T16:04:54.875 INFO:teuthology.orchestra.run.smithi122.stdout: python3-ceph-common x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 135 k 2024-04-14T16:04:54.875 INFO:teuthology.orchestra.run.smithi122.stdout: python3-cephfs x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 161 k 2024-04-14T16:04:54.875 INFO:teuthology.orchestra.run.smithi122.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-04-14T16:04:54.875 INFO:teuthology.orchestra.run.smithi122.stdout: python3-rados x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 321 k 2024-04-14T16:04:54.875 INFO:teuthology.orchestra.run.smithi122.stdout: python3-rbd x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 298 k 2024-04-14T16:04:54.875 INFO:teuthology.orchestra.run.smithi122.stdout: python3-rgw x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 99 k 2024-04-14T16:04:54.875 INFO:teuthology.orchestra.run.smithi122.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-04-14T16:04:54.875 INFO:teuthology.orchestra.run.smithi122.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-04-14T16:04:54.875 INFO:teuthology.orchestra.run.smithi122.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-14T16:04:54.875 INFO:teuthology.orchestra.run.smithi122.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-14T16:04:54.875 INFO:teuthology.orchestra.run.smithi122.stdout:Installing weak dependencies: 2024-04-14T16:04:54.875 INFO:teuthology.orchestra.run.smithi122.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-04-14T16:04:54.876 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:04:54.876 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:04:54.876 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:04:54.876 INFO:teuthology.orchestra.run.smithi122.stdout:Install 30 Packages 2024-04-14T16:04:54.876 INFO:teuthology.orchestra.run.smithi122.stdout:Upgrade 2 Packages 2024-04-14T16:04:54.876 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:04:54.876 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 59 M 2024-04-14T16:04:54.876 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:04:56.186 INFO:teuthology.orchestra.run.smithi016.stdout:lab-extras 31 kB/s | 1.7 kB 00:00 2024-04-14T16:04:56.238 INFO:teuthology.orchestra.run.smithi122.stdout:(1/32): ceph-base-19.0.0-2778.ga971fd5f.el9.x86 6.2 MB/s | 5.4 MB 00:00 2024-04-14T16:04:56.305 INFO:teuthology.orchestra.run.smithi122.stdout:(2/32): ceph-selinux-19.0.0-2778.ga971fd5f.el9. 379 kB/s | 25 kB 00:00 2024-04-14T16:04:56.422 INFO:teuthology.orchestra.run.smithi122.stdout:(3/32): libcephfs2-19.0.0-2778.ga971fd5f.el9.x8 6.3 MB/s | 746 kB 00:00 2024-04-14T16:04:56.514 INFO:teuthology.orchestra.run.smithi122.stdout:(4/32): libradosstriper1-19.0.0-2778.ga971fd5f. 5.4 MB/s | 501 kB 00:00 2024-04-14T16:04:56.947 INFO:teuthology.orchestra.run.smithi122.stdout:(5/32): librgw2-19.0.0-2778.ga971fd5f.el9.x86_6 12 MB/s | 5.2 MB 00:00 2024-04-14T16:04:57.047 INFO:teuthology.orchestra.run.smithi122.stdout:(6/32): ceph-radosgw-19.0.0-2778.ga971fd5f.el9. 6.0 MB/s | 10 MB 00:01 2024-04-14T16:04:57.064 INFO:teuthology.orchestra.run.smithi122.stdout:(7/32): python3-ceph-argparse-19.0.0-2778.ga971 387 kB/s | 45 kB 00:00 2024-04-14T16:04:57.115 INFO:teuthology.orchestra.run.smithi122.stdout:(8/32): python3-ceph-common-19.0.0-2778.ga971fd 2.0 MB/s | 135 kB 00:00 2024-04-14T16:04:57.140 INFO:teuthology.orchestra.run.smithi122.stdout:(9/32): python3-cephfs-19.0.0-2778.ga971fd5f.el 2.1 MB/s | 161 kB 00:00 2024-04-14T16:04:57.190 INFO:teuthology.orchestra.run.smithi122.stdout:(10/32): python3-rados-19.0.0-2778.ga971fd5f.el 4.2 MB/s | 321 kB 00:00 2024-04-14T16:04:57.215 INFO:teuthology.orchestra.run.smithi122.stdout:(11/32): python3-rbd-19.0.0-2778.ga971fd5f.el9. 3.9 MB/s | 298 kB 00:00 2024-04-14T16:04:57.249 INFO:teuthology.orchestra.run.smithi122.stdout:(12/32): python3-rgw-19.0.0-2778.ga971fd5f.el9. 1.7 MB/s | 99 kB 00:00 2024-04-14T16:04:57.641 INFO:teuthology.orchestra.run.smithi122.stdout:(13/32): boost-program-options-1.75.0-8.el9.x86 251 kB/s | 107 kB 00:00 2024-04-14T16:04:57.750 INFO:teuthology.orchestra.run.smithi122.stdout:(14/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 418 kB/s | 45 kB 00:00 2024-04-14T16:04:57.775 INFO:teuthology.orchestra.run.smithi122.stdout:(15/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 305 kB/s | 160 kB 00:00 2024-04-14T16:04:57.967 INFO:teuthology.orchestra.run.smithi122.stdout:(16/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.5 MB/s | 292 kB 00:00 2024-04-14T16:04:58.075 INFO:teuthology.orchestra.run.smithi122.stdout:(17/32): python3-prettytable-0.7.2-27.el9.noarc 391 kB/s | 42 kB 00:00 2024-04-14T16:04:58.209 INFO:teuthology.orchestra.run.smithi122.stdout:(18/32): librdkafka-1.6.1-102.el9.x86_64.rpm 1.4 MB/s | 662 kB 00:00 2024-04-14T16:04:58.243 INFO:teuthology.orchestra.run.smithi122.stdout:(19/32): qatlib-24.02.0-1.el9.x86_64.rpm 1.3 MB/s | 221 kB 00:00 2024-04-14T16:04:58.309 INFO:teuthology.orchestra.run.smithi122.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 358 kB/s | 36 kB 00:00 2024-04-14T16:04:58.351 INFO:teuthology.orchestra.run.smithi122.stdout:(21/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 437 kB/s | 47 kB 00:00 2024-04-14T16:04:58.610 INFO:teuthology.orchestra.run.smithi122.stdout:(22/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 1.0 MB/s | 309 kB 00:00 2024-04-14T16:04:58.669 INFO:teuthology.orchestra.run.smithi122.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 449 kB/s | 26 kB 00:00 2024-04-14T16:04:58.869 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:04:58.869 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:04:58.869 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:04:58.869 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.869 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:04:58.869 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.869 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.870 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.871 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:04:58.872 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.872 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:04:58.872 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.872 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:04:58.872 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.872 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:04:58.872 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.872 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:04:58.872 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.872 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:04:58.872 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.872 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:04:58.872 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.873 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:04:58.873 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.873 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:04:58.873 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.873 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:04:58.873 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.873 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:04:58.873 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.873 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:04:58.873 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.873 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:04:58.873 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.873 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.874 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.875 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.876 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.877 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.877 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:04:58.877 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.877 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.877 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.877 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.877 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:04:58.877 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.877 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.877 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.877 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.877 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:04:58.877 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.878 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.878 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.878 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:04:58.878 INFO:teuthology.orchestra.run.smithi122.stdout:(24/32): ceph-common-19.0.0-2778.ga971fd5f.el9. 6.0 MB/s | 21 MB 00:03 2024-04-14T16:04:58.894 INFO:teuthology.orchestra.run.smithi122.stdout:(25/32): liboath-2.6.7-2.el9.x86_64.rpm 216 kB/s | 49 kB 00:00 2024-04-14T16:04:58.970 INFO:teuthology.orchestra.run.smithi122.stdout:(26/32): libarrow-9.0.0-10.el9.x86_64.rpm 7.1 MB/s | 4.4 MB 00:00 2024-04-14T16:04:59.028 INFO:teuthology.orchestra.run.smithi122.stdout:(27/32): re2-20211101-3.el9.x86_64.rpm 3.2 MB/s | 192 kB 00:00 2024-04-14T16:04:59.062 INFO:teuthology.orchestra.run.smithi122.stdout:(28/32): libunwind-1.6.2-1.el9.x86_64.rpm 350 kB/s | 67 kB 00:00 2024-04-14T16:04:59.096 INFO:teuthology.orchestra.run.smithi122.stdout:(29/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 4.1 MB/s | 838 kB 00:00 2024-04-14T16:04:59.141 INFO:teuthology.orchestra.run.smithi122.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 14 MB/s | 1.6 MB 00:00 2024-04-14T16:04:59.379 INFO:teuthology.orchestra.run.smithi122.stdout:(31/32): librbd1-19.0.0-2778.ga971fd5f.el9.x86_ 11 MB/s | 3.1 MB 00:00 2024-04-14T16:04:59.455 INFO:teuthology.orchestra.run.smithi122.stdout:(32/32): librados2-19.0.0-2778.ga971fd5f.el9.x8 8.7 MB/s | 3.4 MB 00:00 2024-04-14T16:04:59.457 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:04:59.457 INFO:teuthology.orchestra.run.smithi122.stdout:Total 13 MB/s | 59 MB 00:04 2024-04-14T16:04:59.474 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:04:59.476 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:04:59.477 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repository Size 2024-04-14T16:04:59.477 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:04:59.477 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:04:59.477 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-radosgw x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 10 M 2024-04-14T16:04:59.477 INFO:teuthology.orchestra.run.smithi016.stdout:Upgrading: 2024-04-14T16:04:59.477 INFO:teuthology.orchestra.run.smithi016.stdout: librados2 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 3.4 M 2024-04-14T16:04:59.477 INFO:teuthology.orchestra.run.smithi016.stdout: librbd1 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 3.1 M 2024-04-14T16:04:59.477 INFO:teuthology.orchestra.run.smithi016.stdout:Installing dependencies: 2024-04-14T16:04:59.477 INFO:teuthology.orchestra.run.smithi016.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-04-14T16:04:59.477 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-base x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 5.4 M 2024-04-14T16:04:59.477 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-common x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 21 M 2024-04-14T16:04:59.477 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-selinux x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 25 k 2024-04-14T16:04:59.477 INFO:teuthology.orchestra.run.smithi016.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: libcephfs2 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 746 k 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: libradosstriper1 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 501 k 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: librgw2 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 5.2 M 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: python3-ceph-argparse x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 45 k 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: python3-ceph-common x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 135 k 2024-04-14T16:04:59.478 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cephfs x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 161 k 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout: python3-rados x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 321 k 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout: python3-rbd x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 298 k 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout: python3-rgw x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 99 k 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout:Installing weak dependencies: 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout:Install 30 Packages 2024-04-14T16:04:59.479 INFO:teuthology.orchestra.run.smithi016.stdout:Upgrade 2 Packages 2024-04-14T16:04:59.480 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:04:59.480 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 59 M 2024-04-14T16:04:59.480 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:04:59.561 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:04:59.631 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:04:59.631 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:04:59.886 INFO:teuthology.orchestra.run.smithi027.stdout:lab-extras 47 kB/s | 1.7 kB 00:00 2024-04-14T16:05:00.091 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:05:00.092 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:05:00.929 INFO:teuthology.orchestra.run.smithi016.stdout:(1/32): ceph-radosgw-19.0.0-2778.ga971fd5f.el9. 8.5 MB/s | 10 MB 00:01 2024-04-14T16:05:00.971 INFO:teuthology.orchestra.run.smithi016.stdout:(2/32): ceph-selinux-19.0.0-2778.ga971fd5f.el9. 606 kB/s | 25 kB 00:00 2024-04-14T16:05:01.096 INFO:teuthology.orchestra.run.smithi016.stdout:(3/32): libcephfs2-19.0.0-2778.ga971fd5f.el9.x8 5.8 MB/s | 746 kB 00:00 2024-04-14T16:05:01.188 INFO:teuthology.orchestra.run.smithi016.stdout:(4/32): libradosstriper1-19.0.0-2778.ga971fd5f. 5.3 MB/s | 501 kB 00:00 2024-04-14T16:05:01.389 INFO:teuthology.orchestra.run.smithi016.stdout:(5/32): ceph-common-19.0.0-2778.ga971fd5f.el9.x 13 MB/s | 21 MB 00:01 2024-04-14T16:05:01.430 INFO:teuthology.orchestra.run.smithi016.stdout:(6/32): python3-ceph-argparse-19.0.0-2778.ga971 1.1 MB/s | 45 kB 00:00 2024-04-14T16:05:01.489 INFO:teuthology.orchestra.run.smithi016.stdout:(7/32): python3-ceph-common-19.0.0-2778.ga971fd 2.3 MB/s | 135 kB 00:00 2024-04-14T16:05:01.535 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:05:01.589 INFO:teuthology.orchestra.run.smithi016.stdout:(8/32): librgw2-19.0.0-2778.ga971fd5f.el9.x86_6 13 MB/s | 5.2 MB 00:00 2024-04-14T16:05:01.614 INFO:teuthology.orchestra.run.smithi016.stdout:(9/32): python3-cephfs-19.0.0-2778.ga971fd5f.el 1.3 MB/s | 161 kB 00:00 2024-04-14T16:05:01.625 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-14T16:05:01.640 INFO:teuthology.orchestra.run.smithi016.stdout:(10/32): python3-rados-19.0.0-2778.ga971fd5f.el 6.3 MB/s | 321 kB 00:00 2024-04-14T16:05:01.665 INFO:teuthology.orchestra.run.smithi016.stdout:(11/32): python3-rbd-19.0.0-2778.ga971fd5f.el9. 5.8 MB/s | 298 kB 00:00 2024-04-14T16:05:01.668 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-14T16:05:01.690 INFO:teuthology.orchestra.run.smithi016.stdout:(12/32): python3-rgw-19.0.0-2778.ga971fd5f.el9. 1.9 MB/s | 99 kB 00:00 2024-04-14T16:05:01.701 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-14T16:05:01.724 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-14T16:05:01.740 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-14T16:05:01.907 INFO:teuthology.orchestra.run.smithi016.stdout:(13/32): boost-program-options-1.75.0-8.el9.x86 442 kB/s | 107 kB 00:00 2024-04-14T16:05:01.933 INFO:teuthology.orchestra.run.smithi016.stdout:(14/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 662 kB/s | 160 kB 00:00 2024-04-14T16:05:01.933 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-14T16:05:01.974 INFO:teuthology.orchestra.run.smithi016.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 675 kB/s | 45 kB 00:00 2024-04-14T16:05:01.988 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-14T16:05:02.125 INFO:teuthology.orchestra.run.smithi016.stdout:(16/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.9 MB/s | 292 kB 00:00 2024-04-14T16:05:02.150 INFO:teuthology.orchestra.run.smithi016.stdout:(17/32): librdkafka-1.6.1-102.el9.x86_64.rpm 3.0 MB/s | 662 kB 00:00 2024-04-14T16:05:02.200 INFO:teuthology.orchestra.run.smithi016.stdout:(18/32): python3-prettytable-0.7.2-27.el9.noarc 562 kB/s | 42 kB 00:00 2024-04-14T16:05:02.301 INFO:teuthology.orchestra.run.smithi016.stdout:(19/32): ceph-base-19.0.0-2778.ga971fd5f.el9.x8 2.1 MB/s | 5.4 MB 00:02 2024-04-14T16:05:02.334 INFO:teuthology.orchestra.run.smithi016.stdout:(20/32): qatlib-24.02.0-1.el9.x86_64.rpm 1.2 MB/s | 221 kB 00:00 2024-04-14T16:05:02.360 INFO:teuthology.orchestra.run.smithi016.stdout:(21/32): qatlib-service-24.02.0-1.el9.x86_64.rp 225 kB/s | 36 kB 00:00 2024-04-14T16:05:02.372 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-14T16:05:02.411 INFO:teuthology.orchestra.run.smithi122.stdout: Upgrading : librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 7/34 2024-04-14T16:05:02.488 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 7/34 2024-04-14T16:05:02.535 INFO:teuthology.orchestra.run.smithi016.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 203 kB/s | 47 kB 00:00 2024-04-14T16:05:02.576 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:05:02.577 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:05:02.577 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:05:02.577 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.577 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:05:02.577 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.577 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:05:02.577 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.577 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:05:02.577 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.577 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:05:02.577 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.577 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:05:02.578 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.578 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:05:02.578 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.578 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:05:02.578 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.578 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:05:02.578 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.578 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:05:02.578 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.578 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:05:02.578 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.578 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.579 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:05:02.580 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.580 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:05:02.580 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.580 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:05:02.580 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.580 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:05:02.580 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.580 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:05:02.580 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.580 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:05:02.580 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.580 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:05:02.580 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.581 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:05:02.581 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.581 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:05:02.581 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.581 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:05:02.581 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.581 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:05:02.581 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.581 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:05:02.581 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.581 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:05:02.581 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.581 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:05:02.582 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.582 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:05:02.582 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.582 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:05:02.582 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.582 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:05:02.582 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.582 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:05:02.582 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.582 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:05:02.582 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.582 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.583 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.583 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:02.583 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.583 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.583 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.583 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.583 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:05:02.583 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.583 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.583 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.583 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:02.584 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.585 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.585 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.585 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.585 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:02.585 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.585 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.585 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.585 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.585 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:02.585 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.585 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.585 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.585 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.586 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:02.586 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.586 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.586 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.586 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:02.586 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-rados-2:19.0.0-2778.ga971fd5f.el9.x86_64 8/34 2024-04-14T16:05:02.605 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 9/34 2024-04-14T16:05:02.668 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 9/34 2024-04-14T16:05:02.669 INFO:teuthology.orchestra.run.smithi016.stdout:(23/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 925 kB/s | 309 kB 00:00 2024-04-14T16:05:02.694 INFO:teuthology.orchestra.run.smithi016.stdout:(24/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 164 kB/s | 26 kB 00:00 2024-04-14T16:05:02.696 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-14T16:05:02.736 INFO:teuthology.orchestra.run.smithi016.stdout:(25/32): liboath-2.6.7-2.el9.x86_64.rpm 729 kB/s | 49 kB 00:00 2024-04-14T16:05:02.740 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-ceph-argparse-2:19.0.0-2778.ga971fd5f.el9. 11/34 2024-04-14T16:05:02.803 INFO:teuthology.orchestra.run.smithi016.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 622 kB/s | 67 kB 00:00 2024-04-14T16:05:02.836 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-cephfs-2:19.0.0-2778.ga971fd5f.el9.x86_64 12/34 2024-04-14T16:05:02.882 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : libradosstriper1-2:19.0.0-2778.ga971fd5f.el9.x86_6 13/34 2024-04-14T16:05:02.946 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2778.ga971fd5f.el9.x86_6 13/34 2024-04-14T16:05:02.970 INFO:teuthology.orchestra.run.smithi016.stdout:(27/32): re2-20211101-3.el9.x86_64.rpm 1.1 MB/s | 192 kB 00:00 2024-04-14T16:05:02.981 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-14T16:05:03.054 INFO:teuthology.orchestra.run.smithi016.stdout:(28/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 2.6 MB/s | 838 kB 00:00 2024-04-14T16:05:03.088 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-14T16:05:03.121 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:05:03.123 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:05:03.123 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repository Size 2024-04-14T16:05:03.124 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:05:03.124 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:05:03.124 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-radosgw x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 10 M 2024-04-14T16:05:03.124 INFO:teuthology.orchestra.run.smithi027.stdout:Upgrading: 2024-04-14T16:05:03.124 INFO:teuthology.orchestra.run.smithi027.stdout: librados2 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 3.4 M 2024-04-14T16:05:03.124 INFO:teuthology.orchestra.run.smithi027.stdout: librbd1 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 3.1 M 2024-04-14T16:05:03.124 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-04-14T16:05:03.124 INFO:teuthology.orchestra.run.smithi027.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-04-14T16:05:03.124 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-base x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 5.4 M 2024-04-14T16:05:03.124 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-common x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 21 M 2024-04-14T16:05:03.124 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-selinux x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 25 k 2024-04-14T16:05:03.124 INFO:teuthology.orchestra.run.smithi027.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-14T16:05:03.124 INFO:teuthology.orchestra.run.smithi027.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: libcephfs2 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 746 k 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: libradosstriper1 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 501 k 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: librgw2 x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 5.2 M 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: python3-ceph-argparse x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 45 k 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: python3-ceph-common x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 135 k 2024-04-14T16:05:03.125 INFO:teuthology.orchestra.run.smithi027.stdout: python3-cephfs x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 161 k 2024-04-14T16:05:03.126 INFO:teuthology.orchestra.run.smithi027.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-04-14T16:05:03.126 INFO:teuthology.orchestra.run.smithi027.stdout: python3-rados x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 321 k 2024-04-14T16:05:03.126 INFO:teuthology.orchestra.run.smithi027.stdout: python3-rbd x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 298 k 2024-04-14T16:05:03.126 INFO:teuthology.orchestra.run.smithi027.stdout: python3-rgw x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 99 k 2024-04-14T16:05:03.126 INFO:teuthology.orchestra.run.smithi027.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-04-14T16:05:03.126 INFO:teuthology.orchestra.run.smithi027.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-04-14T16:05:03.126 INFO:teuthology.orchestra.run.smithi027.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-14T16:05:03.126 INFO:teuthology.orchestra.run.smithi027.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-14T16:05:03.126 INFO:teuthology.orchestra.run.smithi027.stdout:Installing weak dependencies: 2024-04-14T16:05:03.126 INFO:teuthology.orchestra.run.smithi027.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-04-14T16:05:03.126 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:03.126 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:05:03.126 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:05:03.127 INFO:teuthology.orchestra.run.smithi027.stdout:Install 30 Packages 2024-04-14T16:05:03.127 INFO:teuthology.orchestra.run.smithi027.stdout:Upgrade 2 Packages 2024-04-14T16:05:03.127 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:03.127 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 59 M 2024-04-14T16:05:03.127 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:05:03.132 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-14T16:05:03.172 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-14T16:05:03.205 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-14T16:05:03.234 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-14T16:05:03.275 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-14T16:05:03.454 INFO:teuthology.orchestra.run.smithi016.stdout:(29/32): libarrow-9.0.0-10.el9.x86_64.rpm 4.0 MB/s | 4.4 MB 00:01 2024-04-14T16:05:03.487 INFO:teuthology.orchestra.run.smithi016.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 3.1 MB/s | 1.6 MB 00:00 2024-04-14T16:05:03.595 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-14T16:05:03.622 INFO:teuthology.orchestra.run.smithi122.stdout: Upgrading : librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 22/34 2024-04-14T16:05:03.712 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 22/34 2024-04-14T16:05:03.737 INFO:teuthology.orchestra.run.smithi016.stdout:(31/32): librbd1-19.0.0-2778.ga971fd5f.el9.x86_ 11 MB/s | 3.1 MB 00:00 2024-04-14T16:05:03.743 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-rbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 23/34 2024-04-14T16:05:03.785 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-14T16:05:03.854 INFO:teuthology.orchestra.run.smithi016.stdout:(32/32): librados2-19.0.0-2778.ga971fd5f.el9.x8 4.2 MB/s | 3.4 MB 00:00 2024-04-14T16:05:03.856 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:03.857 INFO:teuthology.orchestra.run.smithi016.stdout:Total 14 MB/s | 59 MB 00:04 2024-04-14T16:05:03.954 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:05:03.993 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:05:03.994 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:05:04.259 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-14T16:05:04.282 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : librgw2-2:19.0.0-2778.ga971fd5f.el9.x86_64 26/34 2024-04-14T16:05:04.337 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: librgw2-2:19.0.0-2778.ga971fd5f.el9.x86_64 26/34 2024-04-14T16:05:04.406 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-rgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 27/34 2024-04-14T16:05:04.435 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-ceph-common-2:19.0.0-2778.ga971fd5f.el9.x8 28/34 2024-04-14T16:05:04.509 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:05:04.510 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:05:04.662 INFO:teuthology.orchestra.run.smithi027.stdout:(1/32): ceph-base-19.0.0-2778.ga971fd5f.el9.x86 4.5 MB/s | 5.4 MB 00:01 2024-04-14T16:05:04.729 INFO:teuthology.orchestra.run.smithi027.stdout:(2/32): ceph-selinux-19.0.0-2778.ga971fd5f.el9. 377 kB/s | 25 kB 00:00 2024-04-14T16:05:04.846 INFO:teuthology.orchestra.run.smithi027.stdout:(3/32): ceph-radosgw-19.0.0-2778.ga971fd5f.el9. 7.2 MB/s | 10 MB 00:01 2024-04-14T16:05:04.879 INFO:teuthology.orchestra.run.smithi027.stdout:(4/32): libcephfs2-19.0.0-2778.ga971fd5f.el9.x8 4.9 MB/s | 746 kB 00:00 2024-04-14T16:05:04.929 INFO:teuthology.orchestra.run.smithi027.stdout:(5/32): libradosstriper1-19.0.0-2778.ga971fd5f. 5.9 MB/s | 501 kB 00:00 2024-04-14T16:05:04.996 INFO:teuthology.orchestra.run.smithi027.stdout:(6/32): python3-ceph-argparse-19.0.0-2778.ga971 677 kB/s | 45 kB 00:00 2024-04-14T16:05:05.071 INFO:teuthology.orchestra.run.smithi027.stdout:(7/32): python3-ceph-common-19.0.0-2778.ga971fd 1.8 MB/s | 135 kB 00:00 2024-04-14T16:05:05.155 INFO:teuthology.orchestra.run.smithi027.stdout:(8/32): python3-cephfs-19.0.0-2778.ga971fd5f.el 1.9 MB/s | 161 kB 00:00 2024-04-14T16:05:05.247 INFO:teuthology.orchestra.run.smithi027.stdout:(9/32): python3-rados-19.0.0-2778.ga971fd5f.el9 3.4 MB/s | 321 kB 00:00 2024-04-14T16:05:05.339 INFO:teuthology.orchestra.run.smithi027.stdout:(10/32): python3-rbd-19.0.0-2778.ga971fd5f.el9. 3.2 MB/s | 298 kB 00:00 2024-04-14T16:05:05.564 INFO:teuthology.orchestra.run.smithi027.stdout:(11/32): ceph-common-19.0.0-2778.ga971fd5f.el9. 9.9 MB/s | 21 MB 00:02 2024-04-14T16:05:05.589 INFO:teuthology.orchestra.run.smithi027.stdout:(12/32): python3-rgw-19.0.0-2778.ga971fd5f.el9. 398 kB/s | 99 kB 00:00 2024-04-14T16:05:05.657 INFO:teuthology.orchestra.run.smithi027.stdout:(13/32): librgw2-19.0.0-2778.ga971fd5f.el9.x86_ 6.7 MB/s | 5.2 MB 00:00 2024-04-14T16:05:05.774 INFO:teuthology.orchestra.run.smithi027.stdout:(14/32): boost-program-options-1.75.0-8.el9.x86 512 kB/s | 107 kB 00:00 2024-04-14T16:05:05.799 INFO:teuthology.orchestra.run.smithi027.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 318 kB/s | 45 kB 00:00 2024-04-14T16:05:05.832 INFO:teuthology.orchestra.run.smithi027.stdout:(16/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 660 kB/s | 160 kB 00:00 2024-04-14T16:05:05.883 INFO:teuthology.orchestra.run.smithi027.stdout:(17/32): python3-prettytable-0.7.2-27.el9.noarc 844 kB/s | 42 kB 00:00 2024-04-14T16:05:05.941 INFO:teuthology.orchestra.run.smithi027.stdout:(18/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.0 MB/s | 292 kB 00:00 2024-04-14T16:05:05.967 INFO:teuthology.orchestra.run.smithi027.stdout:(19/32): qatlib-24.02.0-1.el9.x86_64.rpm 2.6 MB/s | 221 kB 00:00 2024-04-14T16:05:05.982 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:05:05.992 INFO:teuthology.orchestra.run.smithi027.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 713 kB/s | 36 kB 00:00 2024-04-14T16:05:06.017 INFO:teuthology.orchestra.run.smithi027.stdout:(21/32): librdkafka-1.6.1-102.el9.x86_64.rpm 2.7 MB/s | 662 kB 00:00 2024-04-14T16:05:06.042 INFO:teuthology.orchestra.run.smithi027.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 628 kB/s | 47 kB 00:00 2024-04-14T16:05:06.051 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-14T16:05:06.112 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-14T16:05:06.176 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-14T16:05:06.199 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-14T16:05:06.214 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-14T16:05:06.284 INFO:teuthology.orchestra.run.smithi027.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 107 kB/s | 26 kB 00:00 2024-04-14T16:05:06.357 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-14T16:05:06.414 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-14T16:05:06.451 INFO:teuthology.orchestra.run.smithi027.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 291 kB/s | 49 kB 00:00 2024-04-14T16:05:06.551 INFO:teuthology.orchestra.run.smithi027.stdout:(25/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 552 kB/s | 309 kB 00:00 2024-04-14T16:05:06.610 INFO:teuthology.orchestra.run.smithi027.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 425 kB/s | 67 kB 00:00 2024-04-14T16:05:06.623 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 29/34 2024-04-14T16:05:06.668 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 29/34 2024-04-14T16:05:06.760 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-14T16:05:06.785 INFO:teuthology.orchestra.run.smithi027.stdout:(27/32): re2-20211101-3.el9.x86_64.rpm 1.1 MB/s | 192 kB 00:00 2024-04-14T16:05:06.810 INFO:teuthology.orchestra.run.smithi027.stdout:(28/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 3.2 MB/s | 838 kB 00:00 2024-04-14T16:05:06.828 INFO:teuthology.orchestra.run.smithi016.stdout: Upgrading : librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 7/34 2024-04-14T16:05:06.877 INFO:teuthology.orchestra.run.smithi027.stdout:(29/32): libarrow-9.0.0-10.el9.x86_64.rpm 5.1 MB/s | 4.4 MB 00:00 2024-04-14T16:05:06.921 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 7/34 2024-04-14T16:05:07.011 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-rados-2:19.0.0-2778.ga971fd5f.el9.x86_64 8/34 2024-04-14T16:05:07.054 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 9/34 2024-04-14T16:05:07.103 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 9/34 2024-04-14T16:05:07.122 INFO:teuthology.orchestra.run.smithi027.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 4.7 MB/s | 1.6 MB 00:00 2024-04-14T16:05:07.138 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-14T16:05:07.182 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-ceph-argparse-2:19.0.0-2778.ga971fd5f.el9. 11/34 2024-04-14T16:05:07.252 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 29/34 2024-04-14T16:05:07.252 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-cephfs-2:19.0.0-2778.ga971fd5f.el9.x86_64 12/34 2024-04-14T16:05:07.273 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : libradosstriper1-2:19.0.0-2778.ga971fd5f.el9.x86_6 13/34 2024-04-14T16:05:07.288 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 30/34 2024-04-14T16:05:07.294 INFO:teuthology.orchestra.run.smithi027.stdout:(31/32): librados2-19.0.0-2778.ga971fd5f.el9.x8 7.0 MB/s | 3.4 MB 00:00 2024-04-14T16:05:07.321 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2778.ga971fd5f.el9.x86_6 13/34 2024-04-14T16:05:07.353 INFO:teuthology.orchestra.run.smithi027.stdout:(32/32): librbd1-19.0.0-2778.ga971fd5f.el9.x86_ 6.6 MB/s | 3.1 MB 00:00 2024-04-14T16:05:07.355 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-14T16:05:07.355 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:07.355 INFO:teuthology.orchestra.run.smithi027.stdout:Total 14 MB/s | 59 MB 00:04 2024-04-14T16:05:07.391 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 30/34 2024-04-14T16:05:07.391 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-14T16:05:07.391 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-14T16:05:07.391 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:07.432 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-selinux-2:19.0.0-2778.ga971fd5f.el9.x86_64 31/34 2024-04-14T16:05:07.457 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:05:07.466 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-14T16:05:07.496 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:05:07.496 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:05:07.506 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-14T16:05:07.554 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-14T16:05:07.588 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-14T16:05:07.617 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-14T16:05:07.650 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-14T16:05:07.980 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-14T16:05:08.004 INFO:teuthology.orchestra.run.smithi016.stdout: Upgrading : librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 22/34 2024-04-14T16:05:08.021 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:05:08.022 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:05:08.095 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 22/34 2024-04-14T16:05:08.126 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-rbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 23/34 2024-04-14T16:05:08.168 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-14T16:05:08.658 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-14T16:05:08.690 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : librgw2-2:19.0.0-2778.ga971fd5f.el9.x86_64 26/34 2024-04-14T16:05:08.761 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: librgw2-2:19.0.0-2778.ga971fd5f.el9.x86_64 26/34 2024-04-14T16:05:08.832 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-rgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 27/34 2024-04-14T16:05:08.859 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-ceph-common-2:19.0.0-2778.ga971fd5f.el9.x8 28/34 2024-04-14T16:05:09.491 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:05:09.570 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-14T16:05:09.608 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-14T16:05:09.642 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-14T16:05:09.664 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-14T16:05:09.682 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-14T16:05:09.841 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-14T16:05:09.896 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-14T16:05:10.237 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-14T16:05:10.285 INFO:teuthology.orchestra.run.smithi027.stdout: Upgrading : librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 7/34 2024-04-14T16:05:10.369 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 7/34 2024-04-14T16:05:10.498 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-rados-2:19.0.0-2778.ga971fd5f.el9.x86_64 8/34 2024-04-14T16:05:10.520 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 9/34 2024-04-14T16:05:10.566 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 9/34 2024-04-14T16:05:10.594 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-14T16:05:10.630 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-ceph-argparse-2:19.0.0-2778.ga971fd5f.el9. 11/34 2024-04-14T16:05:10.692 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-cephfs-2:19.0.0-2778.ga971fd5f.el9.x86_64 12/34 2024-04-14T16:05:10.713 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : libradosstriper1-2:19.0.0-2778.ga971fd5f.el9.x86_6 13/34 2024-04-14T16:05:10.761 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2778.ga971fd5f.el9.x86_6 13/34 2024-04-14T16:05:10.796 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-14T16:05:10.917 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-14T16:05:10.968 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-14T16:05:11.013 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-14T16:05:11.045 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-14T16:05:11.074 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-14T16:05:11.107 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-14T16:05:11.258 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 29/34 2024-04-14T16:05:11.297 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 29/34 2024-04-14T16:05:11.436 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-14T16:05:11.461 INFO:teuthology.orchestra.run.smithi027.stdout: Upgrading : librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 22/34 2024-04-14T16:05:11.552 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 22/34 2024-04-14T16:05:11.574 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-rbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 23/34 2024-04-14T16:05:11.620 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-14T16:05:11.874 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 29/34 2024-04-14T16:05:11.922 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 30/34 2024-04-14T16:05:11.998 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 30/34 2024-04-14T16:05:11.998 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-14T16:05:11.999 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-14T16:05:11.999 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:12.040 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-selinux-2:19.0.0-2778.ga971fd5f.el9.x86_64 31/34 2024-04-14T16:05:12.117 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-14T16:05:12.155 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : librgw2-2:19.0.0-2778.ga971fd5f.el9.x86_64 26/34 2024-04-14T16:05:12.210 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: librgw2-2:19.0.0-2778.ga971fd5f.el9.x86_64 26/34 2024-04-14T16:05:12.289 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-rgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 27/34 2024-04-14T16:05:12.316 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-ceph-common-2:19.0.0-2778.ga971fd5f.el9.x8 28/34 2024-04-14T16:05:14.712 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 29/34 2024-04-14T16:05:14.745 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 29/34 2024-04-14T16:05:15.330 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 29/34 2024-04-14T16:05:15.366 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 30/34 2024-04-14T16:05:15.459 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 30/34 2024-04-14T16:05:15.459 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-14T16:05:15.459 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-14T16:05:15.459 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:15.525 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-selinux-2:19.0.0-2778.ga971fd5f.el9.x86_64 31/34 2024-04-14T16:05:17.104 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2778.ga971fd5f.el9.x86_64 31/34 2024-04-14T16:05:17.104 INFO:teuthology.orchestra.run.smithi122.stdout:skipping the directory /sys 2024-04-14T16:05:17.104 INFO:teuthology.orchestra.run.smithi122.stdout:skipping the directory /proc 2024-04-14T16:05:17.105 INFO:teuthology.orchestra.run.smithi122.stdout:skipping the directory /mnt 2024-04-14T16:05:17.105 INFO:teuthology.orchestra.run.smithi122.stdout:skipping the directory /var/tmp 2024-04-14T16:05:17.105 INFO:teuthology.orchestra.run.smithi122.stdout:skipping the directory /home 2024-04-14T16:05:17.105 INFO:teuthology.orchestra.run.smithi122.stdout:skipping the directory /root 2024-04-14T16:05:17.105 INFO:teuthology.orchestra.run.smithi122.stdout:skipping the directory /tmp 2024-04-14T16:05:17.105 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:18.058 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-radosgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 32/34 2024-04-14T16:05:18.084 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 32/34 2024-04-14T16:05:18.084 INFO:teuthology.orchestra.run.smithi122.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:18.084 INFO:teuthology.orchestra.run.smithi122.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-14T16:05:18.084 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-14T16:05:18.084 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-14T16:05:18.084 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:18.086 INFO:teuthology.orchestra.run.smithi122.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-14T16:05:18.153 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-14T16:05:18.153 INFO:teuthology.orchestra.run.smithi122.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-14T16:05:19.311 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-radosgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 3/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-selinux-2:19.0.0-2778.ga971fd5f.el9.x86_64 4/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 5/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : libradosstriper1-2:19.0.0-2778.ga971fd5f.el9.x86_6 6/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : librgw2-2:19.0.0-2778.ga971fd5f.el9.x86_64 7/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2778.ga971fd5f.el9. 8/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-ceph-common-2:19.0.0-2778.ga971fd5f.el9.x8 9/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-cephfs-2:19.0.0-2778.ga971fd5f.el9.x86_64 10/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-rados-2:19.0.0-2778.ga971fd5f.el9.x86_64 11/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-rbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 12/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-rgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 13/34 2024-04-14T16:05:19.312 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-14T16:05:19.313 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-14T16:05:19.313 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-14T16:05:19.313 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-14T16:05:19.313 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-14T16:05:19.313 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-14T16:05:19.313 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-14T16:05:19.313 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-14T16:05:19.313 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-14T16:05:19.313 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-14T16:05:19.313 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-14T16:05:19.313 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-14T16:05:19.313 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-14T16:05:19.313 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-14T16:05:19.315 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-14T16:05:19.315 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-14T16:05:19.315 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-14T16:05:19.315 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 31/34 2024-04-14T16:05:19.315 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-14T16:05:19.315 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 33/34 2024-04-14T16:05:20.317 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-14T16:05:20.317 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:20.317 INFO:teuthology.orchestra.run.smithi122.stdout:Upgraded: 2024-04-14T16:05:20.317 INFO:teuthology.orchestra.run.smithi122.stdout: librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.317 INFO:teuthology.orchestra.run.smithi122.stdout: librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.317 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:05:20.317 INFO:teuthology.orchestra.run.smithi122.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-14T16:05:20.318 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.318 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.318 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-radosgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.318 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-selinux-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.318 INFO:teuthology.orchestra.run.smithi122.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-14T16:05:20.318 INFO:teuthology.orchestra.run.smithi122.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-14T16:05:20.318 INFO:teuthology.orchestra.run.smithi122.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-14T16:05:20.318 INFO:teuthology.orchestra.run.smithi122.stdout: libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.318 INFO:teuthology.orchestra.run.smithi122.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-14T16:05:20.318 INFO:teuthology.orchestra.run.smithi122.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-14T16:05:20.318 INFO:teuthology.orchestra.run.smithi122.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-14T16:05:20.318 INFO:teuthology.orchestra.run.smithi122.stdout: libradosstriper1-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.318 INFO:teuthology.orchestra.run.smithi122.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: librgw2-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: python3-ceph-argparse-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: python3-ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: python3-cephfs-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: python3-rados-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: python3-rbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: python3-rgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-14T16:05:20.319 INFO:teuthology.orchestra.run.smithi122.stdout: re2-1:20211101-3.el9.x86_64 2024-04-14T16:05:20.320 INFO:teuthology.orchestra.run.smithi122.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-14T16:05:20.320 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:20.320 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:05:20.666 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install ceph-test 2024-04-14T16:05:21.261 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:00:30 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:05:21.550 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:05:21.551 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:05:21.551 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:05:21.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.551 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:05:21.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.551 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:05:21.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.551 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:05:21.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.551 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:05:21.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.551 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:05:21.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.552 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:05:21.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.552 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:05:21.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.552 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:05:21.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.552 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:05:21.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.552 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:05:21.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.552 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:05:21.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.553 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:05:21.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.553 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:05:21.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.553 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:05:21.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.553 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:05:21.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.553 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:05:21.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.553 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:05:21.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.554 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:05:21.554 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.554 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:05:21.554 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.554 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:05:21.554 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.554 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:05:21.554 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.554 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:05:21.554 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.554 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:05:21.554 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.554 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:05:21.555 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.555 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:05:21.555 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.555 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:05:21.555 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.555 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:05:21.555 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.555 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:05:21.555 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.555 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:05:21.555 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.555 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:05:21.555 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.556 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:21.557 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.558 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.559 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:21.630 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:05:21.631 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:21.631 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repository Size 2024-04-14T16:05:21.631 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:21.631 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:05:21.632 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-test x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 49 M 2024-04-14T16:05:21.632 INFO:teuthology.orchestra.run.smithi122.stdout:Installing dependencies: 2024-04-14T16:05:21.632 INFO:teuthology.orchestra.run.smithi122.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-14T16:05:21.632 INFO:teuthology.orchestra.run.smithi122.stdout: libcephsqlite x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 163 k 2024-04-14T16:05:21.632 INFO:teuthology.orchestra.run.smithi122.stdout: oniguruma x86_64 6.9.6-1.el9.5 baseos 218 k 2024-04-14T16:05:21.632 INFO:teuthology.orchestra.run.smithi122.stdout: socat x86_64 1.7.4.1-5.el9 appstream 305 k 2024-04-14T16:05:21.632 INFO:teuthology.orchestra.run.smithi122.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-04-14T16:05:21.632 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:21.632 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:05:21.632 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:21.632 INFO:teuthology.orchestra.run.smithi122.stdout:Install 6 Packages 2024-04-14T16:05:21.632 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:21.633 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 49 M 2024-04-14T16:05:21.633 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 210 M 2024-04-14T16:05:21.633 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:05:22.024 INFO:teuthology.orchestra.run.smithi122.stdout:(1/6): jq-1.6-16.el9.x86_64.rpm 1.2 MB/s | 187 kB 00:00 2024-04-14T16:05:22.043 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2778.ga971fd5f.el9.x86_64 31/34 2024-04-14T16:05:22.043 INFO:teuthology.orchestra.run.smithi016.stdout:skipping the directory /sys 2024-04-14T16:05:22.044 INFO:teuthology.orchestra.run.smithi016.stdout:skipping the directory /proc 2024-04-14T16:05:22.044 INFO:teuthology.orchestra.run.smithi016.stdout:skipping the directory /mnt 2024-04-14T16:05:22.044 INFO:teuthology.orchestra.run.smithi016.stdout:skipping the directory /var/tmp 2024-04-14T16:05:22.044 INFO:teuthology.orchestra.run.smithi016.stdout:skipping the directory /home 2024-04-14T16:05:22.044 INFO:teuthology.orchestra.run.smithi016.stdout:skipping the directory /root 2024-04-14T16:05:22.044 INFO:teuthology.orchestra.run.smithi016.stdout:skipping the directory /tmp 2024-04-14T16:05:22.044 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:22.116 INFO:teuthology.orchestra.run.smithi122.stdout:(2/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 2.3 MB/s | 218 kB 00:00 2024-04-14T16:05:22.249 INFO:teuthology.orchestra.run.smithi122.stdout:(3/6): libcephsqlite-19.0.0-2778.ga971fd5f.el9. 433 kB/s | 163 kB 00:00 2024-04-14T16:05:22.908 INFO:teuthology.orchestra.run.smithi122.stdout:(4/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 97 kB/s | 64 kB 00:00 2024-04-14T16:05:23.008 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-radosgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 32/34 2024-04-14T16:05:23.032 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 32/34 2024-04-14T16:05:23.032 INFO:teuthology.orchestra.run.smithi016.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:23.032 INFO:teuthology.orchestra.run.smithi016.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-14T16:05:23.032 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-14T16:05:23.033 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-14T16:05:23.033 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:23.035 INFO:teuthology.orchestra.run.smithi016.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-14T16:05:23.092 INFO:teuthology.orchestra.run.smithi122.stdout:(5/6): socat-1.7.4.1-5.el9.x86_64.rpm 312 kB/s | 305 kB 00:00 2024-04-14T16:05:23.119 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-14T16:05:23.119 INFO:teuthology.orchestra.run.smithi016.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-14T16:05:24.267 INFO:teuthology.orchestra.run.smithi122.stdout:(6/6): ceph-test-19.0.0-2778.ga971fd5f.el9.x86_ 20 MB/s | 49 MB 00:02 2024-04-14T16:05:24.269 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:24.269 INFO:teuthology.orchestra.run.smithi122.stdout:Total 19 MB/s | 49 MB 00:02 2024-04-14T16:05:24.309 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-14T16:05:24.309 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/34 2024-04-14T16:05:24.309 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/34 2024-04-14T16:05:24.309 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-radosgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 3/34 2024-04-14T16:05:24.309 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-selinux-2:19.0.0-2778.ga971fd5f.el9.x86_64 4/34 2024-04-14T16:05:24.309 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 5/34 2024-04-14T16:05:24.309 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : libradosstriper1-2:19.0.0-2778.ga971fd5f.el9.x86_6 6/34 2024-04-14T16:05:24.309 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : librgw2-2:19.0.0-2778.ga971fd5f.el9.x86_64 7/34 2024-04-14T16:05:24.309 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2778.ga971fd5f.el9. 8/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-ceph-common-2:19.0.0-2778.ga971fd5f.el9.x8 9/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-cephfs-2:19.0.0-2778.ga971fd5f.el9.x86_64 10/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-rados-2:19.0.0-2778.ga971fd5f.el9.x86_64 11/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-rbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 12/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-rgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 13/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-14T16:05:24.310 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-14T16:05:24.311 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-14T16:05:24.311 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-14T16:05:24.311 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-14T16:05:24.311 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-14T16:05:24.311 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-14T16:05:24.311 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-14T16:05:24.311 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-14T16:05:24.312 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-14T16:05:24.312 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 31/34 2024-04-14T16:05:24.312 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-14T16:05:24.312 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 33/34 2024-04-14T16:05:24.319 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:05:24.338 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:05:24.339 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:05:24.731 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:05:24.731 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:05:25.321 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:05:25.427 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-14T16:05:25.464 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-14T16:05:25.477 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-14T16:05:25.477 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:25.477 INFO:teuthology.orchestra.run.smithi016.stdout:Upgraded: 2024-04-14T16:05:25.477 INFO:teuthology.orchestra.run.smithi016.stdout: librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.477 INFO:teuthology.orchestra.run.smithi016.stdout: librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.477 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:05:25.477 INFO:teuthology.orchestra.run.smithi016.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-14T16:05:25.477 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.478 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.478 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-radosgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.478 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-selinux-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.478 INFO:teuthology.orchestra.run.smithi016.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-14T16:05:25.478 INFO:teuthology.orchestra.run.smithi016.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-14T16:05:25.478 INFO:teuthology.orchestra.run.smithi016.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-14T16:05:25.478 INFO:teuthology.orchestra.run.smithi016.stdout: libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.478 INFO:teuthology.orchestra.run.smithi016.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-14T16:05:25.478 INFO:teuthology.orchestra.run.smithi016.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-14T16:05:25.478 INFO:teuthology.orchestra.run.smithi016.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-14T16:05:25.478 INFO:teuthology.orchestra.run.smithi016.stdout: libradosstriper1-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.479 INFO:teuthology.orchestra.run.smithi016.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-14T16:05:25.479 INFO:teuthology.orchestra.run.smithi016.stdout: librgw2-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.479 INFO:teuthology.orchestra.run.smithi016.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-14T16:05:25.479 INFO:teuthology.orchestra.run.smithi016.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-14T16:05:25.479 INFO:teuthology.orchestra.run.smithi016.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-14T16:05:25.479 INFO:teuthology.orchestra.run.smithi016.stdout: python3-ceph-argparse-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.479 INFO:teuthology.orchestra.run.smithi016.stdout: python3-ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.479 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cephfs-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.479 INFO:teuthology.orchestra.run.smithi016.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-14T16:05:25.479 INFO:teuthology.orchestra.run.smithi016.stdout: python3-rados-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.479 INFO:teuthology.orchestra.run.smithi016.stdout: python3-rbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.479 INFO:teuthology.orchestra.run.smithi016.stdout: python3-rgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:25.479 INFO:teuthology.orchestra.run.smithi016.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-14T16:05:25.480 INFO:teuthology.orchestra.run.smithi016.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-14T16:05:25.480 INFO:teuthology.orchestra.run.smithi016.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-14T16:05:25.480 INFO:teuthology.orchestra.run.smithi016.stdout: re2-1:20211101-3.el9.x86_64 2024-04-14T16:05:25.480 INFO:teuthology.orchestra.run.smithi016.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-14T16:05:25.480 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:25.480 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:05:25.504 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-14T16:05:25.542 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-14T16:05:25.595 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : libcephsqlite-2:19.0.0-2778.ga971fd5f.el9.x86_64 5/6 2024-04-14T16:05:25.719 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2778.ga971fd5f.el9.x86_64 31/34 2024-04-14T16:05:25.719 INFO:teuthology.orchestra.run.smithi027.stdout:skipping the directory /sys 2024-04-14T16:05:25.719 INFO:teuthology.orchestra.run.smithi027.stdout:skipping the directory /proc 2024-04-14T16:05:25.719 INFO:teuthology.orchestra.run.smithi027.stdout:skipping the directory /mnt 2024-04-14T16:05:25.719 INFO:teuthology.orchestra.run.smithi027.stdout:skipping the directory /var/tmp 2024-04-14T16:05:25.719 INFO:teuthology.orchestra.run.smithi027.stdout:skipping the directory /home 2024-04-14T16:05:25.720 INFO:teuthology.orchestra.run.smithi027.stdout:skipping the directory /root 2024-04-14T16:05:25.720 INFO:teuthology.orchestra.run.smithi027.stdout:skipping the directory /tmp 2024-04-14T16:05:25.720 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:25.821 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install ceph-test 2024-04-14T16:05:26.424 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:00:30 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:05:26.687 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-radosgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 32/34 2024-04-14T16:05:26.712 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 32/34 2024-04-14T16:05:26.712 INFO:teuthology.orchestra.run.smithi027.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:26.713 INFO:teuthology.orchestra.run.smithi027.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-14T16:05:26.713 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-14T16:05:26.713 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-14T16:05:26.713 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:26.715 INFO:teuthology.orchestra.run.smithi027.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-14T16:05:26.724 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:05:26.724 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:05:26.724 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:05:26.724 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.725 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:05:26.725 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.725 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:05:26.725 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.725 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:05:26.725 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.725 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:05:26.725 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.725 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:05:26.725 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.725 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:05:26.725 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.725 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:05:26.726 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.726 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:05:26.726 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.726 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:05:26.726 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.726 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:05:26.726 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.726 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:05:26.726 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.726 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:05:26.726 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.726 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:05:26.726 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.727 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:05:26.727 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.727 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:05:26.727 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.727 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:05:26.727 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.727 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:05:26.727 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.727 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:05:26.727 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.727 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:05:26.727 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.728 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:05:26.728 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.728 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:05:26.728 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.728 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:05:26.728 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.729 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:05:26.729 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.729 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:05:26.729 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.729 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:05:26.729 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.729 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:05:26.729 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.729 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:05:26.729 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.729 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:05:26.729 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.730 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:05:26.730 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.730 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:05:26.730 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.730 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:05:26.730 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.730 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:05:26.730 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.730 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:05:26.730 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.730 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:05:26.730 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.730 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:05:26.731 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.731 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:05:26.731 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.731 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.731 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.731 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:26.731 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.731 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.731 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.731 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.731 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:05:26.731 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.731 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.732 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.732 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.732 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.732 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.732 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:26.732 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.732 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.732 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.732 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.732 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:26.732 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.732 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.732 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.733 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.734 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.734 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.734 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:26.734 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.734 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.734 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.734 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:26.798 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:05:26.798 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-14T16:05:26.798 INFO:teuthology.orchestra.run.smithi027.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-14T16:05:26.799 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:05:26.799 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repository Size 2024-04-14T16:05:26.799 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:05:26.799 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-test x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 49 M 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout:Installing dependencies: 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout: libcephsqlite x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 163 k 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout: oniguruma x86_64 6.9.6-1.el9.5 baseos 218 k 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout: socat x86_64 1.7.4.1-5.el9 appstream 305 k 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout:Install 6 Packages 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 49 M 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 210 M 2024-04-14T16:05:26.800 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:05:27.564 INFO:teuthology.orchestra.run.smithi016.stdout:(1/6): jq-1.6-16.el9.x86_64.rpm 827 kB/s | 187 kB 00:00 2024-04-14T16:05:27.589 INFO:teuthology.orchestra.run.smithi016.stdout:(2/6): libcephsqlite-19.0.0-2778.ga971fd5f.el9. 649 kB/s | 163 kB 00:00 2024-04-14T16:05:27.648 INFO:teuthology.orchestra.run.smithi016.stdout:(3/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 2.6 MB/s | 218 kB 00:00 2024-04-14T16:05:27.740 INFO:teuthology.orchestra.run.smithi016.stdout:(4/6): socat-1.7.4.1-5.el9.x86_64.rpm 2.0 MB/s | 305 kB 00:00 2024-04-14T16:05:27.765 INFO:teuthology.orchestra.run.smithi016.stdout:(5/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 545 kB/s | 64 kB 00:00 2024-04-14T16:05:27.942 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-14T16:05:27.943 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/34 2024-04-14T16:05:27.943 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/34 2024-04-14T16:05:27.943 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-radosgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 3/34 2024-04-14T16:05:27.943 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-selinux-2:19.0.0-2778.ga971fd5f.el9.x86_64 4/34 2024-04-14T16:05:27.943 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 5/34 2024-04-14T16:05:27.943 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : libradosstriper1-2:19.0.0-2778.ga971fd5f.el9.x86_6 6/34 2024-04-14T16:05:27.943 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : librgw2-2:19.0.0-2778.ga971fd5f.el9.x86_64 7/34 2024-04-14T16:05:27.943 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2778.ga971fd5f.el9. 8/34 2024-04-14T16:05:27.943 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-ceph-common-2:19.0.0-2778.ga971fd5f.el9.x8 9/34 2024-04-14T16:05:27.943 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-cephfs-2:19.0.0-2778.ga971fd5f.el9.x86_64 10/34 2024-04-14T16:05:27.943 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-rados-2:19.0.0-2778.ga971fd5f.el9.x86_64 11/34 2024-04-14T16:05:27.944 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-rbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 12/34 2024-04-14T16:05:27.944 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-rgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 13/34 2024-04-14T16:05:27.944 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-14T16:05:27.944 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-14T16:05:27.944 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-14T16:05:27.944 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-14T16:05:27.944 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-14T16:05:27.944 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-14T16:05:27.944 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-14T16:05:27.944 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-14T16:05:27.944 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-14T16:05:27.944 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-14T16:05:27.944 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-14T16:05:27.945 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-14T16:05:27.945 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-14T16:05:27.945 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-14T16:05:27.945 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-14T16:05:27.946 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-14T16:05:27.946 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-14T16:05:27.946 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 31/34 2024-04-14T16:05:27.946 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-14T16:05:27.946 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 33/34 2024-04-14T16:05:28.901 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-14T16:05:28.901 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:28.901 INFO:teuthology.orchestra.run.smithi027.stdout:Upgraded: 2024-04-14T16:05:28.901 INFO:teuthology.orchestra.run.smithi027.stdout: librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.901 INFO:teuthology.orchestra.run.smithi027.stdout: librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.901 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:05:28.901 INFO:teuthology.orchestra.run.smithi027.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-14T16:05:28.902 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.902 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.902 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-radosgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.902 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-selinux-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.902 INFO:teuthology.orchestra.run.smithi027.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-14T16:05:28.902 INFO:teuthology.orchestra.run.smithi027.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-14T16:05:28.902 INFO:teuthology.orchestra.run.smithi027.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-14T16:05:28.902 INFO:teuthology.orchestra.run.smithi027.stdout: libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.902 INFO:teuthology.orchestra.run.smithi027.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-14T16:05:28.902 INFO:teuthology.orchestra.run.smithi027.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-14T16:05:28.902 INFO:teuthology.orchestra.run.smithi027.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-14T16:05:28.902 INFO:teuthology.orchestra.run.smithi027.stdout: libradosstriper1-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: librgw2-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: python3-ceph-argparse-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: python3-ceph-common-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: python3-cephfs-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: python3-rados-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: python3-rbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: python3-rgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-14T16:05:28.903 INFO:teuthology.orchestra.run.smithi027.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-14T16:05:28.904 INFO:teuthology.orchestra.run.smithi027.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-14T16:05:28.904 INFO:teuthology.orchestra.run.smithi027.stdout: re2-1:20211101-3.el9.x86_64 2024-04-14T16:05:28.904 INFO:teuthology.orchestra.run.smithi027.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-14T16:05:28.904 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:28.904 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:05:29.250 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install ceph-test 2024-04-14T16:05:29.699 INFO:teuthology.orchestra.run.smithi016.stdout:(6/6): ceph-test-19.0.0-2778.ga971fd5f.el9.x86_ 21 MB/s | 49 MB 00:02 2024-04-14T16:05:29.700 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:29.700 INFO:teuthology.orchestra.run.smithi016.stdout:Total 17 MB/s | 49 MB 00:02 2024-04-14T16:05:29.752 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:05:29.774 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:05:29.775 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:05:29.898 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:00:30 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:05:30.186 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:05:30.186 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:05:30.198 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2778.ga971fd5f.el9.x86_64 5/6 2024-04-14T16:05:30.204 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:05:30.204 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:05:30.204 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:05:30.204 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.204 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:05:30.204 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.204 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:05:30.204 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.204 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:05:30.204 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.204 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.205 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:05:30.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.206 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:05:30.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.206 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:05:30.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.206 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:05:30.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.206 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:05:30.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.206 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:05:30.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.206 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:05:30.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.207 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:05:30.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.207 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:05:30.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.207 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:05:30.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.207 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:05:30.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.207 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:05:30.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.207 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:05:30.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.207 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.208 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.209 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.210 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.211 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.211 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.211 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:30.211 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.211 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.211 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.211 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.211 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:30.211 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.211 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.211 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.211 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.211 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.212 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:30.286 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-test-2:19.0.0-2778.ga971fd5f.el9.x86_64 6/6 2024-04-14T16:05:30.289 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:05:30.290 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:05:30.290 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repository Size 2024-04-14T16:05:30.290 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:05:30.290 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:05:30.290 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-test x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 49 M 2024-04-14T16:05:30.290 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-04-14T16:05:30.290 INFO:teuthology.orchestra.run.smithi027.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-14T16:05:30.290 INFO:teuthology.orchestra.run.smithi027.stdout: libcephsqlite x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 163 k 2024-04-14T16:05:30.290 INFO:teuthology.orchestra.run.smithi027.stdout: oniguruma x86_64 6.9.6-1.el9.5 baseos 218 k 2024-04-14T16:05:30.290 INFO:teuthology.orchestra.run.smithi027.stdout: socat x86_64 1.7.4.1-5.el9 appstream 305 k 2024-04-14T16:05:30.291 INFO:teuthology.orchestra.run.smithi027.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-04-14T16:05:30.291 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:30.291 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:05:30.291 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:05:30.291 INFO:teuthology.orchestra.run.smithi027.stdout:Install 6 Packages 2024-04-14T16:05:30.291 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:30.292 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 49 M 2024-04-14T16:05:30.292 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 210 M 2024-04-14T16:05:30.292 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:05:30.654 INFO:teuthology.orchestra.run.smithi027.stdout:(1/6): libcephsqlite-19.0.0-2778.ga971fd5f.el9. 730 kB/s | 163 kB 00:00 2024-04-14T16:05:30.789 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:05:30.871 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-14T16:05:30.916 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-14T16:05:30.972 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-14T16:05:31.033 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-14T16:05:31.060 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : libcephsqlite-2:19.0.0-2778.ga971fd5f.el9.x86_64 5/6 2024-04-14T16:05:31.254 INFO:teuthology.orchestra.run.smithi027.stdout:(2/6): jq-1.6-16.el9.x86_64.rpm 227 kB/s | 187 kB 00:00 2024-04-14T16:05:31.421 INFO:teuthology.orchestra.run.smithi027.stdout:(3/6): socat-1.7.4.1-5.el9.x86_64.rpm 1.8 MB/s | 305 kB 00:00 2024-04-14T16:05:31.471 INFO:teuthology.orchestra.run.smithi027.stdout:(4/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.2 MB/s | 64 kB 00:00 2024-04-14T16:05:31.505 INFO:teuthology.orchestra.run.smithi027.stdout:(5/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 256 kB/s | 218 kB 00:00 2024-04-14T16:05:32.873 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-test-2:19.0.0-2778.ga971fd5f.el9.x86_64 6/6 2024-04-14T16:05:32.874 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-test-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/6 2024-04-14T16:05:32.874 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : libcephsqlite-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/6 2024-04-14T16:05:32.874 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : jq-1.6-16.el9.x86_64 3/6 2024-04-14T16:05:32.874 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 4/6 2024-04-14T16:05:32.874 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 5/6 2024-04-14T16:05:33.014 INFO:teuthology.orchestra.run.smithi027.stdout:(6/6): ceph-test-19.0.0-2778.ga971fd5f.el9.x86_ 19 MB/s | 49 MB 00:02 2024-04-14T16:05:33.016 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:33.016 INFO:teuthology.orchestra.run.smithi027.stdout:Total 18 MB/s | 49 MB 00:02 2024-04-14T16:05:33.068 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:05:33.090 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:05:33.090 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:05:33.362 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 6/6 2024-04-14T16:05:33.362 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:33.362 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:05:33.362 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-test-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:33.362 INFO:teuthology.orchestra.run.smithi122.stdout: jq-1.6-16.el9.x86_64 2024-04-14T16:05:33.362 INFO:teuthology.orchestra.run.smithi122.stdout: libcephsqlite-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:33.362 INFO:teuthology.orchestra.run.smithi122.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-14T16:05:33.362 INFO:teuthology.orchestra.run.smithi122.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-14T16:05:33.362 INFO:teuthology.orchestra.run.smithi122.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-14T16:05:33.362 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:33.362 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:05:33.503 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:05:33.504 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:05:33.629 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install ceph 2024-04-14T16:05:34.114 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:05:34.183 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-14T16:05:34.234 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-14T16:05:34.240 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:00:43 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:05:34.265 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-14T16:05:34.306 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-14T16:05:34.333 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : libcephsqlite-2:19.0.0-2778.ga971fd5f.el9.x86_64 5/6 2024-04-14T16:05:34.545 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:05:34.545 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:05:34.545 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:05:34.545 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.545 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:05:34.545 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.545 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:05:34.545 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.545 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:05:34.545 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.546 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:05:34.546 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.546 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:05:34.546 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.546 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:05:34.546 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.546 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:05:34.546 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.546 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:05:34.546 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.546 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:05:34.546 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.546 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:05:34.547 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.547 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:05:34.547 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.547 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:05:34.547 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.547 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:05:34.547 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.547 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:05:34.547 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.547 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:05:34.547 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.547 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:05:34.547 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.548 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:05:34.548 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.548 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:05:34.548 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.548 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:05:34.548 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.548 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:05:34.548 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.548 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:05:34.548 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.548 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:05:34.548 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.548 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.549 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:05:34.550 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.550 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:05:34.550 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.550 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:05:34.550 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.550 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:05:34.550 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.550 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:05:34.550 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.550 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:05:34.550 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.550 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.551 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.552 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:34.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.552 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:34.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.552 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:34.552 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.553 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:34.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.553 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:34.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.553 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.554 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:34.554 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.554 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.554 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.554 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:34.624 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:05:34.627 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:34.627 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repository Size 2024-04-14T16:05:34.627 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:34.627 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:05:34.627 INFO:teuthology.orchestra.run.smithi122.stdout: ceph x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 6.6 k 2024-04-14T16:05:34.627 INFO:teuthology.orchestra.run.smithi122.stdout:Installing dependencies: 2024-04-14T16:05:34.627 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mds x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 2.4 M 2024-04-14T16:05:34.627 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mgr x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 1.5 M 2024-04-14T16:05:34.627 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 249 k 2024-04-14T16:05:34.627 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mon x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 4.7 M 2024-04-14T16:05:34.627 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-osd x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 17 M 2024-04-14T16:05:34.627 INFO:teuthology.orchestra.run.smithi122.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-04-14T16:05:34.628 INFO:teuthology.orchestra.run.smithi122.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-14T16:05:34.628 INFO:teuthology.orchestra.run.smithi122.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-14T16:05:34.628 INFO:teuthology.orchestra.run.smithi122.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-14T16:05:34.628 INFO:teuthology.orchestra.run.smithi122.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-04-14T16:05:34.628 INFO:teuthology.orchestra.run.smithi122.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-14T16:05:34.628 INFO:teuthology.orchestra.run.smithi122.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-14T16:05:34.628 INFO:teuthology.orchestra.run.smithi122.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-04-14T16:05:34.628 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-14T16:05:34.628 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-14T16:05:34.628 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jaraco-collections 2024-04-14T16:05:34.628 INFO:teuthology.orchestra.run.smithi122.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-04-14T16:05:34.628 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-14T16:05:34.628 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-urllib3 noarch 1.26.5-5.el9 baseos 215 k 2024-04-14T16:05:34.629 INFO:teuthology.orchestra.run.smithi122.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-14T16:05:34.630 INFO:teuthology.orchestra.run.smithi122.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-14T16:05:34.630 INFO:teuthology.orchestra.run.smithi122.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-14T16:05:34.630 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:34.630 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:05:34.630 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:34.630 INFO:teuthology.orchestra.run.smithi122.stdout:Install 36 Packages 2024-04-14T16:05:34.630 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:34.631 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 30 M 2024-04-14T16:05:34.631 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 108 M 2024-04-14T16:05:34.631 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:05:35.629 INFO:teuthology.orchestra.run.smithi122.stdout:(1/36): ceph-19.0.0-2778.ga971fd5f.el9.x86_64.r 39 kB/s | 6.6 kB 00:00 2024-04-14T16:05:35.898 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2778.ga971fd5f.el9.x86_64 5/6 2024-04-14T16:05:35.981 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-test-2:19.0.0-2778.ga971fd5f.el9.x86_64 6/6 2024-04-14T16:05:36.063 INFO:teuthology.orchestra.run.smithi122.stdout:(2/36): ceph-mon-19.0.0-2778.ga971fd5f.el9.x86_ 11 MB/s | 4.7 MB 00:00 2024-04-14T16:05:36.188 INFO:teuthology.orchestra.run.smithi122.stdout:(3/36): ceph-mds-19.0.0-2778.ga971fd5f.el9.x86_ 3.2 MB/s | 2.4 MB 00:00 2024-04-14T16:05:36.230 INFO:teuthology.orchestra.run.smithi122.stdout:(4/36): ceph-mgr-19.0.0-2778.ga971fd5f.el9.x86_ 1.9 MB/s | 1.5 MB 00:00 2024-04-14T16:05:36.255 INFO:teuthology.orchestra.run.smithi122.stdout:(5/36): ceph-mgr-modules-core-19.0.0-2778.ga971 3.6 MB/s | 249 kB 00:00 2024-04-14T16:05:36.380 INFO:teuthology.orchestra.run.smithi122.stdout:(6/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.6 MB/s | 253 kB 00:00 2024-04-14T16:05:36.422 INFO:teuthology.orchestra.run.smithi122.stdout:(7/36): python3-ply-3.11-14.el9.noarch.rpm 2.5 MB/s | 106 kB 00:00 2024-04-14T16:05:36.489 INFO:teuthology.orchestra.run.smithi122.stdout:(8/36): python3-cryptography-36.0.1-4.el9.x86_6 5.2 MB/s | 1.2 MB 00:00 2024-04-14T16:05:36.514 INFO:teuthology.orchestra.run.smithi122.stdout:(9/36): python3-pycparser-2.20-6.el9.noarch.rpm 1.4 MB/s | 135 kB 00:00 2024-04-14T16:05:36.540 INFO:teuthology.orchestra.run.smithi122.stdout:(10/36): python3-requests-2.25.1-8.el9.noarch.r 2.4 MB/s | 125 kB 00:00 2024-04-14T16:05:36.565 INFO:teuthology.orchestra.run.smithi122.stdout:(11/36): python3-urllib3-1.26.5-5.el9.noarch.rp 4.2 MB/s | 215 kB 00:00 2024-04-14T16:05:36.699 INFO:teuthology.orchestra.run.smithi122.stdout:(12/36): lua-5.4.4-4.el9.x86_64.rpm 1.2 MB/s | 188 kB 00:00 2024-04-14T16:05:36.724 INFO:teuthology.orchestra.run.smithi122.stdout:(13/36): python3-mako-1.1.4-6.el9.noarch.rpm 1.1 MB/s | 172 kB 00:00 2024-04-14T16:05:36.766 INFO:teuthology.orchestra.run.smithi122.stdout:(14/36): python3-markupsafe-1.1.1-12.el9.x86_64 519 kB/s | 35 kB 00:00 2024-04-14T16:05:36.791 INFO:teuthology.orchestra.run.smithi122.stdout:(15/36): python3-pytz-2021.1-5.el9.noarch.rpm 762 kB/s | 51 kB 00:00 2024-04-14T16:05:36.841 INFO:teuthology.orchestra.run.smithi122.stdout:(16/36): python3-toml-0.10.2-6.el9.noarch.rpm 554 kB/s | 42 kB 00:00 2024-04-14T16:05:36.925 INFO:teuthology.orchestra.run.smithi122.stdout:(17/36): luarocks-3.9.2-1.el9.noarch.rpm 1.8 MB/s | 151 kB 00:00 2024-04-14T16:05:36.967 INFO:teuthology.orchestra.run.smithi122.stdout:(18/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 1.0 MB/s | 43 kB 00:00 2024-04-14T16:05:36.992 INFO:teuthology.orchestra.run.smithi122.stdout:(19/36): lua-devel-5.4.4-4.el9.x86_64.rpm 111 kB/s | 22 kB 00:00 2024-04-14T16:05:37.018 INFO:teuthology.orchestra.run.smithi122.stdout:(20/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 3.3 MB/s | 172 kB 00:00 2024-04-14T16:05:37.051 INFO:teuthology.orchestra.run.smithi122.stdout:(21/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 321 kB/s | 11 kB 00:00 2024-04-14T16:05:37.085 INFO:teuthology.orchestra.run.smithi122.stdout:(22/36): python3-jaraco-classes-3.2.1-5.el9.noa 529 kB/s | 18 kB 00:00 2024-04-14T16:05:37.110 INFO:teuthology.orchestra.run.smithi122.stdout:(23/36): python3-cherrypy-18.6.1-2.el9.noarch.r 3.0 MB/s | 358 kB 00:00 2024-04-14T16:05:37.136 INFO:teuthology.orchestra.run.smithi122.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 462 kB/s | 23 kB 00:00 2024-04-14T16:05:37.161 INFO:teuthology.orchestra.run.smithi122.stdout:(25/36): python3-jaraco-functools-3.5.0-2.el9.n 387 kB/s | 19 kB 00:00 2024-04-14T16:05:37.195 INFO:teuthology.orchestra.run.smithi122.stdout:(26/36): python3-jaraco-text-3.2.0-6.el9.noarch 336 kB/s | 20 kB 00:00 2024-04-14T16:05:37.220 INFO:teuthology.orchestra.run.smithi122.stdout:(27/36): python3-logutils-0.3.5-21.el9.noarch.r 790 kB/s | 46 kB 00:00 2024-04-14T16:05:37.245 INFO:teuthology.orchestra.run.smithi122.stdout:(28/36): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2024-04-14T16:05:37.270 INFO:teuthology.orchestra.run.smithi122.stdout:(29/36): python3-pecan-1.4.2-3.el9.noarch.rpm 5.3 MB/s | 272 kB 00:00 2024-04-14T16:05:37.296 INFO:teuthology.orchestra.run.smithi122.stdout:(30/36): python3-portend-3.1.0-2.el9.noarch.rpm 327 kB/s | 16 kB 00:00 2024-04-14T16:05:37.321 INFO:teuthology.orchestra.run.smithi122.stdout:(31/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.7 MB/s | 90 kB 00:00 2024-04-14T16:05:37.346 INFO:teuthology.orchestra.run.smithi122.stdout:(32/36): python3-tempora-5.0.0-2.el9.noarch.rpm 712 kB/s | 36 kB 00:00 2024-04-14T16:05:37.381 INFO:teuthology.orchestra.run.smithi122.stdout:(33/36): python3-webob-1.8.7-6.el9.noarch.rpm 3.8 MB/s | 230 kB 00:00 2024-04-14T16:05:37.405 INFO:teuthology.orchestra.run.smithi122.stdout:(34/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 7.1 MB/s | 427 kB 00:00 2024-04-14T16:05:37.430 INFO:teuthology.orchestra.run.smithi122.stdout:(35/36): python3-zc-lockfile-2.0-10.el9.noarch. 400 kB/s | 20 kB 00:00 2024-04-14T16:05:37.689 INFO:teuthology.orchestra.run.smithi122.stdout:(36/36): ceph-osd-19.0.0-2778.ga971fd5f.el9.x86 10 MB/s | 17 MB 00:01 2024-04-14T16:05:37.691 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:37.692 INFO:teuthology.orchestra.run.smithi122.stdout:Total 9.9 MB/s | 30 MB 00:03 2024-04-14T16:05:37.844 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:05:37.888 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:05:37.888 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:05:38.322 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:05:38.322 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:05:38.492 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-test-2:19.0.0-2778.ga971fd5f.el9.x86_64 6/6 2024-04-14T16:05:38.492 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-test-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/6 2024-04-14T16:05:38.492 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : libcephsqlite-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/6 2024-04-14T16:05:38.492 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : jq-1.6-16.el9.x86_64 3/6 2024-04-14T16:05:38.492 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 4/6 2024-04-14T16:05:38.492 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 5/6 2024-04-14T16:05:38.894 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 6/6 2024-04-14T16:05:38.894 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:38.894 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:05:38.894 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-test-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:38.894 INFO:teuthology.orchestra.run.smithi016.stdout: jq-1.6-16.el9.x86_64 2024-04-14T16:05:38.895 INFO:teuthology.orchestra.run.smithi016.stdout: libcephsqlite-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:38.895 INFO:teuthology.orchestra.run.smithi016.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-14T16:05:38.895 INFO:teuthology.orchestra.run.smithi016.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-14T16:05:38.895 INFO:teuthology.orchestra.run.smithi016.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-14T16:05:38.895 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:38.895 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:05:39.162 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install ceph 2024-04-14T16:05:39.207 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2778.ga971fd5f.el9.x86_64 5/6 2024-04-14T16:05:39.286 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-test-2:19.0.0-2778.ga971fd5f.el9.x86_64 6/6 2024-04-14T16:05:39.700 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:05:39.761 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:00:43 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:05:39.767 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-14T16:05:39.809 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-14T16:05:39.844 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-14T16:05:39.915 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-14T16:05:39.985 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-14T16:05:40.018 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-14T16:05:40.063 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:05:40.063 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:05:40.063 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:05:40.063 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.063 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:05:40.064 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.064 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:05:40.064 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.064 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:05:40.064 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.064 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:05:40.064 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.064 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:05:40.064 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.064 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:05:40.064 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.064 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:05:40.065 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.065 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:05:40.065 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.065 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:05:40.065 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.065 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:05:40.065 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.065 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:05:40.065 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.065 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:05:40.065 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.065 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:05:40.065 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.066 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:05:40.066 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.066 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:05:40.066 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.066 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:05:40.066 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.066 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:05:40.066 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.066 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:05:40.066 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.066 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:05:40.066 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.066 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:05:40.067 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.067 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:05:40.067 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.067 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:05:40.067 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.067 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:05:40.067 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.067 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:05:40.067 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.067 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:05:40.067 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.067 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:05:40.067 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:05:40.068 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.069 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:05:40.069 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.069 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:05:40.069 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.069 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:05:40.069 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.069 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.069 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.069 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:40.069 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.069 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.070 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.070 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.070 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:05:40.070 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.070 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.070 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.070 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.070 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.070 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.070 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:40.070 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.070 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.071 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.072 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.072 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:40.072 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.072 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.072 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.072 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.072 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:40.072 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.072 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.072 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.072 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.072 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:40.072 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.073 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.073 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.073 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.073 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:40.073 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.073 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.073 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.073 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.073 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:40.073 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.073 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.073 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.073 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:40.118 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-14T16:05:40.145 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:05:40.148 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:05:40.148 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repository Size 2024-04-14T16:05:40.148 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:05:40.148 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:05:40.148 INFO:teuthology.orchestra.run.smithi016.stdout: ceph x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 6.6 k 2024-04-14T16:05:40.149 INFO:teuthology.orchestra.run.smithi016.stdout:Installing dependencies: 2024-04-14T16:05:40.149 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mds x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 2.4 M 2024-04-14T16:05:40.149 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 1.5 M 2024-04-14T16:05:40.149 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 249 k 2024-04-14T16:05:40.149 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mon x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 4.7 M 2024-04-14T16:05:40.149 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-osd x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 17 M 2024-04-14T16:05:40.149 INFO:teuthology.orchestra.run.smithi016.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-04-14T16:05:40.149 INFO:teuthology.orchestra.run.smithi016.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-14T16:05:40.149 INFO:teuthology.orchestra.run.smithi016.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-14T16:05:40.149 INFO:teuthology.orchestra.run.smithi016.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-14T16:05:40.149 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-04-14T16:05:40.149 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-14T16:05:40.150 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-14T16:05:40.150 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-04-14T16:05:40.150 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-14T16:05:40.150 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-14T16:05:40.150 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco-collections 2024-04-14T16:05:40.150 INFO:teuthology.orchestra.run.smithi016.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-04-14T16:05:40.150 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-14T16:05:40.150 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-14T16:05:40.150 INFO:teuthology.orchestra.run.smithi016.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-14T16:05:40.150 INFO:teuthology.orchestra.run.smithi016.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-04-14T16:05:40.150 INFO:teuthology.orchestra.run.smithi016.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-04-14T16:05:40.150 INFO:teuthology.orchestra.run.smithi016.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: python3-urllib3 noarch 1.26.5-5.el9 baseos 215 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:40.151 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:05:40.152 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:05:40.152 INFO:teuthology.orchestra.run.smithi016.stdout:Install 36 Packages 2024-04-14T16:05:40.152 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:40.152 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 30 M 2024-04-14T16:05:40.152 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 108 M 2024-04-14T16:05:40.152 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:05:40.214 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-14T16:05:40.263 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-14T16:05:40.297 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-14T16:05:40.327 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-14T16:05:40.361 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/36 2024-04-14T16:05:40.395 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/36 2024-04-14T16:05:40.435 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/36 2024-04-14T16:05:40.478 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/36 2024-04-14T16:05:40.521 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/36 2024-04-14T16:05:40.560 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/36 2024-04-14T16:05:40.633 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 18/36 2024-04-14T16:05:40.770 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 19/36 2024-04-14T16:05:40.813 INFO:teuthology.orchestra.run.smithi016.stdout:(1/36): ceph-19.0.0-2778.ga971fd5f.el9.x86_64.r 37 kB/s | 6.6 kB 00:00 2024-04-14T16:05:40.859 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 20/36 2024-04-14T16:05:40.913 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 21/36 2024-04-14T16:05:40.959 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 22/36 2024-04-14T16:05:41.017 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/36 2024-04-14T16:05:41.072 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/36 2024-04-14T16:05:41.080 INFO:teuthology.orchestra.run.smithi016.stdout:(2/36): ceph-mds-19.0.0-2778.ga971fd5f.el9.x86_ 5.3 MB/s | 2.4 MB 00:00 2024-04-14T16:05:41.258 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/36 2024-04-14T16:05:41.307 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 26/36 2024-04-14T16:05:41.330 INFO:teuthology.orchestra.run.smithi016.stdout:(3/36): ceph-mgr-19.0.0-2778.ga971fd5f.el9.x86_ 2.2 MB/s | 1.5 MB 00:00 2024-04-14T16:05:41.385 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/36 2024-04-14T16:05:41.397 INFO:teuthology.orchestra.run.smithi016.stdout:(4/36): ceph-mon-19.0.0-2778.ga971fd5f.el9.x86_ 8.0 MB/s | 4.7 MB 00:00 2024-04-14T16:05:41.473 INFO:teuthology.orchestra.run.smithi016.stdout:(5/36): ceph-mgr-modules-core-19.0.0-2778.ga971 1.7 MB/s | 249 kB 00:00 2024-04-14T16:05:41.475 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 28/36 2024-04-14T16:05:41.514 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/36 2024-04-14T16:05:41.540 INFO:teuthology.orchestra.run.smithi016.stdout:(6/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.7 MB/s | 253 kB 00:00 2024-04-14T16:05:41.581 INFO:teuthology.orchestra.run.smithi016.stdout:(7/36): python3-ply-3.11-14.el9.noarch.rpm 2.5 MB/s | 106 kB 00:00 2024-04-14T16:05:41.630 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/36 2024-04-14T16:05:41.640 INFO:teuthology.orchestra.run.smithi016.stdout:(8/36): python3-pycparser-2.20-6.el9.noarch.rpm 2.3 MB/s | 135 kB 00:00 2024-04-14T16:05:41.674 INFO:teuthology.orchestra.run.smithi016.stdout:(9/36): python3-cryptography-36.0.1-4.el9.x86_6 6.1 MB/s | 1.2 MB 00:00 2024-04-14T16:05:41.699 INFO:teuthology.orchestra.run.smithi016.stdout:(10/36): python3-requests-2.25.1-8.el9.noarch.r 2.1 MB/s | 125 kB 00:00 2024-04-14T16:05:41.724 INFO:teuthology.orchestra.run.smithi016.stdout:(11/36): python3-urllib3-1.26.5-5.el9.noarch.rp 4.2 MB/s | 215 kB 00:00 2024-04-14T16:05:41.789 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2778.ga971fd5f.el9. 31/36 2024-04-14T16:05:41.816 INFO:teuthology.orchestra.run.smithi016.stdout:(12/36): lua-5.4.4-4.el9.x86_64.rpm 1.6 MB/s | 188 kB 00:00 2024-04-14T16:05:41.816 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 32/36 2024-04-14T16:05:41.828 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-test-2:19.0.0-2778.ga971fd5f.el9.x86_64 6/6 2024-04-14T16:05:41.829 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-test-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/6 2024-04-14T16:05:41.829 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : libcephsqlite-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/6 2024-04-14T16:05:41.829 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : jq-1.6-16.el9.x86_64 3/6 2024-04-14T16:05:41.829 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 4/6 2024-04-14T16:05:41.829 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 5/6 2024-04-14T16:05:41.843 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 32/36 2024-04-14T16:05:41.843 INFO:teuthology.orchestra.run.smithi122.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:41.843 INFO:teuthology.orchestra.run.smithi122.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-14T16:05:41.843 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-14T16:05:41.843 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-14T16:05:41.843 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:41.858 INFO:teuthology.orchestra.run.smithi016.stdout:(13/36): python3-mako-1.1.4-6.el9.noarch.rpm 1.3 MB/s | 172 kB 00:00 2024-04-14T16:05:42.067 INFO:teuthology.orchestra.run.smithi016.stdout:(14/36): ceph-osd-19.0.0-2778.ga971fd5f.el9.x86 17 MB/s | 17 MB 00:00 2024-04-14T16:05:42.084 INFO:teuthology.orchestra.run.smithi016.stdout:(15/36): python3-markupsafe-1.1.1-12.el9.x86_64 130 kB/s | 35 kB 00:00 2024-04-14T16:05:42.101 INFO:teuthology.orchestra.run.smithi016.stdout:(16/36): python3-pytz-2021.1-5.el9.noarch.rpm 210 kB/s | 51 kB 00:00 2024-04-14T16:05:42.168 INFO:teuthology.orchestra.run.smithi016.stdout:(17/36): luarocks-3.9.2-1.el9.noarch.rpm 2.2 MB/s | 151 kB 00:00 2024-04-14T16:05:42.201 INFO:teuthology.orchestra.run.smithi016.stdout:(18/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 1.3 MB/s | 43 kB 00:00 2024-04-14T16:05:42.219 INFO:teuthology.orchestra.run.smithi016.stdout:(19/36): python3-toml-0.10.2-6.el9.noarch.rpm 276 kB/s | 42 kB 00:00 2024-04-14T16:05:42.260 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 6/6 2024-04-14T16:05:42.260 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:42.260 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:05:42.260 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-test-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:42.260 INFO:teuthology.orchestra.run.smithi027.stdout: jq-1.6-16.el9.x86_64 2024-04-14T16:05:42.261 INFO:teuthology.orchestra.run.smithi027.stdout: libcephsqlite-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:42.261 INFO:teuthology.orchestra.run.smithi027.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-14T16:05:42.261 INFO:teuthology.orchestra.run.smithi027.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-14T16:05:42.261 INFO:teuthology.orchestra.run.smithi027.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-14T16:05:42.261 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:42.261 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:05:42.261 INFO:teuthology.orchestra.run.smithi016.stdout:(20/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 2.9 MB/s | 172 kB 00:00 2024-04-14T16:05:42.286 INFO:teuthology.orchestra.run.smithi016.stdout:(21/36): python3-cherrypy-18.6.1-2.el9.noarch.r 5.2 MB/s | 358 kB 00:00 2024-04-14T16:05:42.327 INFO:teuthology.orchestra.run.smithi016.stdout:(22/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 160 kB/s | 11 kB 00:00 2024-04-14T16:05:42.353 INFO:teuthology.orchestra.run.smithi016.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 449 kB/s | 18 kB 00:00 2024-04-14T16:05:42.378 INFO:teuthology.orchestra.run.smithi016.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 460 kB/s | 23 kB 00:00 2024-04-14T16:05:42.403 INFO:teuthology.orchestra.run.smithi016.stdout:(25/36): python3-jaraco-functools-3.5.0-2.el9.n 396 kB/s | 19 kB 00:00 2024-04-14T16:05:42.429 INFO:teuthology.orchestra.run.smithi016.stdout:(26/36): lua-devel-5.4.4-4.el9.x86_64.rpm 65 kB/s | 22 kB 00:00 2024-04-14T16:05:42.454 INFO:teuthology.orchestra.run.smithi016.stdout:(27/36): python3-jaraco-text-3.2.0-6.el9.noarch 261 kB/s | 20 kB 00:00 2024-04-14T16:05:42.479 INFO:teuthology.orchestra.run.smithi016.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 613 kB/s | 46 kB 00:00 2024-04-14T16:05:42.491 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install ceph 2024-04-14T16:05:42.496 INFO:teuthology.orchestra.run.smithi016.stdout:(29/36): python3-more-itertools-8.12.0-2.el9.no 1.8 MB/s | 79 kB 00:00 2024-04-14T16:05:42.521 INFO:teuthology.orchestra.run.smithi016.stdout:(30/36): python3-portend-3.1.0-2.el9.noarch.rpm 392 kB/s | 16 kB 00:00 2024-04-14T16:05:42.547 INFO:teuthology.orchestra.run.smithi016.stdout:(31/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.8 MB/s | 90 kB 00:00 2024-04-14T16:05:42.572 INFO:teuthology.orchestra.run.smithi016.stdout:(32/36): python3-tempora-5.0.0-2.el9.noarch.rpm 715 kB/s | 36 kB 00:00 2024-04-14T16:05:42.597 INFO:teuthology.orchestra.run.smithi016.stdout:(33/36): python3-webob-1.8.7-6.el9.noarch.rpm 4.5 MB/s | 230 kB 00:00 2024-04-14T16:05:42.622 INFO:teuthology.orchestra.run.smithi016.stdout:(34/36): python3-pecan-1.4.2-3.el9.noarch.rpm 1.6 MB/s | 272 kB 00:00 2024-04-14T16:05:42.648 INFO:teuthology.orchestra.run.smithi016.stdout:(35/36): python3-zc-lockfile-2.0-10.el9.noarch. 396 kB/s | 20 kB 00:00 2024-04-14T16:05:42.673 INFO:teuthology.orchestra.run.smithi016.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.1 MB/s | 427 kB 00:00 2024-04-14T16:05:42.676 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:42.676 INFO:teuthology.orchestra.run.smithi016.stdout:Total 12 MB/s | 30 MB 00:02 2024-04-14T16:05:42.817 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:05:42.858 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:05:42.859 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:05:43.113 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:00:44 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:05:43.284 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-osd-2:19.0.0-2778.ga971fd5f.el9.x86_64 33/36 2024-04-14T16:05:43.285 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:05:43.286 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:05:43.310 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-osd-2:19.0.0-2778.ga971fd5f.el9.x86_64 33/36 2024-04-14T16:05:43.311 INFO:teuthology.orchestra.run.smithi122.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:43.311 INFO:teuthology.orchestra.run.smithi122.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-14T16:05:43.311 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-14T16:05:43.311 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-14T16:05:43.311 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:43.417 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:05:43.417 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:05:43.417 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:05:43.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.417 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:05:43.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.417 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:05:43.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.418 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:05:43.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.418 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:05:43.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.418 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:05:43.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.418 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:05:43.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.418 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:05:43.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.418 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:05:43.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.418 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:05:43.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.420 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.421 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:05:43.422 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.422 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:05:43.422 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.422 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:05:43.422 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.422 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:05:43.422 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.422 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:05:43.422 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.422 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:05:43.422 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.422 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.422 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:43.423 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.424 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.425 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.425 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.425 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:43.425 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.425 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.425 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.425 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.425 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:43.425 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.425 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.425 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.425 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:43.494 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:05:43.497 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:05:43.497 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repository Size 2024-04-14T16:05:43.497 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:05:43.497 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:05:43.497 INFO:teuthology.orchestra.run.smithi027.stdout: ceph x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 6.6 k 2024-04-14T16:05:43.497 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-04-14T16:05:43.497 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mds x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 2.4 M 2024-04-14T16:05:43.497 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mgr x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 1.5 M 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 249 k 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mon x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 4.7 M 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-osd x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 17 M 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-14T16:05:43.498 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jaraco-collections 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-14T16:05:43.499 INFO:teuthology.orchestra.run.smithi027.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-14T16:05:43.500 INFO:teuthology.orchestra.run.smithi027.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-04-14T16:05:43.500 INFO:teuthology.orchestra.run.smithi027.stdout: python3-urllib3 noarch 1.26.5-5.el9 baseos 215 k 2024-04-14T16:05:43.500 INFO:teuthology.orchestra.run.smithi027.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-14T16:05:43.500 INFO:teuthology.orchestra.run.smithi027.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-14T16:05:43.500 INFO:teuthology.orchestra.run.smithi027.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-14T16:05:43.500 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:43.500 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:05:43.500 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:05:43.500 INFO:teuthology.orchestra.run.smithi027.stdout:Install 36 Packages 2024-04-14T16:05:43.500 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:43.501 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 30 M 2024-04-14T16:05:43.501 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 108 M 2024-04-14T16:05:43.501 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:05:43.760 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-mon-2:19.0.0-2778.ga971fd5f.el9.x86_64 34/36 2024-04-14T16:05:43.783 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-mon-2:19.0.0-2778.ga971fd5f.el9.x86_64 34/36 2024-04-14T16:05:43.783 INFO:teuthology.orchestra.run.smithi122.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:43.783 INFO:teuthology.orchestra.run.smithi122.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-14T16:05:43.783 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-14T16:05:43.783 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-14T16:05:43.783 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:44.011 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-mds-2:19.0.0-2778.ga971fd5f.el9.x86_64 35/36 2024-04-14T16:05:44.034 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-mds-2:19.0.0-2778.ga971fd5f.el9.x86_64 35/36 2024-04-14T16:05:44.034 INFO:teuthology.orchestra.run.smithi122.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:44.034 INFO:teuthology.orchestra.run.smithi122.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-14T16:05:44.034 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-14T16:05:44.034 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-14T16:05:44.034 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:44.100 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-2:19.0.0-2778.ga971fd5f.el9.x86_64 36/36 2024-04-14T16:05:44.584 INFO:teuthology.orchestra.run.smithi027.stdout:(1/36): ceph-19.0.0-2778.ga971fd5f.el9.x86_64.r 28 kB/s | 6.6 kB 00:00 2024-04-14T16:05:44.613 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:05:44.684 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-14T16:05:44.721 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-14T16:05:44.733 INFO:teuthology.orchestra.run.smithi027.stdout:(2/36): ceph-mds-19.0.0-2778.ga971fd5f.el9.x86_ 6.2 MB/s | 2.4 MB 00:00 2024-04-14T16:05:44.753 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-14T16:05:44.830 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-14T16:05:44.877 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-14T16:05:44.911 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-14T16:05:44.985 INFO:teuthology.orchestra.run.smithi027.stdout:(3/36): ceph-mgr-19.0.0-2778.ga971fd5f.el9.x86_ 2.4 MB/s | 1.5 MB 00:00 2024-04-14T16:05:45.007 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-14T16:05:45.084 INFO:teuthology.orchestra.run.smithi027.stdout:(4/36): ceph-mgr-modules-core-19.0.0-2778.ga971 2.4 MB/s | 249 kB 00:00 2024-04-14T16:05:45.093 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-14T16:05:45.164 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-14T16:05:45.199 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-14T16:05:45.227 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-14T16:05:45.271 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/36 2024-04-14T16:05:45.304 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/36 2024-04-14T16:05:45.335 INFO:teuthology.orchestra.run.smithi027.stdout:(5/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.0 MB/s | 253 kB 00:00 2024-04-14T16:05:45.346 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/36 2024-04-14T16:05:45.389 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/36 2024-04-14T16:05:45.423 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/36 2024-04-14T16:05:45.461 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/36 2024-04-14T16:05:45.538 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 18/36 2024-04-14T16:05:45.568 INFO:teuthology.orchestra.run.smithi027.stdout:(6/36): ceph-osd-19.0.0-2778.ga971fd5f.el9.x86_ 20 MB/s | 17 MB 00:00 2024-04-14T16:05:45.610 INFO:teuthology.orchestra.run.smithi027.stdout:(7/36): python3-cryptography-36.0.1-4.el9.x86_6 4.5 MB/s | 1.2 MB 00:00 2024-04-14T16:05:45.652 INFO:teuthology.orchestra.run.smithi027.stdout:(8/36): python3-ply-3.11-14.el9.noarch.rpm 1.2 MB/s | 106 kB 00:00 2024-04-14T16:05:45.689 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 19/36 2024-04-14T16:05:45.744 INFO:teuthology.orchestra.run.smithi027.stdout:(9/36): python3-requests-2.25.1-8.el9.noarch.rp 1.8 MB/s | 125 kB 00:00 2024-04-14T16:05:45.773 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 20/36 2024-04-14T16:05:45.811 INFO:teuthology.orchestra.run.smithi027.stdout:(10/36): python3-urllib3-1.26.5-5.el9.noarch.rp 3.2 MB/s | 215 kB 00:00 2024-04-14T16:05:45.824 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 21/36 2024-04-14T16:05:45.836 INFO:teuthology.orchestra.run.smithi027.stdout:(11/36): python3-pycparser-2.20-6.el9.noarch.rp 598 kB/s | 135 kB 00:00 2024-04-14T16:05:45.862 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 22/36 2024-04-14T16:05:45.879 INFO:teuthology.orchestra.run.smithi027.stdout:(12/36): lua-5.4.4-4.el9.x86_64.rpm 2.7 MB/s | 188 kB 00:00 2024-04-14T16:05:45.881 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-2:19.0.0-2778.ga971fd5f.el9.x86_64 36/36 2024-04-14T16:05:45.881 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/36 2024-04-14T16:05:45.881 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-mds-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/36 2024-04-14T16:05:45.881 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 3/36 2024-04-14T16:05:45.881 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-mon-2:19.0.0-2778.ga971fd5f.el9.x86_64 4/36 2024-04-14T16:05:45.881 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-osd-2:19.0.0-2778.ga971fd5f.el9.x86_64 5/36 2024-04-14T16:05:45.881 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2778.ga971fd5f.el9. 6/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 12/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-14T16:05:45.882 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-14T16:05:45.883 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-14T16:05:45.883 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-14T16:05:45.883 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-14T16:05:45.883 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-14T16:05:45.883 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-14T16:05:45.884 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-14T16:05:45.884 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-14T16:05:45.884 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-14T16:05:45.884 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-14T16:05:45.884 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-14T16:05:45.885 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-14T16:05:45.885 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-14T16:05:45.885 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-14T16:05:45.885 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-14T16:05:45.885 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-14T16:05:45.920 INFO:teuthology.orchestra.run.smithi027.stdout:(13/36): python3-mako-1.1.4-6.el9.noarch.rpm 2.0 MB/s | 172 kB 00:00 2024-04-14T16:05:45.921 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/36 2024-04-14T16:05:45.962 INFO:teuthology.orchestra.run.smithi027.stdout:(14/36): python3-markupsafe-1.1.1-12.el9.x86_64 415 kB/s | 35 kB 00:00 2024-04-14T16:05:45.984 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/36 2024-04-14T16:05:45.987 INFO:teuthology.orchestra.run.smithi027.stdout:(15/36): python3-pytz-2021.1-5.el9.noarch.rpm 763 kB/s | 51 kB 00:00 2024-04-14T16:05:46.040 INFO:teuthology.orchestra.run.smithi027.stdout:(16/36): python3-toml-0.10.2-6.el9.noarch.rpm 537 kB/s | 42 kB 00:00 2024-04-14T16:05:46.138 INFO:teuthology.orchestra.run.smithi027.stdout:(17/36): ceph-mon-19.0.0-2778.ga971fd5f.el9.x86 3.0 MB/s | 4.7 MB 00:01 2024-04-14T16:05:46.163 INFO:teuthology.orchestra.run.smithi027.stdout:(18/36): lua-devel-5.4.4-4.el9.x86_64.rpm 127 kB/s | 22 kB 00:00 2024-04-14T16:05:46.181 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/36 2024-04-14T16:05:46.232 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 26/36 2024-04-14T16:05:46.315 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/36 2024-04-14T16:05:46.412 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 28/36 2024-04-14T16:05:46.447 INFO:teuthology.orchestra.run.smithi027.stdout:(19/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 141 kB/s | 43 kB 00:00 2024-04-14T16:05:46.448 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/36 2024-04-14T16:05:46.472 INFO:teuthology.orchestra.run.smithi027.stdout:(20/36): luarocks-3.9.2-1.el9.noarch.rpm 350 kB/s | 151 kB 00:00 2024-04-14T16:05:46.564 INFO:teuthology.orchestra.run.smithi027.stdout:(21/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 117 kB/s | 11 kB 00:00 2024-04-14T16:05:46.582 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/36 2024-04-14T16:05:46.614 INFO:teuthology.orchestra.run.smithi027.stdout:(22/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 381 kB/s | 172 kB 00:00 2024-04-14T16:05:46.656 INFO:teuthology.orchestra.run.smithi027.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 192 kB/s | 18 kB 00:00 2024-04-14T16:05:46.715 INFO:teuthology.orchestra.run.smithi027.stdout:(24/36): python3-cherrypy-18.6.1-2.el9.noarch.r 1.3 MB/s | 358 kB 00:00 2024-04-14T16:05:46.740 INFO:teuthology.orchestra.run.smithi027.stdout:(25/36): python3-jaraco-collections-3.0.0-8.el9 184 kB/s | 23 kB 00:00 2024-04-14T16:05:46.749 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2778.ga971fd5f.el9. 31/36 2024-04-14T16:05:46.757 INFO:teuthology.orchestra.run.smithi027.stdout:(26/36): python3-jaraco-functools-3.5.0-2.el9.n 193 kB/s | 19 kB 00:00 2024-04-14T16:05:46.779 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 32/36 2024-04-14T16:05:46.805 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 32/36 2024-04-14T16:05:46.805 INFO:teuthology.orchestra.run.smithi016.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:46.805 INFO:teuthology.orchestra.run.smithi016.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-14T16:05:46.805 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-14T16:05:46.805 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-14T16:05:46.805 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:46.807 INFO:teuthology.orchestra.run.smithi027.stdout:(27/36): python3-jaraco-text-3.2.0-6.el9.noarch 214 kB/s | 20 kB 00:00 2024-04-14T16:05:46.833 INFO:teuthology.orchestra.run.smithi027.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 502 kB/s | 46 kB 00:00 2024-04-14T16:05:46.849 INFO:teuthology.orchestra.run.smithi027.stdout:(29/36): python3-more-itertools-8.12.0-2.el9.no 856 kB/s | 79 kB 00:00 2024-04-14T16:05:46.908 INFO:teuthology.orchestra.run.smithi027.stdout:(30/36): python3-pecan-1.4.2-3.el9.noarch.rpm 2.6 MB/s | 272 kB 00:00 2024-04-14T16:05:46.917 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-14T16:05:46.917 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:46.917 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:05:46.918 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:46.918 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mds-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:46.918 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:46.918 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mgr-modules-core-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:05:46.918 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mon-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:46.918 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-osd-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:46.918 INFO:teuthology.orchestra.run.smithi122.stdout: lua-5.4.4-4.el9.x86_64 2024-04-14T16:05:46.918 INFO:teuthology.orchestra.run.smithi122.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-14T16:05:46.918 INFO:teuthology.orchestra.run.smithi122.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-14T16:05:46.918 INFO:teuthology.orchestra.run.smithi122.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-14T16:05:46.918 INFO:teuthology.orchestra.run.smithi122.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-14T16:05:46.918 INFO:teuthology.orchestra.run.smithi122.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-ply-3.11-14.el9.noarch 2024-04-14T16:05:46.919 INFO:teuthology.orchestra.run.smithi122.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-14T16:05:46.920 INFO:teuthology.orchestra.run.smithi122.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-14T16:05:46.920 INFO:teuthology.orchestra.run.smithi122.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-14T16:05:46.920 INFO:teuthology.orchestra.run.smithi122.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-14T16:05:46.920 INFO:teuthology.orchestra.run.smithi122.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-14T16:05:46.920 INFO:teuthology.orchestra.run.smithi122.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-14T16:05:46.920 INFO:teuthology.orchestra.run.smithi122.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-14T16:05:46.920 INFO:teuthology.orchestra.run.smithi122.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-14T16:05:46.920 INFO:teuthology.orchestra.run.smithi122.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-14T16:05:46.920 INFO:teuthology.orchestra.run.smithi122.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-14T16:05:46.920 INFO:teuthology.orchestra.run.smithi122.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-14T16:05:46.920 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:46.920 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:05:46.925 INFO:teuthology.orchestra.run.smithi027.stdout:(31/36): python3-portend-3.1.0-2.el9.noarch.rpm 178 kB/s | 16 kB 00:00 2024-04-14T16:05:46.959 INFO:teuthology.orchestra.run.smithi027.stdout:(32/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 826 kB/s | 90 kB 00:00 2024-04-14T16:05:46.992 INFO:teuthology.orchestra.run.smithi027.stdout:(33/36): python3-tempora-5.0.0-2.el9.noarch.rpm 427 kB/s | 36 kB 00:00 2024-04-14T16:05:47.084 INFO:teuthology.orchestra.run.smithi027.stdout:(34/36): python3-zc-lockfile-2.0-10.el9.noarch. 218 kB/s | 20 kB 00:00 2024-04-14T16:05:47.109 INFO:teuthology.orchestra.run.smithi027.stdout:(35/36): python3-webob-1.8.7-6.el9.noarch.rpm 1.2 MB/s | 230 kB 00:00 2024-04-14T16:05:47.151 INFO:teuthology.orchestra.run.smithi027.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 2.2 MB/s | 427 kB 00:00 2024-04-14T16:05:47.155 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:47.155 INFO:teuthology.orchestra.run.smithi027.stdout:Total 8.3 MB/s | 30 MB 00:03 2024-04-14T16:05:47.301 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:05:47.342 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install ceph-base 2024-04-14T16:05:47.345 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:05:47.345 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:05:47.758 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:05:47.759 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:05:47.933 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:00:56 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:05:48.223 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:05:48.224 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:05:48.224 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:05:48.224 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.224 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:05:48.224 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.224 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:05:48.224 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.224 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:05:48.224 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.224 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:05:48.224 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.225 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:05:48.225 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.225 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:05:48.225 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.225 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:05:48.225 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.225 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:05:48.225 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.225 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:05:48.225 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.225 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:05:48.226 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.226 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:05:48.226 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.226 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:05:48.226 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.226 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:05:48.226 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.226 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:05:48.226 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.226 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:05:48.226 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.227 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:05:48.227 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.227 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:05:48.227 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.227 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:05:48.227 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.227 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:05:48.227 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.227 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:05:48.227 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.227 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:05:48.227 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.228 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:05:48.228 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.228 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:05:48.228 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.228 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:05:48.228 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.228 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:05:48.228 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.228 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:05:48.228 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.229 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:05:48.229 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.229 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:05:48.229 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.229 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:05:48.229 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.229 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:05:48.229 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.229 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:05:48.229 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.229 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:05:48.229 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.230 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:05:48.230 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.230 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:05:48.230 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.230 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:05:48.230 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.230 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:05:48.230 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.230 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.230 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.230 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:48.231 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.231 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.231 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.231 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.231 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:05:48.231 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.231 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.231 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.231 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.231 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.231 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.232 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:48.232 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.232 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.232 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.232 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.232 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:48.232 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.232 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.232 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.232 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.232 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:48.233 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.233 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.233 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.233 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.233 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:48.233 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.233 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.233 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.233 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.233 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:48.233 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.234 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.234 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.234 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.234 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:48.234 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.234 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.234 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.234 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:48.235 INFO:teuthology.orchestra.run.smithi122.stdout:Package ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:05:48.292 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:05:48.293 INFO:teuthology.orchestra.run.smithi122.stdout:Nothing to do. 2024-04-14T16:05:48.293 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:05:48.338 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-osd-2:19.0.0-2778.ga971fd5f.el9.x86_64 33/36 2024-04-14T16:05:48.357 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install cephadm 2024-04-14T16:05:48.365 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-osd-2:19.0.0-2778.ga971fd5f.el9.x86_64 33/36 2024-04-14T16:05:48.365 INFO:teuthology.orchestra.run.smithi016.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:48.365 INFO:teuthology.orchestra.run.smithi016.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-14T16:05:48.365 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-14T16:05:48.365 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-14T16:05:48.365 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:48.839 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-mon-2:19.0.0-2778.ga971fd5f.el9.x86_64 34/36 2024-04-14T16:05:48.862 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-mon-2:19.0.0-2778.ga971fd5f.el9.x86_64 34/36 2024-04-14T16:05:48.862 INFO:teuthology.orchestra.run.smithi016.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:48.862 INFO:teuthology.orchestra.run.smithi016.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-14T16:05:48.862 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-14T16:05:48.862 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-14T16:05:48.862 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:48.947 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:00:57 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:05:49.098 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-mds-2:19.0.0-2778.ga971fd5f.el9.x86_64 35/36 2024-04-14T16:05:49.121 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-mds-2:19.0.0-2778.ga971fd5f.el9.x86_64 35/36 2024-04-14T16:05:49.121 INFO:teuthology.orchestra.run.smithi016.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:49.121 INFO:teuthology.orchestra.run.smithi016.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-14T16:05:49.121 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-14T16:05:49.121 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-14T16:05:49.121 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:49.190 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-2:19.0.0-2778.ga971fd5f.el9.x86_64 36/36 2024-04-14T16:05:49.236 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:05:49.237 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:05:49.237 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:05:49.237 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.237 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:05:49.237 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.237 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:05:49.237 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.237 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:05:49.237 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.237 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:05:49.238 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.238 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:05:49.238 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.238 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:05:49.238 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.238 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:05:49.238 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.238 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:05:49.238 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.238 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:05:49.238 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.238 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:05:49.238 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.239 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:05:49.239 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.239 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:05:49.239 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.239 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:05:49.239 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.239 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:05:49.239 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.239 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:05:49.239 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.239 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:05:49.239 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.239 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:05:49.240 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.240 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:05:49.240 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.240 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:05:49.240 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.240 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:05:49.240 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.240 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:05:49.240 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.240 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:05:49.240 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.240 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.241 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:05:49.242 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.242 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:05:49.242 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.242 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:05:49.242 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.242 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:05:49.242 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.242 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:05:49.242 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.242 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:05:49.242 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.242 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:05:49.242 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.243 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.244 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.245 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.246 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.246 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:49.263 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:05:49.309 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:05:49.310 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:49.310 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repository Size 2024-04-14T16:05:49.310 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:49.310 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:05:49.310 INFO:teuthology.orchestra.run.smithi122.stdout: cephadm noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 762 k 2024-04-14T16:05:49.310 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:49.310 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:05:49.310 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:49.310 INFO:teuthology.orchestra.run.smithi122.stdout:Install 1 Package 2024-04-14T16:05:49.310 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:49.311 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 762 k 2024-04-14T16:05:49.311 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 768 k 2024-04-14T16:05:49.311 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:05:49.320 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-14T16:05:49.356 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-14T16:05:49.390 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-14T16:05:49.465 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-14T16:05:49.506 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-14T16:05:49.539 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-14T16:05:49.601 INFO:teuthology.orchestra.run.smithi122.stdout:cephadm-19.0.0-2778.ga971fd5f.el9.noarch.rpm 2.6 MB/s | 762 kB 00:00 2024-04-14T16:05:49.602 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:49.602 INFO:teuthology.orchestra.run.smithi122.stdout:Total 2.6 MB/s | 762 kB 00:00 2024-04-14T16:05:49.602 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:05:49.607 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:05:49.607 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:05:49.613 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:05:49.613 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:05:49.635 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-14T16:05:49.688 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:05:49.712 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-14T16:05:49.759 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-14T16:05:49.793 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-14T16:05:49.822 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-14T16:05:49.857 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/36 2024-04-14T16:05:49.890 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/36 2024-04-14T16:05:49.931 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/36 2024-04-14T16:05:49.974 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/36 2024-04-14T16:05:50.008 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/36 2024-04-14T16:05:50.047 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/36 2024-04-14T16:05:50.125 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 18/36 2024-04-14T16:05:50.159 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/1 2024-04-14T16:05:50.240 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/1 2024-04-14T16:05:50.400 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 19/36 2024-04-14T16:05:50.483 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 20/36 2024-04-14T16:05:50.534 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 21/36 2024-04-14T16:05:50.571 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 22/36 2024-04-14T16:05:50.630 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/36 2024-04-14T16:05:50.678 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/1 2024-04-14T16:05:50.694 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/36 2024-04-14T16:05:50.887 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/36 2024-04-14T16:05:50.933 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 26/36 2024-04-14T16:05:50.979 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-2:19.0.0-2778.ga971fd5f.el9.x86_64 36/36 2024-04-14T16:05:50.979 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-mds-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 3/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-mon-2:19.0.0-2778.ga971fd5f.el9.x86_64 4/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-osd-2:19.0.0-2778.ga971fd5f.el9.x86_64 5/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2778.ga971fd5f.el9. 6/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 12/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/36 2024-04-14T16:05:50.980 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/36 2024-04-14T16:05:50.981 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/36 2024-04-14T16:05:50.981 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-14T16:05:50.981 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-14T16:05:50.981 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-14T16:05:50.981 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-14T16:05:50.981 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-14T16:05:50.981 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-14T16:05:50.981 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-14T16:05:50.981 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-14T16:05:50.981 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-14T16:05:50.981 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-14T16:05:50.982 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-14T16:05:50.983 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-14T16:05:50.983 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-14T16:05:50.983 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-14T16:05:50.983 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-14T16:05:50.983 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-14T16:05:50.983 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-14T16:05:50.983 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-14T16:05:51.000 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/1 2024-04-14T16:05:51.000 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:51.000 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:05:51.000 INFO:teuthology.orchestra.run.smithi122.stdout: cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:05:51.000 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:51.001 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:05:51.015 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/36 2024-04-14T16:05:51.104 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 28/36 2024-04-14T16:05:51.141 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/36 2024-04-14T16:05:51.231 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install ceph-immutable-object-cache 2024-04-14T16:05:51.265 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/36 2024-04-14T16:05:51.439 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2778.ga971fd5f.el9. 31/36 2024-04-14T16:05:51.467 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 32/36 2024-04-14T16:05:51.498 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 32/36 2024-04-14T16:05:51.498 INFO:teuthology.orchestra.run.smithi027.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:51.499 INFO:teuthology.orchestra.run.smithi027.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-14T16:05:51.499 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-14T16:05:51.499 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-14T16:05:51.499 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:51.839 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:00 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:05:52.120 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-14T16:05:52.120 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:52.120 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:05:52.120 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:52.120 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mds-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:52.120 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:52.120 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-modules-core-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:05:52.120 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mon-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:52.120 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-osd-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:52.120 INFO:teuthology.orchestra.run.smithi016.stdout: lua-5.4.4-4.el9.x86_64 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-14T16:05:52.121 INFO:teuthology.orchestra.run.smithi016.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-14T16:05:52.122 INFO:teuthology.orchestra.run.smithi016.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-14T16:05:52.122 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-14T16:05:52.122 INFO:teuthology.orchestra.run.smithi016.stdout: python3-ply-3.11-14.el9.noarch 2024-04-14T16:05:52.122 INFO:teuthology.orchestra.run.smithi016.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-14T16:05:52.122 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-14T16:05:52.122 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-14T16:05:52.122 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-14T16:05:52.122 INFO:teuthology.orchestra.run.smithi016.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-14T16:05:52.122 INFO:teuthology.orchestra.run.smithi016.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-14T16:05:52.122 INFO:teuthology.orchestra.run.smithi016.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-14T16:05:52.122 INFO:teuthology.orchestra.run.smithi016.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-14T16:05:52.122 INFO:teuthology.orchestra.run.smithi016.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-14T16:05:52.122 INFO:teuthology.orchestra.run.smithi016.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-14T16:05:52.123 INFO:teuthology.orchestra.run.smithi016.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-14T16:05:52.123 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:52.123 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:05:52.133 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:05:52.133 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:05:52.133 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:05:52.134 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.134 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:05:52.134 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.134 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:05:52.134 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.134 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:05:52.134 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.134 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:05:52.134 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.134 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:05:52.134 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.134 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:05:52.134 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:05:52.135 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.136 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:05:52.136 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.136 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:05:52.136 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.136 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:05:52.136 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.136 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:05:52.136 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.136 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:05:52.136 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.136 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:05:52.136 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.136 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:05:52.137 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.137 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:05:52.137 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.137 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:05:52.137 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.137 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:05:52.137 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.137 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:05:52.137 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.137 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:05:52.137 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.137 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:05:52.137 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:05:52.138 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.139 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.140 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.141 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.141 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.141 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:52.141 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.141 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.141 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.141 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.141 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:52.141 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.141 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.141 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.142 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.142 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:52.142 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.142 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.142 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.142 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.142 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:52.142 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.142 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.142 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.142 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:52.202 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:05:52.203 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:52.203 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repo Size 2024-04-14T16:05:52.203 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:52.203 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:05:52.203 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 145 k 2024-04-14T16:05:52.203 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:52.203 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:05:52.203 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:52.203 INFO:teuthology.orchestra.run.smithi122.stdout:Install 1 Package 2024-04-14T16:05:52.203 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:52.203 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 145 k 2024-04-14T16:05:52.203 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 435 k 2024-04-14T16:05:52.203 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:05:52.424 INFO:teuthology.orchestra.run.smithi122.stdout:ceph-immutable-object-cache-19.0.0-2778.ga971fd 654 kB/s | 145 kB 00:00 2024-04-14T16:05:52.425 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:52.425 INFO:teuthology.orchestra.run.smithi122.stdout:Total 650 kB/s | 145 kB 00:00 2024-04-14T16:05:52.425 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:05:52.433 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:05:52.433 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:05:52.491 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:05:52.492 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:05:52.502 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install ceph-base 2024-04-14T16:05:52.648 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:05:52.717 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2778.ga971fd5f. 1/1 2024-04-14T16:05:52.742 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2778.ga971fd5f. 1/1 2024-04-14T16:05:52.742 INFO:teuthology.orchestra.run.smithi122.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:52.742 INFO:teuthology.orchestra.run.smithi122.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-14T16:05:52.743 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:53.018 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-osd-2:19.0.0-2778.ga971fd5f.el9.x86_64 33/36 2024-04-14T16:05:53.047 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-osd-2:19.0.0-2778.ga971fd5f.el9.x86_64 33/36 2024-04-14T16:05:53.047 INFO:teuthology.orchestra.run.smithi027.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:53.047 INFO:teuthology.orchestra.run.smithi027.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-14T16:05:53.047 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-14T16:05:53.048 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-14T16:05:53.048 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:53.108 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:00:57 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:05:53.410 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:05:53.410 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:05:53.410 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:05:53.410 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.410 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:05:53.410 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.410 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:05:53.410 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:05:53.411 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.412 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:05:53.412 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.412 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:05:53.412 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.412 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:05:53.412 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.412 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:05:53.412 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.412 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:05:53.412 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.412 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:05:53.412 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.412 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.413 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:05:53.414 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.414 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:05:53.414 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.414 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:05:53.414 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.414 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:05:53.414 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.414 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:05:53.414 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.414 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:05:53.414 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.414 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:05:53.414 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:05:53.415 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.416 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:53.417 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.417 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.417 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.417 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.417 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:53.417 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.417 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.417 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.417 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.417 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:53.417 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.417 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.417 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.418 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.418 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:53.418 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.418 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.418 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.418 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.418 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:53.418 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.418 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.418 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.418 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.418 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:53.418 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.419 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.419 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.419 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:53.419 INFO:teuthology.orchestra.run.smithi016.stdout:Package ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:05:53.480 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:05:53.481 INFO:teuthology.orchestra.run.smithi016.stdout:Nothing to do. 2024-04-14T16:05:53.482 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:05:53.511 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-mon-2:19.0.0-2778.ga971fd5f.el9.x86_64 34/36 2024-04-14T16:05:53.536 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-mon-2:19.0.0-2778.ga971fd5f.el9.x86_64 34/36 2024-04-14T16:05:53.536 INFO:teuthology.orchestra.run.smithi027.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:53.536 INFO:teuthology.orchestra.run.smithi027.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-14T16:05:53.536 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-14T16:05:53.536 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-14T16:05:53.536 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:53.554 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install cephadm 2024-04-14T16:05:53.769 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2778.ga971fd5f. 1/1 2024-04-14T16:05:53.769 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:53.769 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:05:53.769 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-immutable-object-cache-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:53.769 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:53.769 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:05:53.770 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-mds-2:19.0.0-2778.ga971fd5f.el9.x86_64 35/36 2024-04-14T16:05:53.795 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-mds-2:19.0.0-2778.ga971fd5f.el9.x86_64 35/36 2024-04-14T16:05:53.795 INFO:teuthology.orchestra.run.smithi027.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:53.795 INFO:teuthology.orchestra.run.smithi027.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-14T16:05:53.795 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-14T16:05:53.795 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-14T16:05:53.795 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:53.861 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-2:19.0.0-2778.ga971fd5f.el9.x86_64 36/36 2024-04-14T16:05:54.004 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install ceph-mgr 2024-04-14T16:05:54.153 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:00:58 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:05:54.453 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:05:54.453 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:05:54.453 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:05:54.453 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.453 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:05:54.453 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.453 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:05:54.454 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.454 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:05:54.454 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.454 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:05:54.454 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.454 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:05:54.454 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.454 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:05:54.454 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.454 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:05:54.454 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.455 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:05:54.455 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.455 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:05:54.455 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.455 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:05:54.455 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.455 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:05:54.455 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.455 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:05:54.455 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.455 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:05:54.455 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.456 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:05:54.456 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.456 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:05:54.456 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.456 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:05:54.456 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.456 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:05:54.456 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.456 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:05:54.456 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.456 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:05:54.457 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.457 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:05:54.457 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.457 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:05:54.457 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.457 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:05:54.457 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.457 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:05:54.457 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.457 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:05:54.457 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.458 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:05:54.458 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.458 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:05:54.458 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.458 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:05:54.458 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.458 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:05:54.458 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.458 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:05:54.458 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.458 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:05:54.459 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.459 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:05:54.459 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.459 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:05:54.459 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.459 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:05:54.459 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.459 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:05:54.459 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.459 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:05:54.459 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.460 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:05:54.460 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.460 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.460 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.460 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:54.460 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.460 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.460 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.460 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.460 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:05:54.460 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.460 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.461 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.461 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.461 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.461 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.461 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:54.461 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.461 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.461 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.461 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.461 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:54.461 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.462 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.462 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.462 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.462 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:54.462 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.462 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.462 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.462 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.462 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:54.462 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.462 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.463 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.463 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.463 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:54.463 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.463 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.463 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.463 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.463 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:54.463 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.463 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.463 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.463 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.524 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:05:54.525 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:05:54.525 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repository Size 2024-04-14T16:05:54.525 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:05:54.525 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:05:54.525 INFO:teuthology.orchestra.run.smithi016.stdout: cephadm noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 762 k 2024-04-14T16:05:54.525 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:54.525 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:05:54.526 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:05:54.526 INFO:teuthology.orchestra.run.smithi016.stdout:Install 1 Package 2024-04-14T16:05:54.526 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:54.526 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 762 k 2024-04-14T16:05:54.526 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 768 k 2024-04-14T16:05:54.526 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:05:54.608 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:03 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:05:54.897 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:05:54.897 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:05:54.897 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:05:54.897 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.898 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:05:54.898 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.898 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:05:54.898 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.898 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:05:54.898 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.898 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:05:54.898 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.898 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:05:54.898 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.898 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:05:54.898 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.898 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:05:54.899 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.899 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:05:54.899 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.899 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:05:54.899 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.899 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:05:54.899 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.899 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:05:54.899 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.899 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:05:54.899 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.899 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:05:54.899 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.900 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:05:54.900 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.900 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:05:54.900 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.900 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:05:54.900 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.900 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:05:54.900 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.900 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:05:54.900 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.900 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:05:54.900 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.901 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:05:54.901 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.901 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:05:54.901 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.901 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:05:54.901 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.901 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:05:54.901 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.901 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:05:54.901 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.901 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:05:54.901 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.901 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.902 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:05:54.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.903 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:05:54.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.903 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:05:54.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.903 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:05:54.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.903 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:54.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.904 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:54.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.905 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:54.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.905 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:54.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.906 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:54.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.906 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:54.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:54.907 INFO:teuthology.orchestra.run.smithi122.stdout:Package ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:05:54.948 INFO:teuthology.orchestra.run.smithi016.stdout:cephadm-19.0.0-2778.ga971fd5f.el9.noarch.rpm 1.8 MB/s | 762 kB 00:00 2024-04-14T16:05:54.949 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:54.949 INFO:teuthology.orchestra.run.smithi016.stdout:Total 1.8 MB/s | 762 kB 00:00 2024-04-14T16:05:54.949 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:05:54.955 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:05:54.955 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:05:54.961 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:05:54.961 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:05:54.965 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:05:54.966 INFO:teuthology.orchestra.run.smithi122.stdout:Nothing to do. 2024-04-14T16:05:54.966 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:05:55.031 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install ceph-mgr-dashboard 2024-04-14T16:05:55.034 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:05:55.466 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/1 2024-04-14T16:05:55.530 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/1 2024-04-14T16:05:55.624 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:04 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:05:55.780 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-2:19.0.0-2778.ga971fd5f.el9.x86_64 36/36 2024-04-14T16:05:55.780 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/36 2024-04-14T16:05:55.780 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-mds-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/36 2024-04-14T16:05:55.780 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 3/36 2024-04-14T16:05:55.780 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-mon-2:19.0.0-2778.ga971fd5f.el9.x86_64 4/36 2024-04-14T16:05:55.780 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-osd-2:19.0.0-2778.ga971fd5f.el9.x86_64 5/36 2024-04-14T16:05:55.780 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2778.ga971fd5f.el9. 6/36 2024-04-14T16:05:55.780 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/36 2024-04-14T16:05:55.780 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/36 2024-04-14T16:05:55.780 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/36 2024-04-14T16:05:55.780 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/36 2024-04-14T16:05:55.780 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 12/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-14T16:05:55.781 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-14T16:05:55.783 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-14T16:05:55.783 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-14T16:05:55.783 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-14T16:05:55.783 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-14T16:05:55.783 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-14T16:05:55.783 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-14T16:05:55.783 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-14T16:05:55.783 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-14T16:05:55.783 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-14T16:05:55.783 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-14T16:05:55.914 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:05:55.914 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:05:55.914 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:05:55.914 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.914 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:05:55.914 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.914 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:05:55.915 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.915 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:05:55.915 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.915 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:05:55.915 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.915 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:05:55.915 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.915 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:05:55.915 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.915 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:05:55.915 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.915 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:05:55.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.916 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:05:55.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.916 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:05:55.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.916 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:05:55.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.916 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:05:55.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.916 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:05:55.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.916 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:05:55.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.917 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:05:55.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.917 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:05:55.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.917 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:05:55.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.917 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:05:55.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.917 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:05:55.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.917 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:05:55.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.918 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:05:55.918 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.918 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:05:55.918 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.918 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:05:55.918 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.918 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:05:55.918 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.918 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:05:55.918 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.918 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:05:55.918 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.918 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:05:55.919 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.919 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:05:55.919 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.919 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:05:55.919 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.919 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:05:55.919 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.919 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:05:55.919 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.919 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:05:55.919 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.919 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:05:55.919 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.920 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:05:55.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.920 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:05:55.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.920 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:05:55.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.920 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:55.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:55.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.922 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:55.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.922 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:55.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.923 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:55.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.923 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:55.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:55.980 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/1 2024-04-14T16:05:55.983 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:05:55.984 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:55.985 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repository Size 2024-04-14T16:05:55.985 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:55.985 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:05:55.985 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 3.5 M 2024-04-14T16:05:55.985 INFO:teuthology.orchestra.run.smithi122.stdout:Installing dependencies: 2024-04-14T16:05:55.985 INFO:teuthology.orchestra.run.smithi122.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-14T16:05:55.985 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 34 k 2024-04-14T16:05:55.985 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 16 k 2024-04-14T16:05:55.985 INFO:teuthology.orchestra.run.smithi122.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-14T16:05:55.985 INFO:teuthology.orchestra.run.smithi122.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-04-14T16:05:55.985 INFO:teuthology.orchestra.run.smithi122.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-14T16:05:55.985 INFO:teuthology.orchestra.run.smithi122.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-14T16:05:55.986 INFO:teuthology.orchestra.run.smithi122.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-14T16:05:55.986 INFO:teuthology.orchestra.run.smithi122.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-04-14T16:05:55.986 INFO:teuthology.orchestra.run.smithi122.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-14T16:05:55.986 INFO:teuthology.orchestra.run.smithi122.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-14T16:05:55.986 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:55.986 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:05:55.986 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:05:55.986 INFO:teuthology.orchestra.run.smithi122.stdout:Install 12 Packages 2024-04-14T16:05:55.986 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:05:55.987 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 8.6 M 2024-04-14T16:05:55.987 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 104 M 2024-04-14T16:05:55.987 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:05:56.285 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/1 2024-04-14T16:05:56.285 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:56.285 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:05:56.285 INFO:teuthology.orchestra.run.smithi016.stdout: cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:05:56.285 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:56.285 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:05:56.511 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install ceph-immutable-object-cache 2024-04-14T16:05:56.754 INFO:teuthology.orchestra.run.smithi122.stdout:(1/12): ceph-grafana-dashboards-19.0.0-2778.ga9 135 kB/s | 34 kB 00:00 2024-04-14T16:05:56.892 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-14T16:05:56.893 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:56.893 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:05:56.893 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:56.893 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mds-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:56.893 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:56.893 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mgr-modules-core-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:05:56.893 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mon-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:56.893 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-osd-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:56.893 INFO:teuthology.orchestra.run.smithi027.stdout: lua-5.4.4-4.el9.x86_64 2024-04-14T16:05:56.893 INFO:teuthology.orchestra.run.smithi027.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-14T16:05:56.893 INFO:teuthology.orchestra.run.smithi027.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-14T16:05:56.893 INFO:teuthology.orchestra.run.smithi027.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-14T16:05:56.893 INFO:teuthology.orchestra.run.smithi027.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-14T16:05:56.894 INFO:teuthology.orchestra.run.smithi027.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-14T16:05:56.894 INFO:teuthology.orchestra.run.smithi027.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-14T16:05:56.894 INFO:teuthology.orchestra.run.smithi027.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-14T16:05:56.894 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-14T16:05:56.894 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-14T16:05:56.894 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-14T16:05:56.894 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-14T16:05:56.894 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-14T16:05:56.894 INFO:teuthology.orchestra.run.smithi027.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-14T16:05:56.894 INFO:teuthology.orchestra.run.smithi027.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-14T16:05:56.894 INFO:teuthology.orchestra.run.smithi027.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-14T16:05:56.894 INFO:teuthology.orchestra.run.smithi027.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-14T16:05:56.894 INFO:teuthology.orchestra.run.smithi027.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout: python3-ply-3.11-14.el9.noarch 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:56.895 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:05:56.921 INFO:teuthology.orchestra.run.smithi122.stdout:(2/12): ceph-prometheus-alerts-19.0.0-2778.ga97 39 kB/s | 16 kB 00:00 2024-04-14T16:05:57.088 INFO:teuthology.orchestra.run.smithi122.stdout:(3/12): ceph-mgr-dashboard-19.0.0-2778.ga971fd5 6.0 MB/s | 3.5 MB 00:00 2024-04-14T16:05:57.124 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:01 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:05:57.227 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install ceph-base 2024-04-14T16:05:57.263 INFO:teuthology.orchestra.run.smithi122.stdout:(4/12): protobuf-compiler-3.14.0-13.el9.x86_64. 4.8 MB/s | 863 kB 00:00 2024-04-14T16:05:57.425 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:05:57.425 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:05:57.425 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:05:57.425 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.426 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:05:57.426 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.426 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:05:57.426 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.426 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:05:57.426 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.426 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:05:57.426 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.426 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:05:57.426 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.426 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:05:57.426 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.426 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.427 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:05:57.428 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.428 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:05:57.428 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.428 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:05:57.428 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.428 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:05:57.428 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.428 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:05:57.428 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.428 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:05:57.428 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.428 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.429 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:05:57.430 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.430 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:05:57.430 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.430 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:05:57.430 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.430 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:05:57.430 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.430 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:05:57.430 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.430 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:05:57.430 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.430 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:05:57.430 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.431 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:05:57.432 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.432 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.432 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.432 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.432 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.432 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.432 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:57.432 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.432 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.432 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.432 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.432 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:57.432 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.433 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.433 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.433 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.433 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:57.433 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.433 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.433 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.433 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.433 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:57.433 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.433 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.433 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.433 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.434 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:57.434 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.434 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.434 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.434 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.434 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:57.434 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.434 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.434 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.434 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:57.435 INFO:teuthology.orchestra.run.smithi122.stdout:(5/12): python3-protobuf-3.14.0-13.el9.noarch.r 529 kB/s | 269 kB 00:00 2024-04-14T16:05:57.498 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:05:57.499 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:05:57.499 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repo Size 2024-04-14T16:05:57.499 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:05:57.499 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:05:57.499 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 145 k 2024-04-14T16:05:57.499 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:57.499 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:05:57.499 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:05:57.500 INFO:teuthology.orchestra.run.smithi016.stdout:Install 1 Package 2024-04-14T16:05:57.500 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:57.500 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 145 k 2024-04-14T16:05:57.500 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 435 k 2024-04-14T16:05:57.500 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:05:57.622 INFO:teuthology.orchestra.run.smithi122.stdout:(6/12): protobuf-3.14.0-13.el9.x86_64.rpm 1.2 MB/s | 1.0 MB 00:00 2024-04-14T16:05:57.664 INFO:teuthology.orchestra.run.smithi122.stdout:(7/12): grpc-data-1.46.7-10.el9.noarch.rpm 83 kB/s | 19 kB 00:00 2024-04-14T16:05:57.730 INFO:teuthology.orchestra.run.smithi016.stdout:ceph-immutable-object-cache-19.0.0-2778.ga971fd 630 kB/s | 145 kB 00:00 2024-04-14T16:05:57.731 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:57.731 INFO:teuthology.orchestra.run.smithi016.stdout:Total 626 kB/s | 145 kB 00:00 2024-04-14T16:05:57.731 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:05:57.739 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:05:57.740 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:05:57.800 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:05:57.800 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:05:57.847 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:00:58 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:05:57.847 INFO:teuthology.orchestra.run.smithi122.stdout:(8/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 938 kB/s | 548 kB 00:00 2024-04-14T16:05:57.931 INFO:teuthology.orchestra.run.smithi122.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 370 kB/s | 31 kB 00:00 2024-04-14T16:05:57.947 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:05:57.964 INFO:teuthology.orchestra.run.smithi122.stdout:(10/12): python3-grpcio-tools-1.46.7-10.el9.x86 480 kB/s | 144 kB 00:00 2024-04-14T16:05:58.006 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2778.ga971fd5f. 1/1 2024-04-14T16:05:58.031 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2778.ga971fd5f. 1/1 2024-04-14T16:05:58.031 INFO:teuthology.orchestra.run.smithi016.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:05:58.031 INFO:teuthology.orchestra.run.smithi016.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-14T16:05:58.031 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:58.039 INFO:teuthology.orchestra.run.smithi122.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 1.7 MB/s | 188 kB 00:00 2024-04-14T16:05:58.149 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:05:58.149 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:05:58.149 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:05:58.149 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.149 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:05:58.149 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.149 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:05:58.149 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:05:58.150 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.151 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:05:58.151 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.151 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:05:58.151 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.151 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:05:58.151 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.151 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:05:58.151 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.151 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:05:58.151 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.151 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:05:58.151 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.151 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:05:58.152 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.152 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:05:58.152 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.152 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:05:58.152 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.152 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:05:58.152 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.152 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:05:58.152 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.152 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:05:58.152 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.152 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.153 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:05:58.154 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.154 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:05:58.154 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.154 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:05:58.154 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.154 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:05:58.154 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.154 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:05:58.154 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.154 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:05:58.154 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.154 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:05:58.154 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.155 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:58.156 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.157 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:58.158 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.158 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.158 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.158 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:58.158 INFO:teuthology.orchestra.run.smithi027.stdout:Package ceph-base-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:05:58.220 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:05:58.221 INFO:teuthology.orchestra.run.smithi027.stdout:Nothing to do. 2024-04-14T16:05:58.221 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:05:58.287 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install cephadm 2024-04-14T16:05:58.465 INFO:teuthology.orchestra.run.smithi122.stdout:(12/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 2.4 MB/s | 2.0 MB 00:00 2024-04-14T16:05:58.467 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:58.468 INFO:teuthology.orchestra.run.smithi122.stdout:Total 3.5 MB/s | 8.6 MB 00:02 2024-04-14T16:05:58.520 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:05:58.538 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:05:58.539 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:05:58.733 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:05:58.734 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:05:58.909 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:00:59 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:05:59.035 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2778.ga971fd5f. 1/1 2024-04-14T16:05:59.036 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:59.036 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:05:59.036 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-immutable-object-cache-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:05:59.036 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:05:59.036 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:05:59.214 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:05:59.214 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:05:59.214 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:05:59.214 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:05:59.215 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.216 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:05:59.216 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.216 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:05:59.216 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.216 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:05:59.216 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.216 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:05:59.216 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.216 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:05:59.216 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.216 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:05:59.216 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.217 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:05:59.217 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.217 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:05:59.217 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.217 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:05:59.217 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.217 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:05:59.217 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.217 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:05:59.217 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.217 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:05:59.217 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.217 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:05:59.218 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.218 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:05:59.218 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.218 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:05:59.218 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.218 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:05:59.218 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.218 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:05:59.218 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.218 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:05:59.218 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.218 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:05:59.218 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:05:59.219 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.220 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.221 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.222 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.222 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.222 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:05:59.222 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.222 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.222 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.222 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.222 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:05:59.222 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.222 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.222 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.222 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.222 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:05:59.223 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.223 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.223 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.223 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.223 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:05:59.223 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.223 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.223 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.223 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:05:59.274 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:05:59.286 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:05:59.287 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:05:59.287 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repository Size 2024-04-14T16:05:59.287 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:05:59.287 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:05:59.287 INFO:teuthology.orchestra.run.smithi027.stdout: cephadm noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 762 k 2024-04-14T16:05:59.287 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:59.287 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:05:59.287 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:05:59.287 INFO:teuthology.orchestra.run.smithi027.stdout:Install 1 Package 2024-04-14T16:05:59.288 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:05:59.288 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 762 k 2024-04-14T16:05:59.288 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 768 k 2024-04-14T16:05:59.288 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:05:59.300 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install ceph-mgr 2024-04-14T16:05:59.365 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-14T16:05:59.409 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-14T16:05:59.455 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-14T16:05:59.494 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-14T16:05:59.562 INFO:teuthology.orchestra.run.smithi027.stdout:cephadm-19.0.0-2778.ga971fd5f.el9.noarch.rpm 2.7 MB/s | 762 kB 00:00 2024-04-14T16:05:59.562 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:05:59.562 INFO:teuthology.orchestra.run.smithi027.stdout:Total 2.7 MB/s | 762 kB 00:00 2024-04-14T16:05:59.563 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:05:59.568 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:05:59.568 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:05:59.574 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:05:59.575 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:05:59.614 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-14T16:05:59.648 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:05:59.746 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-14T16:05:59.840 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-14T16:05:59.891 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-14T16:05:59.900 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:03 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:05:59.920 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-14T16:05:59.952 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2778.ga971fd5f.el9 10/12 2024-04-14T16:06:00.201 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:00.202 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:00.202 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:00.202 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.202 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:00.202 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.202 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:00.202 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.202 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:00.202 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.202 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.203 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:00.204 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.204 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:00.204 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.204 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:00.204 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.204 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:00.204 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.204 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:00.204 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.204 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.205 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:00.206 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.206 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:00.206 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.206 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:00.206 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.206 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:00.207 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.207 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:00.207 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.207 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:00.207 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.207 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:00.207 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.208 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:00.208 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.208 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:00.208 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.208 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:00.208 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.209 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:00.209 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.209 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:00.209 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.209 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:00.209 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.210 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:00.210 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.210 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.210 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.210 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:00.210 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.211 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.211 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.211 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.211 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:00.211 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.211 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.211 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.212 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.212 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.212 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.212 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:00.212 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.212 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.213 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.213 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.213 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:00.213 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.213 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.213 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.214 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.214 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:00.214 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.214 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.214 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.214 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.215 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:00.215 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.215 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.215 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.215 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.215 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:00.215 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.216 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.216 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.216 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.216 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:00.216 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.216 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.217 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.217 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:00.218 INFO:teuthology.orchestra.run.smithi016.stdout:Package ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:00.231 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/1 2024-04-14T16:06:00.272 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:00.273 INFO:teuthology.orchestra.run.smithi016.stdout:Nothing to do. 2024-04-14T16:06:00.274 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:00.336 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/1 2024-04-14T16:06:00.339 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install ceph-mgr-dashboard 2024-04-14T16:06:00.725 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/1 2024-04-14T16:06:00.940 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:04 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:00.994 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2778.ga971fd5f.el 11/12 2024-04-14T16:06:01.030 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/1 2024-04-14T16:06:01.031 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:01.031 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:06:01.031 INFO:teuthology.orchestra.run.smithi027.stdout: cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:01.031 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:01.031 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:01.035 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2778.ga971fd5f.el9.noa 12/12 2024-04-14T16:06:01.242 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:01.242 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:01.242 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:01.242 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.242 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:01.242 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.242 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:01.242 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.243 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.244 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:01.245 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.245 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:01.245 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.245 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:01.245 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.245 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:01.245 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.245 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:01.245 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.245 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:01.245 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.245 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:01.245 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.246 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:01.246 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.246 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:01.246 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.246 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:01.246 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.246 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:01.246 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.247 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:01.247 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.247 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:01.247 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.247 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:01.247 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.248 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:01.248 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.248 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:01.248 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.248 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:01.248 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.248 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:01.248 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.248 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:01.248 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.248 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.249 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.250 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.250 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:01.250 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.250 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.250 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.250 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.250 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:01.250 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.250 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.250 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.250 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.250 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:01.251 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.251 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.251 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.251 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.251 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:01.251 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.251 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.251 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.251 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.251 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:01.251 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.251 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.252 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.252 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.252 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:01.252 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.252 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.252 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.252 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:01.297 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install ceph-immutable-object-cache 2024-04-14T16:06:01.315 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:01.316 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:01.316 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repository Size 2024-04-14T16:06:01.316 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:01.317 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:06:01.317 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 3.5 M 2024-04-14T16:06:01.317 INFO:teuthology.orchestra.run.smithi016.stdout:Installing dependencies: 2024-04-14T16:06:01.317 INFO:teuthology.orchestra.run.smithi016.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-14T16:06:01.317 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 34 k 2024-04-14T16:06:01.317 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 16 k 2024-04-14T16:06:01.317 INFO:teuthology.orchestra.run.smithi016.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-14T16:06:01.317 INFO:teuthology.orchestra.run.smithi016.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-04-14T16:06:01.317 INFO:teuthology.orchestra.run.smithi016.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-14T16:06:01.317 INFO:teuthology.orchestra.run.smithi016.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-14T16:06:01.317 INFO:teuthology.orchestra.run.smithi016.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-14T16:06:01.317 INFO:teuthology.orchestra.run.smithi016.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-04-14T16:06:01.318 INFO:teuthology.orchestra.run.smithi016.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-14T16:06:01.318 INFO:teuthology.orchestra.run.smithi016.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-14T16:06:01.318 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:01.318 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:06:01.318 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:01.318 INFO:teuthology.orchestra.run.smithi016.stdout:Install 12 Packages 2024-04-14T16:06:01.318 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:01.319 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 8.6 M 2024-04-14T16:06:01.319 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 104 M 2024-04-14T16:06:01.319 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:06:01.922 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:02 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:02.010 INFO:teuthology.orchestra.run.smithi016.stdout:(1/12): ceph-prometheus-alerts-19.0.0-2778.ga97 48 kB/s | 16 kB 00:00 2024-04-14T16:06:02.146 INFO:teuthology.orchestra.run.smithi016.stdout:(2/12): ceph-grafana-dashboards-19.0.0-2778.ga9 72 kB/s | 34 kB 00:00 2024-04-14T16:06:02.230 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:02.230 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:02.230 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:02.230 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.231 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:02.231 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.231 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:02.231 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.231 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:02.231 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.231 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:02.231 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.231 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:02.231 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.231 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:02.231 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.231 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:02.232 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.232 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:02.232 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.232 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:02.232 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.232 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:02.232 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.232 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:02.232 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.232 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:02.232 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.232 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:02.232 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:02.233 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:02.234 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.235 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:02.235 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.235 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:02.235 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.235 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:02.235 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.235 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:02.235 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.235 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:02.235 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.235 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:02.235 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.235 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:02.236 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.236 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:02.236 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.236 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:02.236 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.236 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.236 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.236 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:02.236 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.236 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.236 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.236 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.236 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:02.237 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.237 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.237 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.237 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.237 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.237 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.237 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:02.237 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.237 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.237 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.237 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.237 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:02.237 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.238 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:02.239 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.239 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.239 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.239 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.239 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:02.239 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.239 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.239 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.239 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:02.302 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:02.303 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:02.303 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repo Size 2024-04-14T16:06:02.303 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:02.303 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:06:02.303 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 145 k 2024-04-14T16:06:02.303 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:02.303 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:06:02.303 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:02.303 INFO:teuthology.orchestra.run.smithi027.stdout:Install 1 Package 2024-04-14T16:06:02.303 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:02.304 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 145 k 2024-04-14T16:06:02.304 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 435 k 2024-04-14T16:06:02.304 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:06:02.387 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2778.ga971fd5f.el9.noa 12/12 2024-04-14T16:06:02.388 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2778.ga971fd5f.el 1/12 2024-04-14T16:06:02.388 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2778.ga971fd5f.el9.noa 2/12 2024-04-14T16:06:02.388 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2778.ga971fd5f.el9 3/12 2024-04-14T16:06:02.388 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-14T16:06:02.388 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-14T16:06:02.388 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-14T16:06:02.388 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-14T16:06:02.388 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-14T16:06:02.388 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-14T16:06:02.388 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-14T16:06:02.388 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-14T16:06:02.526 INFO:teuthology.orchestra.run.smithi027.stdout:ceph-immutable-object-cache-19.0.0-2778.ga971fd 652 kB/s | 145 kB 00:00 2024-04-14T16:06:02.526 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:02.526 INFO:teuthology.orchestra.run.smithi027.stdout:Total 648 kB/s | 145 kB 00:00 2024-04-14T16:06:02.527 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:06:02.535 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:06:02.535 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:06:02.597 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:06:02.597 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:06:02.762 INFO:teuthology.orchestra.run.smithi016.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 436 kB/s | 269 kB 00:00 2024-04-14T16:06:02.764 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-14T16:06:02.764 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:02.764 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:06:02.764 INFO:teuthology.orchestra.run.smithi122.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-14T16:06:02.764 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-grafana-dashboards-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:02.764 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mgr-dashboard-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:02.764 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-prometheus-alerts-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:02.764 INFO:teuthology.orchestra.run.smithi122.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-14T16:06:02.764 INFO:teuthology.orchestra.run.smithi122.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-14T16:06:02.765 INFO:teuthology.orchestra.run.smithi122.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-14T16:06:02.765 INFO:teuthology.orchestra.run.smithi122.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-14T16:06:02.765 INFO:teuthology.orchestra.run.smithi122.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-14T16:06:02.765 INFO:teuthology.orchestra.run.smithi122.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-14T16:06:02.765 INFO:teuthology.orchestra.run.smithi122.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-14T16:06:02.765 INFO:teuthology.orchestra.run.smithi122.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-14T16:06:02.765 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:02.765 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:02.864 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:06:02.919 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2778.ga971fd5f. 1/1 2024-04-14T16:06:02.945 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2778.ga971fd5f. 1/1 2024-04-14T16:06:02.945 INFO:teuthology.orchestra.run.smithi027.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:06:02.945 INFO:teuthology.orchestra.run.smithi027.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-14T16:06:02.945 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:03.034 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-14T16:06:03.078 INFO:teuthology.orchestra.run.smithi016.stdout:(4/12): ceph-mgr-dashboard-19.0.0-2778.ga971fd5 2.5 MB/s | 3.5 MB 00:01 2024-04-14T16:06:03.111 INFO:teuthology.orchestra.run.smithi016.stdout:(5/12): protobuf-3.14.0-13.el9.x86_64.rpm 939 kB/s | 1.0 MB 00:01 2024-04-14T16:06:03.262 INFO:teuthology.orchestra.run.smithi016.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 130 kB/s | 19 kB 00:00 2024-04-14T16:06:03.470 INFO:teuthology.orchestra.run.smithi016.stdout:(7/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.4 MB/s | 548 kB 00:00 2024-04-14T16:06:03.545 INFO:teuthology.orchestra.run.smithi016.stdout:(8/12): python3-grpcio-1.46.7-10.el9.x86_64.rpm 7.2 MB/s | 2.0 MB 00:00 2024-04-14T16:06:03.571 INFO:teuthology.orchestra.run.smithi016.stdout:(9/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 1.4 MB/s | 144 kB 00:00 2024-04-14T16:06:03.596 INFO:teuthology.orchestra.run.smithi016.stdout:(10/12): python3-repoze-lru-0.7-16.el9.noarch.r 612 kB/s | 31 kB 00:00 2024-04-14T16:06:03.641 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:12 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:03.671 INFO:teuthology.orchestra.run.smithi016.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 1.8 MB/s | 188 kB 00:00 2024-04-14T16:06:03.939 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:03.939 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:03.939 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:03.940 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.940 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:03.940 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.940 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:03.940 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.940 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:03.940 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.940 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:03.940 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.940 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:03.940 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.940 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:03.941 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.941 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:03.941 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.941 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:03.941 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.941 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:03.941 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.941 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:03.941 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.941 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:03.942 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.942 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:03.942 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.942 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:03.942 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.942 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:03.942 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.942 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:03.942 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.942 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:03.942 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.942 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:03.943 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.943 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:03.943 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.943 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:03.943 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.943 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:03.943 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.943 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:03.943 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.943 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:03.943 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.943 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:03.943 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.944 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:03.944 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.944 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:03.944 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.944 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:03.944 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.944 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:03.944 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.944 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:03.944 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.944 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:03.945 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.945 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:03.945 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.945 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:03.945 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.945 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:03.945 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.945 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:03.945 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.945 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:03.945 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.945 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:03.946 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.946 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:03.946 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.946 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.946 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.946 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:03.946 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.946 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.946 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.946 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.946 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:03.946 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.947 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.947 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.947 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.947 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.947 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.947 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:03.947 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.947 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.947 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.947 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.947 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:03.947 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.947 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.948 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.948 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.948 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:03.948 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.948 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.948 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.948 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.948 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:03.948 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.948 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.949 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.949 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.949 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:03.949 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.949 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.949 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.949 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.949 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:03.949 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.949 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.949 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:03.949 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:04.000 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2778.ga971fd5f. 1/1 2024-04-14T16:06:04.000 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:04.000 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:06:04.000 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-immutable-object-cache-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:06:04.000 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:04.000 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:04.011 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:04.012 INFO:teuthology.orchestra.run.smithi122.stdout:======================================================================================= 2024-04-14T16:06:04.012 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repository Size 2024-04-14T16:06:04.012 INFO:teuthology.orchestra.run.smithi122.stdout:======================================================================================= 2024-04-14T16:06:04.013 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:06:04.013 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 7.4 M 2024-04-14T16:06:04.013 INFO:teuthology.orchestra.run.smithi122.stdout:Installing dependencies: 2024-04-14T16:06:04.013 INFO:teuthology.orchestra.run.smithi122.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-04-14T16:06:04.013 INFO:teuthology.orchestra.run.smithi122.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-04-14T16:06:04.013 INFO:teuthology.orchestra.run.smithi122.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-04-14T16:06:04.013 INFO:teuthology.orchestra.run.smithi122.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-14T16:06:04.013 INFO:teuthology.orchestra.run.smithi122.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-14T16:06:04.013 INFO:teuthology.orchestra.run.smithi122.stdout: openblas x86_64 0.3.21-2.el9 appstream 35 k 2024-04-14T16:06:04.013 INFO:teuthology.orchestra.run.smithi122.stdout: openblas-openmp x86_64 0.3.21-2.el9 appstream 4.7 M 2024-04-14T16:06:04.014 INFO:teuthology.orchestra.run.smithi122.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-14T16:06:04.014 INFO:teuthology.orchestra.run.smithi122.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-04-14T16:06:04.014 INFO:teuthology.orchestra.run.smithi122.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-04-14T16:06:04.014 INFO:teuthology.orchestra.run.smithi122.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-04-14T16:06:04.014 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:04.014 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:06:04.014 INFO:teuthology.orchestra.run.smithi122.stdout:======================================================================================= 2024-04-14T16:06:04.014 INFO:teuthology.orchestra.run.smithi122.stdout:Install 12 Packages 2024-04-14T16:06:04.014 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:04.015 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 38 M 2024-04-14T16:06:04.015 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 209 M 2024-04-14T16:06:04.015 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:06:04.266 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install ceph-mgr 2024-04-14T16:06:04.424 INFO:teuthology.orchestra.run.smithi122.stdout:(1/12): libquadmath-11.4.1-3.el9.x86_64.rpm 1.1 MB/s | 195 kB 00:00 2024-04-14T16:06:04.455 INFO:teuthology.orchestra.run.smithi016.stdout:(12/12): protobuf-compiler-3.14.0-13.el9.x86_64 510 kB/s | 863 kB 00:01 2024-04-14T16:06:04.458 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:04.458 INFO:teuthology.orchestra.run.smithi016.stdout:Total 2.8 MB/s | 8.6 MB 00:03 2024-04-14T16:06:04.512 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:06:04.531 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:06:04.531 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:06:04.617 INFO:teuthology.orchestra.run.smithi122.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 171 kB/s | 33 kB 00:00 2024-04-14T16:06:04.642 INFO:teuthology.orchestra.run.smithi122.stdout:(3/12): libgfortran-11.4.1-3.el9.x86_64.rpm 2.0 MB/s | 803 kB 00:00 2024-04-14T16:06:04.721 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:06:04.721 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:06:04.784 INFO:teuthology.orchestra.run.smithi122.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 128 kB/s | 18 kB 00:00 2024-04-14T16:06:04.896 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:05 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:04.984 INFO:teuthology.orchestra.run.smithi122.stdout:(5/12): ceph-mgr-diskprediction-local-19.0.0-27 10 MB/s | 7.4 MB 00:00 2024-04-14T16:06:05.009 INFO:teuthology.orchestra.run.smithi122.stdout:(6/12): openblas-0.3.21-2.el9.x86_64.rpm 156 kB/s | 35 kB 00:00 2024-04-14T16:06:05.200 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:05.200 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:05.200 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:05.200 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.200 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:05.200 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.200 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:05.200 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.201 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:05.201 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.201 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:05.201 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.201 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:05.201 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.201 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:05.201 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.201 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:05.201 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.201 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:05.201 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.201 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:05.202 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.202 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:05.202 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.202 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:05.202 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.202 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:05.202 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.202 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:05.202 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.202 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:05.202 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.203 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:05.203 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.203 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:05.203 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.203 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:05.203 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.203 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:05.203 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.203 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:05.203 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.203 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:05.203 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.203 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.204 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:05.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.205 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:05.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.205 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:05.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.205 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:05.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.205 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:05.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.205 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:05.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.205 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:05.205 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.206 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:05.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.206 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:05.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.206 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:05.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.206 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:05.206 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.207 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:05.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.207 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:05.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.207 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.208 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:05.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.208 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:05.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.208 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.209 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:05.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.209 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:05.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.209 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:05.210 INFO:teuthology.orchestra.run.smithi027.stdout:Package ceph-mgr-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:05.261 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:06:05.271 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:05.273 INFO:teuthology.orchestra.run.smithi027.stdout:Nothing to do. 2024-04-14T16:06:05.273 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:05.340 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-14T16:06:05.349 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install ceph-mgr-dashboard 2024-04-14T16:06:05.360 INFO:teuthology.orchestra.run.smithi122.stdout:(7/12): python3-devel-3.9.17-2.el9.x86_64.rpm 701 kB/s | 245 kB 00:00 2024-04-14T16:06:05.374 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-14T16:06:05.422 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-14T16:06:05.444 INFO:teuthology.orchestra.run.smithi122.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 3.6 MB/s | 3.0 MB 00:00 2024-04-14T16:06:05.452 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-14T16:06:05.510 INFO:teuthology.orchestra.run.smithi122.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 3.7 MB/s | 250 kB 00:00 2024-04-14T16:06:05.565 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-14T16:06:05.706 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-14T16:06:05.800 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-14T16:06:05.848 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-14T16:06:05.876 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-14T16:06:05.909 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2778.ga971fd5f.el9 10/12 2024-04-14T16:06:05.965 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:06 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:06.267 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:06.267 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:06.267 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:06.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.268 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:06.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.268 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:06.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.268 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:06.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.268 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:06.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.268 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:06.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.268 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:06.268 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:06.269 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:06.270 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.271 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:06.271 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.271 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:06.271 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.271 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:06.271 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.271 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:06.271 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.271 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.272 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.273 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.274 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.275 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.276 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.276 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:06.276 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.276 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.276 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.276 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.276 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:06.276 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.276 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.276 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.276 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:06.341 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:06.342 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:06.343 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repository Size 2024-04-14T16:06:06.343 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:06.343 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:06:06.343 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 3.5 M 2024-04-14T16:06:06.343 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-04-14T16:06:06.343 INFO:teuthology.orchestra.run.smithi027.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-14T16:06:06.343 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 34 k 2024-04-14T16:06:06.343 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 16 k 2024-04-14T16:06:06.343 INFO:teuthology.orchestra.run.smithi027.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-14T16:06:06.343 INFO:teuthology.orchestra.run.smithi027.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-04-14T16:06:06.343 INFO:teuthology.orchestra.run.smithi027.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-14T16:06:06.343 INFO:teuthology.orchestra.run.smithi027.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-14T16:06:06.343 INFO:teuthology.orchestra.run.smithi027.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-14T16:06:06.344 INFO:teuthology.orchestra.run.smithi027.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-04-14T16:06:06.344 INFO:teuthology.orchestra.run.smithi027.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-14T16:06:06.344 INFO:teuthology.orchestra.run.smithi027.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-14T16:06:06.344 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:06.344 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:06:06.344 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:06.344 INFO:teuthology.orchestra.run.smithi027.stdout:Install 12 Packages 2024-04-14T16:06:06.344 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:06.345 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 8.6 M 2024-04-14T16:06:06.345 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 104 M 2024-04-14T16:06:06.345 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:06:06.511 INFO:teuthology.orchestra.run.smithi122.stdout:(10/12): openblas-openmp-0.3.21-2.el9.x86_64.rp 3.1 MB/s | 4.7 MB 00:01 2024-04-14T16:06:06.727 INFO:teuthology.orchestra.run.smithi122.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 3.7 MB/s | 5.1 MB 00:01 2024-04-14T16:06:06.888 INFO:teuthology.orchestra.run.smithi027.stdout:(1/12): ceph-prometheus-alerts-19.0.0-2778.ga97 63 kB/s | 16 kB 00:00 2024-04-14T16:06:06.913 INFO:teuthology.orchestra.run.smithi027.stdout:(2/12): ceph-grafana-dashboards-19.0.0-2778.ga9 120 kB/s | 34 kB 00:00 2024-04-14T16:06:07.008 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2778.ga971fd5f.el 11/12 2024-04-14T16:06:07.019 INFO:teuthology.orchestra.run.smithi122.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 11 MB/s | 16 MB 00:01 2024-04-14T16:06:07.020 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:07.020 INFO:teuthology.orchestra.run.smithi122.stdout:Total 13 MB/s | 38 MB 00:03 2024-04-14T16:06:07.051 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2778.ga971fd5f.el9.noa 12/12 2024-04-14T16:06:07.255 INFO:teuthology.orchestra.run.smithi027.stdout:(3/12): ceph-mgr-dashboard-19.0.0-2778.ga971fd5 5.6 MB/s | 3.5 MB 00:00 2024-04-14T16:06:07.371 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:06:07.399 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:06:07.399 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:06:07.505 INFO:teuthology.orchestra.run.smithi027.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 455 kB/s | 269 kB 00:00 2024-04-14T16:06:07.581 INFO:teuthology.orchestra.run.smithi027.stdout:(5/12): protobuf-3.14.0-13.el9.x86_64.rpm 1.5 MB/s | 1.0 MB 00:00 2024-04-14T16:06:07.756 INFO:teuthology.orchestra.run.smithi027.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 131 kB/s | 19 kB 00:00 2024-04-14T16:06:07.823 INFO:teuthology.orchestra.run.smithi027.stdout:(7/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.8 MB/s | 548 kB 00:00 2024-04-14T16:06:07.826 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:06:07.827 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:06:07.890 INFO:teuthology.orchestra.run.smithi027.stdout:(8/12): python3-grpcio-1.46.7-10.el9.x86_64.rpm 15 MB/s | 2.0 MB 00:00 2024-04-14T16:06:07.915 INFO:teuthology.orchestra.run.smithi027.stdout:(9/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 1.6 MB/s | 144 kB 00:00 2024-04-14T16:06:07.940 INFO:teuthology.orchestra.run.smithi027.stdout:(10/12): python3-repoze-lru-0.7-16.el9.noarch.r 616 kB/s | 31 kB 00:00 2024-04-14T16:06:07.966 INFO:teuthology.orchestra.run.smithi027.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 3.7 MB/s | 188 kB 00:00 2024-04-14T16:06:08.355 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2778.ga971fd5f.el9.noa 12/12 2024-04-14T16:06:08.355 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2778.ga971fd5f.el 1/12 2024-04-14T16:06:08.356 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2778.ga971fd5f.el9.noa 2/12 2024-04-14T16:06:08.356 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2778.ga971fd5f.el9 3/12 2024-04-14T16:06:08.356 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-14T16:06:08.356 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-14T16:06:08.356 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-14T16:06:08.356 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-14T16:06:08.356 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-14T16:06:08.356 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-14T16:06:08.356 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-14T16:06:08.356 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-14T16:06:08.587 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:06:08.655 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-04-14T16:06:08.692 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 2/12 2024-04-14T16:06:08.792 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 3/12 2024-04-14T16:06:08.835 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-14T16:06:08.840 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-14T16:06:08.840 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:08.841 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:06:08.841 INFO:teuthology.orchestra.run.smithi016.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-14T16:06:08.841 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-grafana-dashboards-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:08.841 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-dashboard-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:08.841 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-prometheus-alerts-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:08.841 INFO:teuthology.orchestra.run.smithi016.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-14T16:06:08.841 INFO:teuthology.orchestra.run.smithi016.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-14T16:06:08.841 INFO:teuthology.orchestra.run.smithi016.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-14T16:06:08.841 INFO:teuthology.orchestra.run.smithi016.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-14T16:06:08.841 INFO:teuthology.orchestra.run.smithi016.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-14T16:06:08.841 INFO:teuthology.orchestra.run.smithi016.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-14T16:06:08.841 INFO:teuthology.orchestra.run.smithi016.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-14T16:06:08.841 INFO:teuthology.orchestra.run.smithi016.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-14T16:06:08.842 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:08.842 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:08.941 INFO:teuthology.orchestra.run.smithi027.stdout:(12/12): protobuf-compiler-3.14.0-13.el9.x86_64 512 kB/s | 863 kB 00:01 2024-04-14T16:06:08.946 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:08.946 INFO:teuthology.orchestra.run.smithi027.stdout:Total 3.3 MB/s | 8.6 MB 00:02 2024-04-14T16:06:08.999 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:06:09.013 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-14T16:06:09.020 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:06:09.020 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:06:09.051 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-14T16:06:09.106 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-14T16:06:09.127 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-14T16:06:09.219 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:06:09.219 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:06:09.707 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:13 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:09.767 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:06:09.801 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-14T16:06:09.842 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-14T16:06:09.877 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-14T16:06:09.922 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-14T16:06:09.925 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-14T16:06:09.953 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-14T16:06:10.007 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:10.007 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:10.007 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:10.007 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.007 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:10.008 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.008 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:10.008 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.008 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:10.008 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.008 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:10.008 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.008 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:10.008 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.008 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:10.008 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.008 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:10.008 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.009 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:10.009 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.009 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:10.009 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.009 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:10.009 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.009 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:10.009 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.009 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:10.009 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.009 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:10.009 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.009 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:10.010 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.010 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:10.010 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.010 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:10.010 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.010 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:10.010 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.010 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:10.010 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.010 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:10.010 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.010 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:10.010 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:10.011 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:10.012 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.013 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.014 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.014 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.014 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.014 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.014 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:10.014 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.014 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.014 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.014 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.014 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:10.014 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.014 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:10.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.016 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:10.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:10.051 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-14T16:06:10.082 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:10.083 INFO:teuthology.orchestra.run.smithi016.stdout:======================================================================================= 2024-04-14T16:06:10.083 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repository Size 2024-04-14T16:06:10.083 INFO:teuthology.orchestra.run.smithi016.stdout:======================================================================================= 2024-04-14T16:06:10.083 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:06:10.083 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 7.4 M 2024-04-14T16:06:10.083 INFO:teuthology.orchestra.run.smithi016.stdout:Installing dependencies: 2024-04-14T16:06:10.083 INFO:teuthology.orchestra.run.smithi016.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-04-14T16:06:10.083 INFO:teuthology.orchestra.run.smithi016.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-04-14T16:06:10.083 INFO:teuthology.orchestra.run.smithi016.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-04-14T16:06:10.083 INFO:teuthology.orchestra.run.smithi016.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-14T16:06:10.083 INFO:teuthology.orchestra.run.smithi016.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-14T16:06:10.083 INFO:teuthology.orchestra.run.smithi016.stdout: openblas x86_64 0.3.21-2.el9 appstream 35 k 2024-04-14T16:06:10.084 INFO:teuthology.orchestra.run.smithi016.stdout: openblas-openmp x86_64 0.3.21-2.el9 appstream 4.7 M 2024-04-14T16:06:10.084 INFO:teuthology.orchestra.run.smithi016.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-14T16:06:10.084 INFO:teuthology.orchestra.run.smithi016.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-04-14T16:06:10.084 INFO:teuthology.orchestra.run.smithi016.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-04-14T16:06:10.084 INFO:teuthology.orchestra.run.smithi016.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-04-14T16:06:10.084 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:10.084 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:06:10.084 INFO:teuthology.orchestra.run.smithi016.stdout:======================================================================================= 2024-04-14T16:06:10.084 INFO:teuthology.orchestra.run.smithi016.stdout:Install 12 Packages 2024-04-14T16:06:10.084 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:10.085 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 38 M 2024-04-14T16:06:10.085 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 209 M 2024-04-14T16:06:10.085 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:06:10.185 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-14T16:06:10.278 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-14T16:06:10.335 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-14T16:06:10.362 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-14T16:06:10.395 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2778.ga971fd5f.el9 10/12 2024-04-14T16:06:10.573 INFO:teuthology.orchestra.run.smithi016.stdout:(1/12): libquadmath-11.4.1-3.el9.x86_64.rpm 1.7 MB/s | 195 kB 00:00 2024-04-14T16:06:10.632 INFO:teuthology.orchestra.run.smithi016.stdout:(2/12): libgfortran-11.4.1-3.el9.x86_64.rpm 4.5 MB/s | 803 kB 00:00 2024-04-14T16:06:10.657 INFO:teuthology.orchestra.run.smithi016.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 390 kB/s | 33 kB 00:00 2024-04-14T16:06:10.699 INFO:teuthology.orchestra.run.smithi016.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 438 kB/s | 18 kB 00:00 2024-04-14T16:06:10.750 INFO:teuthology.orchestra.run.smithi016.stdout:(5/12): openblas-0.3.21-2.el9.x86_64.rpm 702 kB/s | 35 kB 00:00 2024-04-14T16:06:10.875 INFO:teuthology.orchestra.run.smithi016.stdout:(6/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 12 MB/s | 3.0 MB 00:00 2024-04-14T16:06:10.917 INFO:teuthology.orchestra.run.smithi016.stdout:(7/12): python3-devel-3.9.17-2.el9.x86_64.rpm 5.8 MB/s | 245 kB 00:00 2024-04-14T16:06:11.001 INFO:teuthology.orchestra.run.smithi016.stdout:(8/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 19 MB/s | 4.7 MB 00:00 2024-04-14T16:06:11.092 INFO:teuthology.orchestra.run.smithi016.stdout:(9/12): ceph-mgr-diskprediction-local-19.0.0-27 12 MB/s | 7.4 MB 00:00 2024-04-14T16:06:11.118 INFO:teuthology.orchestra.run.smithi016.stdout:(10/12): python3-numpy-f2py-1.20.1-5.el9.x86_64 2.1 MB/s | 250 kB 00:00 2024-04-14T16:06:11.158 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-14T16:06:11.193 INFO:teuthology.orchestra.run.smithi016.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 18 MB/s | 5.1 MB 00:00 2024-04-14T16:06:11.499 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2778.ga971fd5f.el 11/12 2024-04-14T16:06:11.535 INFO:teuthology.orchestra.run.smithi016.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 37 MB/s | 16 MB 00:00 2024-04-14T16:06:11.536 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2778.ga971fd5f.el9.noa 12/12 2024-04-14T16:06:11.536 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:11.536 INFO:teuthology.orchestra.run.smithi016.stdout:Total 26 MB/s | 38 MB 00:01 2024-04-14T16:06:11.900 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:06:11.928 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:06:11.928 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:06:12.199 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-14T16:06:12.234 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2778.ga971f 12/12 2024-04-14T16:06:12.379 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:06:12.380 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:06:12.773 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2778.ga971fd5f.el9.noa 12/12 2024-04-14T16:06:12.773 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2778.ga971fd5f.el 1/12 2024-04-14T16:06:12.773 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2778.ga971fd5f.el9.noa 2/12 2024-04-14T16:06:12.774 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2778.ga971fd5f.el9 3/12 2024-04-14T16:06:12.774 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-14T16:06:12.774 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-14T16:06:12.774 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-14T16:06:12.774 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-14T16:06:12.774 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-14T16:06:12.774 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-14T16:06:12.774 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-14T16:06:12.774 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-14T16:06:13.150 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-14T16:06:13.150 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:13.150 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:06:13.150 INFO:teuthology.orchestra.run.smithi027.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-14T16:06:13.150 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-grafana-dashboards-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:13.151 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mgr-dashboard-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:13.151 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-prometheus-alerts-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:13.151 INFO:teuthology.orchestra.run.smithi027.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-14T16:06:13.151 INFO:teuthology.orchestra.run.smithi027.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-14T16:06:13.151 INFO:teuthology.orchestra.run.smithi027.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-14T16:06:13.151 INFO:teuthology.orchestra.run.smithi027.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-14T16:06:13.151 INFO:teuthology.orchestra.run.smithi027.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-14T16:06:13.151 INFO:teuthology.orchestra.run.smithi027.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-14T16:06:13.151 INFO:teuthology.orchestra.run.smithi027.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-14T16:06:13.151 INFO:teuthology.orchestra.run.smithi027.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-14T16:06:13.151 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:13.151 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:13.193 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:06:13.262 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-04-14T16:06:13.301 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 2/12 2024-04-14T16:06:13.404 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 3/12 2024-04-14T16:06:13.423 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-14T16:06:13.443 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-14T16:06:13.620 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-14T16:06:13.650 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-14T16:06:13.729 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-14T16:06:14.044 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:15 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:14.353 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:14.353 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:14.353 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:14.353 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.354 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:14.354 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.354 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:14.354 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.354 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:14.354 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.354 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:14.354 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.354 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:14.355 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.355 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:14.355 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.355 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:14.355 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.355 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:14.355 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.355 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:14.355 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.355 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:14.355 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.356 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:14.356 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.356 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:14.356 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.356 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:14.356 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.356 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:14.356 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.356 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:14.356 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.357 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:14.357 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.357 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:14.357 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.357 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:14.357 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.357 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:14.357 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.357 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:14.357 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.357 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:14.358 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.358 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:14.358 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.358 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:14.358 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.358 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:14.358 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.358 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:14.358 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.359 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:14.359 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.359 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:14.359 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.359 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:14.359 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.359 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:14.359 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.359 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:14.359 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.359 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:14.360 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.360 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:14.360 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.360 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:14.360 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.360 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:14.360 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.360 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:14.360 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.360 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:14.360 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.361 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.361 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.361 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:14.361 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.361 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.361 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.361 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.361 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:14.361 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.361 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.361 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.362 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.362 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.362 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.362 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:14.362 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.362 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.362 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.362 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.362 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:14.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.363 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:14.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.363 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:14.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.364 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:14.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.364 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:14.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.365 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.365 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.365 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:14.422 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-14T16:06:14.427 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:14.428 INFO:teuthology.orchestra.run.smithi027.stdout:======================================================================================= 2024-04-14T16:06:14.428 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repository Size 2024-04-14T16:06:14.428 INFO:teuthology.orchestra.run.smithi027.stdout:======================================================================================= 2024-04-14T16:06:14.428 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:06:14.428 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 7.4 M 2024-04-14T16:06:14.428 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-04-14T16:06:14.429 INFO:teuthology.orchestra.run.smithi027.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-04-14T16:06:14.429 INFO:teuthology.orchestra.run.smithi027.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-04-14T16:06:14.429 INFO:teuthology.orchestra.run.smithi027.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-04-14T16:06:14.429 INFO:teuthology.orchestra.run.smithi027.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-14T16:06:14.429 INFO:teuthology.orchestra.run.smithi027.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-14T16:06:14.429 INFO:teuthology.orchestra.run.smithi027.stdout: openblas x86_64 0.3.21-2.el9 appstream 35 k 2024-04-14T16:06:14.429 INFO:teuthology.orchestra.run.smithi027.stdout: openblas-openmp x86_64 0.3.21-2.el9 appstream 4.7 M 2024-04-14T16:06:14.429 INFO:teuthology.orchestra.run.smithi027.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-14T16:06:14.429 INFO:teuthology.orchestra.run.smithi027.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-04-14T16:06:14.429 INFO:teuthology.orchestra.run.smithi027.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-04-14T16:06:14.430 INFO:teuthology.orchestra.run.smithi027.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-04-14T16:06:14.430 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:14.430 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:06:14.430 INFO:teuthology.orchestra.run.smithi027.stdout:======================================================================================= 2024-04-14T16:06:14.430 INFO:teuthology.orchestra.run.smithi027.stdout:Install 12 Packages 2024-04-14T16:06:14.430 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:14.431 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 38 M 2024-04-14T16:06:14.435 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 209 M 2024-04-14T16:06:14.435 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:06:14.542 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-14T16:06:14.758 INFO:teuthology.orchestra.run.smithi027.stdout:(1/12): libquadmath-11.4.1-3.el9.x86_64.rpm 1.0 MB/s | 195 kB 00:00 2024-04-14T16:06:14.808 INFO:teuthology.orchestra.run.smithi027.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 655 kB/s | 33 kB 00:00 2024-04-14T16:06:14.819 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2778.ga971f 12/12 2024-04-14T16:06:14.820 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2778.ga971f 1/12 2024-04-14T16:06:14.820 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-14T16:06:14.820 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 3/12 2024-04-14T16:06:14.820 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-04-14T16:06:14.820 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-04-14T16:06:14.820 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-04-14T16:06:14.820 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 7/12 2024-04-14T16:06:14.820 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 8/12 2024-04-14T16:06:14.820 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 9/12 2024-04-14T16:06:14.820 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-04-14T16:06:14.820 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-04-14T16:06:14.975 INFO:teuthology.orchestra.run.smithi027.stdout:(3/12): libgfortran-11.4.1-3.el9.x86_64.rpm 1.9 MB/s | 803 kB 00:00 2024-04-14T16:06:15.025 INFO:teuthology.orchestra.run.smithi027.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 363 kB/s | 18 kB 00:00 2024-04-14T16:06:15.076 INFO:teuthology.orchestra.run.smithi027.stdout:(5/12): openblas-0.3.21-2.el9.x86_64.rpm 704 kB/s | 35 kB 00:00 2024-04-14T16:06:15.306 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-04-14T16:06:15.306 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:15.306 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:06:15.306 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:15.306 INFO:teuthology.orchestra.run.smithi122.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-14T16:06:15.306 INFO:teuthology.orchestra.run.smithi122.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-14T16:06:15.306 INFO:teuthology.orchestra.run.smithi122.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-14T16:06:15.306 INFO:teuthology.orchestra.run.smithi122.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-14T16:06:15.306 INFO:teuthology.orchestra.run.smithi122.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-14T16:06:15.306 INFO:teuthology.orchestra.run.smithi122.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-14T16:06:15.307 INFO:teuthology.orchestra.run.smithi122.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-14T16:06:15.307 INFO:teuthology.orchestra.run.smithi122.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-14T16:06:15.307 INFO:teuthology.orchestra.run.smithi122.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-14T16:06:15.307 INFO:teuthology.orchestra.run.smithi122.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-14T16:06:15.307 INFO:teuthology.orchestra.run.smithi122.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-14T16:06:15.307 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:15.307 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:15.318 INFO:teuthology.orchestra.run.smithi027.stdout:(6/12): ceph-mgr-diskprediction-local-19.0.0-27 9.9 MB/s | 7.4 MB 00:00 2024-04-14T16:06:15.518 INFO:teuthology.orchestra.run.smithi027.stdout:(7/12): python3-devel-3.9.17-2.el9.x86_64.rpm 1.2 MB/s | 245 kB 00:00 2024-04-14T16:06:15.719 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install ceph-mgr-rook 2024-04-14T16:06:15.801 INFO:teuthology.orchestra.run.smithi027.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 3.0 MB/s | 3.0 MB 00:00 2024-04-14T16:06:15.850 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-14T16:06:15.927 INFO:teuthology.orchestra.run.smithi027.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.0 MB/s | 250 kB 00:00 2024-04-14T16:06:16.327 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:25 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:16.477 INFO:teuthology.orchestra.run.smithi027.stdout:(10/12): openblas-openmp-0.3.21-2.el9.x86_64.rp 3.4 MB/s | 4.7 MB 00:01 2024-04-14T16:06:16.618 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:16.618 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:16.618 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:16.618 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.618 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:16.618 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.619 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:16.619 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.619 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:16.619 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.619 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:16.619 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.619 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:16.619 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.619 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:16.619 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.619 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:16.620 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.620 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:16.620 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.620 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:16.620 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.620 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:16.620 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.620 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:16.620 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.621 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:16.621 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.621 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:16.621 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.621 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:16.621 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.621 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:16.621 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.621 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:16.621 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.621 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:16.622 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.622 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:16.622 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.622 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:16.622 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.622 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:16.622 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.622 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:16.622 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.623 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:16.623 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.623 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:16.623 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.623 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:16.623 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.623 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:16.623 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.623 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:16.623 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.624 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:16.624 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.624 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:16.624 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.624 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:16.624 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.624 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:16.624 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.624 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:16.624 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.625 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:16.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.625 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:16.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.625 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:16.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.625 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:16.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.625 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:16.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.626 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:16.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.626 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:16.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.627 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:16.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.627 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:16.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.628 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:16.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.628 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:16.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.629 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.629 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.629 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.629 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:16.629 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.629 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.629 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.629 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.629 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:16.629 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.629 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.630 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.630 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:16.687 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:16.688 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:16.688 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repository Size 2024-04-14T16:06:16.688 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:16.688 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:06:16.689 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mgr-rook noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 49 k 2024-04-14T16:06:16.689 INFO:teuthology.orchestra.run.smithi122.stdout:Installing dependencies: 2024-04-14T16:06:16.689 INFO:teuthology.orchestra.run.smithi122.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-14T16:06:16.689 INFO:teuthology.orchestra.run.smithi122.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-14T16:06:16.689 INFO:teuthology.orchestra.run.smithi122.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-14T16:06:16.689 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-04-14T16:06:16.689 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-04-14T16:06:16.689 INFO:teuthology.orchestra.run.smithi122.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-14T16:06:16.689 INFO:teuthology.orchestra.run.smithi122.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-04-14T16:06:16.689 INFO:teuthology.orchestra.run.smithi122.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-04-14T16:06:16.689 INFO:teuthology.orchestra.run.smithi122.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-04-14T16:06:16.690 INFO:teuthology.orchestra.run.smithi122.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-04-14T16:06:16.690 INFO:teuthology.orchestra.run.smithi122.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-14T16:06:16.690 INFO:teuthology.orchestra.run.smithi122.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-14T16:06:16.690 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:16.690 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:06:16.690 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:16.690 INFO:teuthology.orchestra.run.smithi122.stdout:Install 13 Packages 2024-04-14T16:06:16.690 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:16.691 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 2.2 M 2024-04-14T16:06:16.691 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 26 M 2024-04-14T16:06:16.691 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:06:16.937 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-14T16:06:16.975 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2778.ga971f 12/12 2024-04-14T16:06:17.269 INFO:teuthology.orchestra.run.smithi027.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 2.9 MB/s | 5.1 MB 00:01 2024-04-14T16:06:17.417 INFO:teuthology.orchestra.run.smithi122.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 106 kB/s | 19 kB 00:00 2024-04-14T16:06:17.442 INFO:teuthology.orchestra.run.smithi122.stdout:(2/13): ceph-mgr-rook-19.0.0-2778.ga971fd5f.el9 239 kB/s | 49 kB 00:00 2024-04-14T16:06:17.467 INFO:teuthology.orchestra.run.smithi122.stdout:(3/13): python3-jsonpatch-1.21-16.el9.noarch.rp 111 kB/s | 26 kB 00:00 2024-04-14T16:06:17.568 INFO:teuthology.orchestra.run.smithi122.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.4 MB/s | 222 kB 00:00 2024-04-14T16:06:17.602 INFO:teuthology.orchestra.run.smithi122.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 2.0 MB/s | 279 kB 00:00 2024-04-14T16:06:17.644 INFO:teuthology.orchestra.run.smithi122.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 719 kB/s | 54 kB 00:00 2024-04-14T16:06:17.711 INFO:teuthology.orchestra.run.smithi122.stdout:(7/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 654 kB/s | 159 kB 00:00 2024-04-14T16:06:17.803 INFO:teuthology.orchestra.run.smithi122.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 160 kB/s | 32 kB 00:00 2024-04-14T16:06:17.828 INFO:teuthology.orchestra.run.smithi122.stdout:(9/13): python3-certifi-2021.10.8-2.el9.noarch. 94 kB/s | 15 kB 00:00 2024-04-14T16:06:17.895 INFO:teuthology.orchestra.run.smithi122.stdout:(10/13): python3-google-auth-2.28.2-1.el9.noarc 1.2 MB/s | 203 kB 00:00 2024-04-14T16:06:17.962 INFO:teuthology.orchestra.run.smithi122.stdout:(11/13): python3-kubernetes-26.1.0-2.el9.noarch 6.4 MB/s | 1.0 MB 00:00 2024-04-14T16:06:17.987 INFO:teuthology.orchestra.run.smithi122.stdout:(12/13): python3-rsa-4.9-2.el9.noarch.rpm 372 kB/s | 59 kB 00:00 2024-04-14T16:06:18.012 INFO:teuthology.orchestra.run.smithi122.stdout:(13/13): python3-websocket-client-1.2.3-2.el9.n 767 kB/s | 90 kB 00:00 2024-04-14T16:06:18.017 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:18.017 INFO:teuthology.orchestra.run.smithi122.stdout:Total 1.7 MB/s | 2.2 MB 00:01 2024-04-14T16:06:18.078 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:06:18.093 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:06:18.093 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:06:18.189 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:06:18.190 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:06:18.329 INFO:teuthology.orchestra.run.smithi027.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 6.8 MB/s | 16 MB 00:02 2024-04-14T16:06:18.330 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:18.331 INFO:teuthology.orchestra.run.smithi027.stdout:Total 9.7 MB/s | 38 MB 00:03 2024-04-14T16:06:18.699 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:06:18.715 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:06:18.727 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:06:18.728 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:06:18.885 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-14T16:06:18.947 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-14T16:06:19.011 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-14T16:06:19.048 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-14T16:06:19.089 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-14T16:06:19.181 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:06:19.181 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:06:19.183 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-14T16:06:19.293 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-14T16:06:19.341 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-14T16:06:19.556 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2778.ga971f 12/12 2024-04-14T16:06:19.557 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2778.ga971f 1/12 2024-04-14T16:06:19.557 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-14T16:06:19.557 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 3/12 2024-04-14T16:06:19.557 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-04-14T16:06:19.557 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-04-14T16:06:19.557 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-04-14T16:06:19.557 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 7/12 2024-04-14T16:06:19.557 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 8/12 2024-04-14T16:06:19.557 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 9/12 2024-04-14T16:06:19.557 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-04-14T16:06:19.557 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-04-14T16:06:19.985 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:06:20.008 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-04-14T16:06:20.008 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:20.008 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:06:20.008 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:20.008 INFO:teuthology.orchestra.run.smithi016.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-14T16:06:20.008 INFO:teuthology.orchestra.run.smithi016.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-14T16:06:20.008 INFO:teuthology.orchestra.run.smithi016.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-14T16:06:20.008 INFO:teuthology.orchestra.run.smithi016.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-14T16:06:20.008 INFO:teuthology.orchestra.run.smithi016.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-14T16:06:20.009 INFO:teuthology.orchestra.run.smithi016.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-14T16:06:20.009 INFO:teuthology.orchestra.run.smithi016.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-14T16:06:20.009 INFO:teuthology.orchestra.run.smithi016.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-14T16:06:20.009 INFO:teuthology.orchestra.run.smithi016.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-14T16:06:20.009 INFO:teuthology.orchestra.run.smithi016.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-14T16:06:20.009 INFO:teuthology.orchestra.run.smithi016.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-14T16:06:20.009 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:20.009 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:20.051 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-04-14T16:06:20.075 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-14T16:06:20.093 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 2/12 2024-04-14T16:06:20.130 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-14T16:06:20.166 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-14T16:06:20.195 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 3/12 2024-04-14T16:06:20.211 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-14T16:06:20.226 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-14T16:06:20.242 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-mgr-rook-2:19.0.0-2778.ga971fd5f.el9.noarch 13/13 2024-04-14T16:06:20.411 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-14T16:06:20.419 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install ceph-mgr-rook 2024-04-14T16:06:20.442 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-14T16:06:20.521 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-14T16:06:21.033 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:25 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:21.068 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2778.ga971fd5f.el9.noarch 13/13 2024-04-14T16:06:21.069 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2778.ga971fd5f.el9.noarch 1/13 2024-04-14T16:06:21.069 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-14T16:06:21.069 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-14T16:06:21.069 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-14T16:06:21.069 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-14T16:06:21.069 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-14T16:06:21.069 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-14T16:06:21.069 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-14T16:06:21.069 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-14T16:06:21.069 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-14T16:06:21.069 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-14T16:06:21.069 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-14T16:06:21.211 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-14T16:06:21.324 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-14T16:06:21.336 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:21.336 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:21.336 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:21.336 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.336 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:21.336 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.336 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:21.336 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.336 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:21.337 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.337 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:21.337 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.337 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:21.337 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.337 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:21.337 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.337 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:21.337 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.337 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:21.337 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.337 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:21.337 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.338 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:21.338 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.338 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:21.338 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.338 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:21.338 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.338 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:21.338 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.338 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:21.338 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.338 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:21.338 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.339 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:21.339 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.339 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:21.339 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.339 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:21.339 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.339 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:21.339 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.339 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:21.339 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.339 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:21.339 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.339 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.340 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:21.341 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.341 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:21.341 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.341 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:21.341 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.341 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:21.341 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.341 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:21.341 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.341 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:21.341 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.342 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:21.342 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.342 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:21.342 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.342 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.342 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.342 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:21.342 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.342 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.342 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.342 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:21.343 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.344 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.344 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.344 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.344 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:21.344 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.344 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.344 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.344 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.344 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:21.344 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.344 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.344 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.344 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.345 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:21.345 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.345 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.345 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.345 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.345 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:21.345 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.345 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.345 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.345 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:21.410 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:21.411 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:21.411 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repository Size 2024-04-14T16:06:21.412 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:21.412 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:06:21.412 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-rook noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 49 k 2024-04-14T16:06:21.412 INFO:teuthology.orchestra.run.smithi016.stdout:Installing dependencies: 2024-04-14T16:06:21.412 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-14T16:06:21.412 INFO:teuthology.orchestra.run.smithi016.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-14T16:06:21.412 INFO:teuthology.orchestra.run.smithi016.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-14T16:06:21.412 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-04-14T16:06:21.412 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-04-14T16:06:21.412 INFO:teuthology.orchestra.run.smithi016.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-14T16:06:21.412 INFO:teuthology.orchestra.run.smithi016.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-04-14T16:06:21.412 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-04-14T16:06:21.412 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-04-14T16:06:21.413 INFO:teuthology.orchestra.run.smithi016.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-04-14T16:06:21.413 INFO:teuthology.orchestra.run.smithi016.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-14T16:06:21.413 INFO:teuthology.orchestra.run.smithi016.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-14T16:06:21.413 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:21.413 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:06:21.413 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:21.413 INFO:teuthology.orchestra.run.smithi016.stdout:Install 13 Packages 2024-04-14T16:06:21.413 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:21.414 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 2.2 M 2024-04-14T16:06:21.414 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 26 M 2024-04-14T16:06:21.414 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:06:21.461 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-14T16:06:21.461 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:21.461 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:06:21.461 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mgr-rook-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:21.461 INFO:teuthology.orchestra.run.smithi122.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-14T16:06:21.461 INFO:teuthology.orchestra.run.smithi122.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-14T16:06:21.461 INFO:teuthology.orchestra.run.smithi122.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-14T16:06:21.461 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-14T16:06:21.461 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-14T16:06:21.461 INFO:teuthology.orchestra.run.smithi122.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-14T16:06:21.462 INFO:teuthology.orchestra.run.smithi122.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-14T16:06:21.462 INFO:teuthology.orchestra.run.smithi122.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-14T16:06:21.462 INFO:teuthology.orchestra.run.smithi122.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-14T16:06:21.462 INFO:teuthology.orchestra.run.smithi122.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-14T16:06:21.462 INFO:teuthology.orchestra.run.smithi122.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-14T16:06:21.462 INFO:teuthology.orchestra.run.smithi122.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-14T16:06:21.462 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:21.462 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:21.728 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install ceph-mgr-cephadm 2024-04-14T16:06:22.209 INFO:teuthology.orchestra.run.smithi016.stdout:(1/13): ceph-mgr-rook-19.0.0-2778.ga971fd5f.el9 159 kB/s | 49 kB 00:00 2024-04-14T16:06:22.234 INFO:teuthology.orchestra.run.smithi016.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 76 kB/s | 26 kB 00:00 2024-04-14T16:06:22.260 INFO:teuthology.orchestra.run.smithi016.stdout:(3/13): python3-jsonpointer-2.0-4.el9.noarch.rp 53 kB/s | 19 kB 00:00 2024-04-14T16:06:22.324 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:31 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:22.610 INFO:teuthology.orchestra.run.smithi016.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 454 kB/s | 159 kB 00:00 2024-04-14T16:06:22.616 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:22.616 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:22.616 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:22.616 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.616 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:22.616 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.616 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:22.616 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.617 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:22.617 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.617 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:22.617 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.617 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:22.617 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.617 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:22.617 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.617 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:22.617 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.617 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:22.617 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.617 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:22.618 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.618 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:22.618 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.618 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:22.618 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.618 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:22.618 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.618 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:22.618 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.618 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:22.618 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.618 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:22.622 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.622 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:22.622 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.622 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:22.622 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.622 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:22.622 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.622 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:22.622 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.622 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.623 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:22.624 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.624 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:22.624 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.624 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:22.624 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.624 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:22.624 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.624 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:22.624 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.624 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:22.624 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.624 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:22.624 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.625 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:22.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.625 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:22.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.625 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:22.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.625 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:22.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.625 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.626 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:22.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.626 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:22.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.626 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.626 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.627 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.628 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:22.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.628 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:22.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.628 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:22.629 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-14T16:06:22.685 INFO:teuthology.orchestra.run.smithi016.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 656 kB/s | 279 kB 00:00 2024-04-14T16:06:22.685 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:22.686 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:22.686 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repository Size 2024-04-14T16:06:22.686 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:22.686 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:06:22.686 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 141 k 2024-04-14T16:06:22.686 INFO:teuthology.orchestra.run.smithi122.stdout:Installing dependencies: 2024-04-14T16:06:22.687 INFO:teuthology.orchestra.run.smithi122.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-14T16:06:22.687 INFO:teuthology.orchestra.run.smithi122.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-04-14T16:06:22.687 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-14T16:06:22.687 INFO:teuthology.orchestra.run.smithi122.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-14T16:06:22.687 INFO:teuthology.orchestra.run.smithi122.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-14T16:06:22.687 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:22.687 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:06:22.687 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:22.687 INFO:teuthology.orchestra.run.smithi122.stdout:Install 6 Packages 2024-04-14T16:06:22.687 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:22.688 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 7.0 M 2024-04-14T16:06:22.688 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 33 M 2024-04-14T16:06:22.688 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:06:22.702 INFO:teuthology.orchestra.run.smithi016.stdout:(6/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 451 kB/s | 222 kB 00:00 2024-04-14T16:06:22.727 INFO:teuthology.orchestra.run.smithi016.stdout:(7/13): python3-requests-oauthlib-1.3.0-12.el9. 457 kB/s | 54 kB 00:00 2024-04-14T16:06:22.928 INFO:teuthology.orchestra.run.smithi016.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 133 kB/s | 32 kB 00:00 2024-04-14T16:06:22.953 INFO:teuthology.orchestra.run.smithi016.stdout:(9/13): python3-certifi-2021.10.8-2.el9.noarch. 60 kB/s | 15 kB 00:00 2024-04-14T16:06:23.162 INFO:teuthology.orchestra.run.smithi016.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 284 kB/s | 59 kB 00:00 2024-04-14T16:06:23.278 INFO:teuthology.orchestra.run.smithi016.stdout:(11/13): python3-google-auth-2.28.2-1.el9.noarc 368 kB/s | 203 kB 00:00 2024-04-14T16:06:23.325 INFO:teuthology.orchestra.run.smithi122.stdout:(1/6): ceph-mgr-cephadm-19.0.0-2778.ga971fd5f.e 378 kB/s | 141 kB 00:00 2024-04-14T16:06:23.362 INFO:teuthology.orchestra.run.smithi016.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 448 kB/s | 90 kB 00:00 2024-04-14T16:06:23.705 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-14T16:06:23.733 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2778.ga971f 12/12 2024-04-14T16:06:23.750 INFO:teuthology.orchestra.run.smithi122.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.3 MB/s | 548 kB 00:00 2024-04-14T16:06:23.808 INFO:teuthology.orchestra.run.smithi122.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 987 kB/s | 58 kB 00:00 2024-04-14T16:06:23.867 INFO:teuthology.orchestra.run.smithi122.stdout:(4/6): python3-typing-extensions-4.4.0-2.el9.no 876 kB/s | 51 kB 00:00 2024-04-14T16:06:24.009 INFO:teuthology.orchestra.run.smithi122.stdout:(5/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 234 kB/s | 248 kB 00:01 2024-04-14T16:06:24.037 INFO:teuthology.orchestra.run.smithi016.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 943 kB/s | 1.0 MB 00:01 2024-04-14T16:06:24.038 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:24.038 INFO:teuthology.orchestra.run.smithi016.stdout:Total 858 kB/s | 2.2 MB 00:02 2024-04-14T16:06:24.108 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:06:24.124 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:06:24.124 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:06:24.227 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:06:24.228 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:06:24.755 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:06:24.929 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-14T16:06:24.982 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-14T16:06:25.047 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-14T16:06:25.082 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-14T16:06:25.124 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-14T16:06:25.223 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-14T16:06:25.333 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-14T16:06:25.385 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-14T16:06:26.149 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-14T16:06:26.197 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-14T16:06:26.231 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-14T16:06:26.244 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2778.ga971f 12/12 2024-04-14T16:06:26.244 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2778.ga971f 1/12 2024-04-14T16:06:26.244 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-14T16:06:26.244 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 3/12 2024-04-14T16:06:26.244 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-04-14T16:06:26.244 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-04-14T16:06:26.245 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-04-14T16:06:26.245 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 7/12 2024-04-14T16:06:26.245 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 8/12 2024-04-14T16:06:26.245 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 9/12 2024-04-14T16:06:26.245 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-04-14T16:06:26.245 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-04-14T16:06:26.280 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-14T16:06:26.309 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-mgr-rook-2:19.0.0-2778.ga971fd5f.el9.noarch 13/13 2024-04-14T16:06:26.733 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-04-14T16:06:26.733 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:26.733 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:06:26.733 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:26.733 INFO:teuthology.orchestra.run.smithi027.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-14T16:06:26.733 INFO:teuthology.orchestra.run.smithi027.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-14T16:06:26.733 INFO:teuthology.orchestra.run.smithi027.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-14T16:06:26.733 INFO:teuthology.orchestra.run.smithi027.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-14T16:06:26.733 INFO:teuthology.orchestra.run.smithi027.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-14T16:06:26.734 INFO:teuthology.orchestra.run.smithi027.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-14T16:06:26.734 INFO:teuthology.orchestra.run.smithi027.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-14T16:06:26.734 INFO:teuthology.orchestra.run.smithi027.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-14T16:06:26.734 INFO:teuthology.orchestra.run.smithi027.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-14T16:06:26.734 INFO:teuthology.orchestra.run.smithi027.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-14T16:06:26.734 INFO:teuthology.orchestra.run.smithi027.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-14T16:06:26.734 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:26.734 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:27.102 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install ceph-mgr-rook 2024-04-14T16:06:27.127 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2778.ga971fd5f.el9.noarch 13/13 2024-04-14T16:06:27.127 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2778.ga971fd5f.el9.noarch 1/13 2024-04-14T16:06:27.127 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-14T16:06:27.127 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-14T16:06:27.128 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-14T16:06:27.128 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-14T16:06:27.128 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-14T16:06:27.128 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-14T16:06:27.128 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-14T16:06:27.128 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-14T16:06:27.128 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-14T16:06:27.128 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-14T16:06:27.128 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-14T16:06:27.507 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-14T16:06:27.507 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:27.507 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-rook-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-14T16:06:27.508 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:27.509 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:27.731 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:28 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:27.765 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install ceph-mgr-cephadm 2024-04-14T16:06:28.034 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:28.034 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:28.034 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:28.034 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.034 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:28.034 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.034 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:28.034 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.035 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:28.035 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.035 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:28.035 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.035 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:28.035 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.035 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:28.035 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.035 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:28.035 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.036 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:28.036 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.036 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:28.036 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.036 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:28.036 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.036 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:28.036 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.036 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:28.036 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.036 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:28.037 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.037 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:28.037 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.037 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:28.037 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.037 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:28.037 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.037 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:28.037 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.037 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:28.037 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.038 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:28.038 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.038 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:28.038 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.038 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:28.038 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.038 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:28.038 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.038 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:28.038 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.038 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:28.038 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.039 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:28.039 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.039 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:28.039 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.039 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:28.039 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.039 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:28.039 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.039 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:28.039 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.039 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:28.039 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.040 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:28.040 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.040 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:28.040 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.040 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:28.040 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.040 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:28.040 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.040 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:28.040 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.040 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:28.041 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.041 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.041 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.041 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:28.041 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.041 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.041 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.041 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.041 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:28.041 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.041 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.042 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.042 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.042 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.042 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.042 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:28.042 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.042 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.042 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.042 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.042 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:28.043 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.043 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.043 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.043 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.043 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:28.043 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.043 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.043 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.043 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.043 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:28.043 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.044 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.044 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.044 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.044 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:28.044 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.044 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.044 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.044 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.044 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:28.044 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.044 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.045 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.045 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.107 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:28.109 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:28.109 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repository Size 2024-04-14T16:06:28.109 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:28.109 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:06:28.109 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mgr-rook noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 49 k 2024-04-14T16:06:28.109 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-04-14T16:06:28.109 INFO:teuthology.orchestra.run.smithi027.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-14T16:06:28.109 INFO:teuthology.orchestra.run.smithi027.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-14T16:06:28.109 INFO:teuthology.orchestra.run.smithi027.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-14T16:06:28.109 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-04-14T16:06:28.109 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-04-14T16:06:28.110 INFO:teuthology.orchestra.run.smithi027.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-14T16:06:28.110 INFO:teuthology.orchestra.run.smithi027.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-04-14T16:06:28.110 INFO:teuthology.orchestra.run.smithi027.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-04-14T16:06:28.110 INFO:teuthology.orchestra.run.smithi027.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-04-14T16:06:28.110 INFO:teuthology.orchestra.run.smithi027.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-04-14T16:06:28.110 INFO:teuthology.orchestra.run.smithi027.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-14T16:06:28.110 INFO:teuthology.orchestra.run.smithi027.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-14T16:06:28.110 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:28.110 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:06:28.110 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:28.110 INFO:teuthology.orchestra.run.smithi027.stdout:Install 13 Packages 2024-04-14T16:06:28.110 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:28.111 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 2.2 M 2024-04-14T16:06:28.111 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 26 M 2024-04-14T16:06:28.111 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:06:28.373 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:32 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:28.533 INFO:teuthology.orchestra.run.smithi027.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 246 kB/s | 26 kB 00:00 2024-04-14T16:06:28.558 INFO:teuthology.orchestra.run.smithi027.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 148 kB/s | 19 kB 00:00 2024-04-14T16:06:28.650 INFO:teuthology.orchestra.run.smithi027.stdout:(3/13): ceph-mgr-rook-19.0.0-2778.ga971fd5f.el9 223 kB/s | 49 kB 00:00 2024-04-14T16:06:28.674 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:28.674 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:28.674 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:28.674 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.674 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:28.674 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:28.675 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:28.676 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.677 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:28.677 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.677 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:28.677 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.677 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:28.677 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.677 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:28.677 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.677 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:28.677 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.677 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:28.677 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.677 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:28.678 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.678 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:28.678 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.678 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:28.678 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.678 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:28.678 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.678 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:28.678 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.678 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:28.678 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.678 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:28.678 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.679 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:28.679 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.679 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:28.679 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.679 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:28.679 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.679 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:28.679 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.679 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:28.679 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.679 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:28.679 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.679 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:28.680 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.680 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:28.680 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.680 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.680 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.680 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:28.680 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.680 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.680 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.680 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.680 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:28.680 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.680 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.681 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.681 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.681 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.681 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.681 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:28.681 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.681 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.681 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.681 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.681 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:28.681 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.681 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.681 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.682 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.682 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:28.682 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.682 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.682 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.682 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.682 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:28.682 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.682 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.682 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.682 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.682 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:28.682 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.683 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.683 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.683 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.683 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:28.683 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.683 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.683 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.683 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:28.700 INFO:teuthology.orchestra.run.smithi027.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.1 MB/s | 159 kB 00:00 2024-04-14T16:06:28.726 INFO:teuthology.orchestra.run.smithi027.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.3 MB/s | 222 kB 00:00 2024-04-14T16:06:28.747 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:28.748 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:28.748 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repository Size 2024-04-14T16:06:28.748 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:28.748 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:06:28.748 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 141 k 2024-04-14T16:06:28.748 INFO:teuthology.orchestra.run.smithi016.stdout:Installing dependencies: 2024-04-14T16:06:28.749 INFO:teuthology.orchestra.run.smithi016.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-14T16:06:28.749 INFO:teuthology.orchestra.run.smithi016.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-04-14T16:06:28.749 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-14T16:06:28.749 INFO:teuthology.orchestra.run.smithi016.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-14T16:06:28.749 INFO:teuthology.orchestra.run.smithi016.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-14T16:06:28.749 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:28.749 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:06:28.749 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:28.749 INFO:teuthology.orchestra.run.smithi016.stdout:Install 6 Packages 2024-04-14T16:06:28.749 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:28.750 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 7.0 M 2024-04-14T16:06:28.750 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 33 M 2024-04-14T16:06:28.750 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:06:28.751 INFO:teuthology.orchestra.run.smithi027.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.0 MB/s | 54 kB 00:00 2024-04-14T16:06:28.818 INFO:teuthology.orchestra.run.smithi027.stdout:(7/13): python3-cachetools-4.2.4-1.el9.noarch.r 350 kB/s | 32 kB 00:00 2024-04-14T16:06:28.843 INFO:teuthology.orchestra.run.smithi027.stdout:(8/13): python3-certifi-2021.10.8-2.el9.noarch. 163 kB/s | 15 kB 00:00 2024-04-14T16:06:28.868 INFO:teuthology.orchestra.run.smithi027.stdout:(9/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.2 MB/s | 279 kB 00:00 2024-04-14T16:06:28.919 INFO:teuthology.orchestra.run.smithi027.stdout:(10/13): python3-google-auth-2.28.2-1.el9.noarc 2.0 MB/s | 203 kB 00:00 2024-04-14T16:06:28.969 INFO:teuthology.orchestra.run.smithi027.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 1.8 MB/s | 90 kB 00:00 2024-04-14T16:06:28.994 INFO:teuthology.orchestra.run.smithi027.stdout:(12/13): python3-rsa-4.9-2.el9.noarch.rpm 471 kB/s | 59 kB 00:00 2024-04-14T16:06:29.069 INFO:teuthology.orchestra.run.smithi027.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 4.5 MB/s | 1.0 MB 00:00 2024-04-14T16:06:29.069 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:29.070 INFO:teuthology.orchestra.run.smithi027.stdout:Total 2.3 MB/s | 2.2 MB 00:00 2024-04-14T16:06:29.134 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:06:29.150 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:06:29.150 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:06:29.255 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:06:29.256 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:06:29.273 INFO:teuthology.orchestra.run.smithi016.stdout:(1/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 986 kB/s | 248 kB 00:00 2024-04-14T16:06:29.390 INFO:teuthology.orchestra.run.smithi016.stdout:(2/6): ceph-mgr-cephadm-19.0.0-2778.ga971fd5f.e 383 kB/s | 141 kB 00:00 2024-04-14T16:06:29.507 INFO:teuthology.orchestra.run.smithi016.stdout:(3/6): python3-babel-2.9.1-2.el9.noarch.rpm 12 MB/s | 6.0 MB 00:00 2024-04-14T16:06:29.682 INFO:teuthology.orchestra.run.smithi016.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 198 kB/s | 58 kB 00:00 2024-04-14T16:06:29.732 INFO:teuthology.orchestra.run.smithi016.stdout:(5/6): python3-typing-extensions-4.4.0-2.el9.no 226 kB/s | 51 kB 00:00 2024-04-14T16:06:29.758 INFO:teuthology.orchestra.run.smithi016.stdout:(6/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.1 MB/s | 548 kB 00:00 2024-04-14T16:06:29.760 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:29.760 INFO:teuthology.orchestra.run.smithi016.stdout:Total 6.9 MB/s | 7.0 MB 00:01 2024-04-14T16:06:29.788 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:06:29.833 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:06:29.845 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:06:29.845 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:06:29.951 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:06:29.952 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:06:29.958 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-14T16:06:30.014 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-14T16:06:30.070 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-14T16:06:30.106 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-14T16:06:30.147 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-14T16:06:30.244 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-14T16:06:30.274 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:06:30.354 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-14T16:06:30.408 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-14T16:06:30.447 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-14T16:06:30.511 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-14T16:06:31.072 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-14T16:06:31.165 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-14T16:06:31.169 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-14T16:06:31.213 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-14T16:06:31.236 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-14T16:06:31.254 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-14T16:06:31.263 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 6/6 2024-04-14T16:06:31.302 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-14T16:06:31.332 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-mgr-rook-2:19.0.0-2778.ga971fd5f.el9.noarch 13/13 2024-04-14T16:06:31.333 INFO:teuthology.orchestra.run.smithi122.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 728 kB/s | 6.0 MB 00:08 2024-04-14T16:06:31.335 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:31.335 INFO:teuthology.orchestra.run.smithi122.stdout:Total 827 kB/s | 7.0 MB 00:08 2024-04-14T16:06:31.408 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:06:31.421 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:06:31.421 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:06:31.523 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:06:31.524 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:06:31.829 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:06:32.001 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-14T16:06:32.051 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-14T16:06:32.055 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 6/6 2024-04-14T16:06:32.056 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/6 2024-04-14T16:06:32.056 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-14T16:06:32.056 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-14T16:06:32.056 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-14T16:06:32.056 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-14T16:06:32.153 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2778.ga971fd5f.el9.noarch 13/13 2024-04-14T16:06:32.154 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2778.ga971fd5f.el9.noarch 1/13 2024-04-14T16:06:32.154 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-14T16:06:32.154 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-14T16:06:32.154 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-14T16:06:32.154 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-14T16:06:32.154 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-14T16:06:32.154 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-14T16:06:32.154 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-14T16:06:32.154 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-14T16:06:32.154 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-14T16:06:32.155 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-14T16:06:32.155 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-14T16:06:32.380 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-14T16:06:32.380 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:32.381 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:06:32.381 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-mgr-cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:32.381 INFO:teuthology.orchestra.run.smithi016.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-14T16:06:32.381 INFO:teuthology.orchestra.run.smithi016.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-14T16:06:32.381 INFO:teuthology.orchestra.run.smithi016.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-14T16:06:32.381 INFO:teuthology.orchestra.run.smithi016.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-14T16:06:32.381 INFO:teuthology.orchestra.run.smithi016.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-14T16:06:32.381 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:32.381 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:32.548 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-14T16:06:32.548 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:32.548 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:06:32.548 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mgr-rook-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:32.548 INFO:teuthology.orchestra.run.smithi027.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-14T16:06:32.548 INFO:teuthology.orchestra.run.smithi027.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-14T16:06:32.548 INFO:teuthology.orchestra.run.smithi027.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-14T16:06:32.548 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-14T16:06:32.548 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-14T16:06:32.548 INFO:teuthology.orchestra.run.smithi027.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-14T16:06:32.549 INFO:teuthology.orchestra.run.smithi027.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-14T16:06:32.549 INFO:teuthology.orchestra.run.smithi027.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-14T16:06:32.549 INFO:teuthology.orchestra.run.smithi027.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-14T16:06:32.549 INFO:teuthology.orchestra.run.smithi027.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-14T16:06:32.549 INFO:teuthology.orchestra.run.smithi027.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-14T16:06:32.549 INFO:teuthology.orchestra.run.smithi027.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-14T16:06:32.549 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:32.549 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:32.586 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-14T16:06:32.639 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install ceph-fuse 2024-04-14T16:06:32.663 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-14T16:06:32.725 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-14T16:06:32.756 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 6/6 2024-04-14T16:06:32.793 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install ceph-mgr-cephadm 2024-04-14T16:06:33.245 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:37 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:33.417 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:34 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:33.545 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 6/6 2024-04-14T16:06:33.545 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/6 2024-04-14T16:06:33.545 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-14T16:06:33.546 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-14T16:06:33.546 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-14T16:06:33.546 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-14T16:06:33.548 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:33.548 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:33.548 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:33.548 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.548 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:33.548 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.548 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:33.548 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.548 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:33.548 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.548 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:33.548 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.549 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:33.549 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.549 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:33.549 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.549 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:33.549 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.549 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:33.549 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.549 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:33.549 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.549 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:33.549 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.549 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.550 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.551 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:33.552 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.552 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:33.552 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.552 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:33.552 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.552 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:33.552 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.552 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:33.552 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.552 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:33.552 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.552 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:33.552 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:33.553 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.554 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.555 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.555 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:33.555 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.555 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.555 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.555 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.555 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:33.555 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.555 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.555 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.555 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.555 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:33.555 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.556 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.556 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.556 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.556 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:33.556 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.556 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.556 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.556 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.556 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:33.556 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.556 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.556 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.557 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.622 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:33.623 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:33.623 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repository Size 2024-04-14T16:06:33.623 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:33.623 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:06:33.623 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-fuse x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 891 k 2024-04-14T16:06:33.623 INFO:teuthology.orchestra.run.smithi016.stdout:Installing dependencies: 2024-04-14T16:06:33.623 INFO:teuthology.orchestra.run.smithi016.stdout: fuse x86_64 2.9.9-15.el9 baseos 80 k 2024-04-14T16:06:33.624 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:33.624 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:06:33.624 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:33.624 INFO:teuthology.orchestra.run.smithi016.stdout:Install 2 Packages 2024-04-14T16:06:33.624 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:33.624 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 971 k 2024-04-14T16:06:33.624 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 2.8 M 2024-04-14T16:06:33.625 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:06:33.727 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:33.727 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:33.727 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:33.728 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.728 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:33.728 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.728 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:33.728 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.728 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:33.728 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.728 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:33.728 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.728 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:33.728 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.728 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:33.728 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.729 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.730 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:33.731 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.731 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:33.731 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.731 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:33.731 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.731 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:33.731 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.731 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:33.731 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.731 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:33.731 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.731 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:33.731 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:33.732 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.733 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.734 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.735 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:33.736 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.736 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.736 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.736 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:33.801 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:33.802 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:33.802 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repository Size 2024-04-14T16:06:33.802 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:33.802 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:06:33.802 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 141 k 2024-04-14T16:06:33.802 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-04-14T16:06:33.802 INFO:teuthology.orchestra.run.smithi027.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-14T16:06:33.802 INFO:teuthology.orchestra.run.smithi027.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-04-14T16:06:33.803 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-14T16:06:33.803 INFO:teuthology.orchestra.run.smithi027.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-14T16:06:33.803 INFO:teuthology.orchestra.run.smithi027.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-14T16:06:33.803 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:33.803 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:06:33.803 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:33.803 INFO:teuthology.orchestra.run.smithi027.stdout:Install 6 Packages 2024-04-14T16:06:33.803 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:33.804 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 7.0 M 2024-04-14T16:06:33.804 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 33 M 2024-04-14T16:06:33.804 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:06:33.893 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-14T16:06:33.893 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:33.893 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:06:33.893 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-mgr-cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:33.893 INFO:teuthology.orchestra.run.smithi122.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-14T16:06:33.893 INFO:teuthology.orchestra.run.smithi122.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-14T16:06:33.894 INFO:teuthology.orchestra.run.smithi122.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-14T16:06:33.894 INFO:teuthology.orchestra.run.smithi122.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-14T16:06:33.894 INFO:teuthology.orchestra.run.smithi122.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-14T16:06:33.894 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:33.894 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:34.144 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install ceph-fuse 2024-04-14T16:06:34.243 INFO:teuthology.orchestra.run.smithi016.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 233 kB/s | 80 kB 00:00 2024-04-14T16:06:34.310 INFO:teuthology.orchestra.run.smithi016.stdout:(2/2): ceph-fuse-19.0.0-2778.ga971fd5f.el9.x86_ 2.1 MB/s | 891 kB 00:00 2024-04-14T16:06:34.311 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:34.311 INFO:teuthology.orchestra.run.smithi016.stdout:Total 1.4 MB/s | 971 kB 00:00 2024-04-14T16:06:34.323 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:06:34.347 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:06:34.347 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:06:34.428 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:06:34.429 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:06:34.538 INFO:teuthology.orchestra.run.smithi027.stdout:(1/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 1.1 MB/s | 248 kB 00:00 2024-04-14T16:06:34.563 INFO:teuthology.orchestra.run.smithi027.stdout:(2/6): ceph-mgr-cephadm-19.0.0-2778.ga971fd5f.e 564 kB/s | 141 kB 00:00 2024-04-14T16:06:34.643 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:06:34.730 INFO:teuthology.orchestra.run.smithi027.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 346 kB/s | 58 kB 00:00 2024-04-14T16:06:34.737 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:43 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:34.792 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-14T16:06:34.822 INFO:teuthology.orchestra.run.smithi027.stdout:(4/6): python3-typing-extensions-4.4.0-2.el9.no 556 kB/s | 51 kB 00:00 2024-04-14T16:06:34.863 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/2 2024-04-14T16:06:34.864 INFO:teuthology.orchestra.run.smithi027.stdout:(5/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.6 MB/s | 548 kB 00:00 2024-04-14T16:06:35.031 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:35.031 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:35.031 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:35.031 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.031 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:35.031 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.031 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:35.031 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.031 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:35.031 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.031 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:35.032 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.032 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:35.032 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.032 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:35.032 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.032 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:35.032 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.032 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:35.032 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.032 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:35.032 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.032 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:35.033 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.033 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:35.033 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.033 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:35.033 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.033 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:35.033 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.033 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:35.033 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.033 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:35.033 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.033 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:35.033 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.034 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:35.034 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.034 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:35.034 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.034 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:35.034 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.034 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:35.034 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.034 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:35.034 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.034 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:35.034 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.035 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:35.035 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.035 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:35.035 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.035 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:35.035 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.035 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:35.035 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.035 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:35.035 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.035 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:35.035 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.036 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:35.036 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.036 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:35.036 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.036 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:35.036 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.036 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:35.036 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.036 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:35.036 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.036 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:35.036 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.036 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:35.037 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.037 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:35.037 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.037 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.037 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.037 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:35.037 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.037 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.037 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.037 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.037 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:35.037 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.038 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.038 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.038 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.038 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.038 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.038 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:35.038 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.038 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.038 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.038 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.038 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:35.038 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.039 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.039 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.039 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.039 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:35.039 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.039 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.039 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.039 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.039 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:35.039 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.039 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.039 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.040 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.040 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:35.040 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.040 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.040 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.040 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.040 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:35.040 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.040 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.040 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.040 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:35.101 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:35.102 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:35.102 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repository Size 2024-04-14T16:06:35.102 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:35.102 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:06:35.102 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-fuse x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 891 k 2024-04-14T16:06:35.102 INFO:teuthology.orchestra.run.smithi122.stdout:Installing dependencies: 2024-04-14T16:06:35.103 INFO:teuthology.orchestra.run.smithi122.stdout: fuse x86_64 2.9.9-15.el9 baseos 80 k 2024-04-14T16:06:35.103 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:35.103 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:06:35.103 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:35.103 INFO:teuthology.orchestra.run.smithi122.stdout:Install 2 Packages 2024-04-14T16:06:35.103 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:35.103 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 971 k 2024-04-14T16:06:35.104 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 2.8 M 2024-04-14T16:06:35.104 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:06:35.552 INFO:teuthology.orchestra.run.smithi122.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 283 kB/s | 80 kB 00:00 2024-04-14T16:06:35.576 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/2 2024-04-14T16:06:35.576 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/2 2024-04-14T16:06:35.586 INFO:teuthology.orchestra.run.smithi122.stdout:(2/2): ceph-fuse-19.0.0-2778.ga971fd5f.el9.x86_ 2.7 MB/s | 891 kB 00:00 2024-04-14T16:06:35.587 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:35.588 INFO:teuthology.orchestra.run.smithi122.stdout:Total 2.0 MB/s | 971 kB 00:00 2024-04-14T16:06:35.599 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:06:35.621 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:06:35.622 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:06:35.702 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:06:35.702 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:06:35.898 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:06:35.914 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-14T16:06:35.914 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:35.914 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:06:35.914 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-14T16:06:35.915 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:35.915 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:36.043 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-14T16:06:36.122 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/2 2024-04-14T16:06:36.210 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install ceph-volume 2024-04-14T16:06:36.272 INFO:teuthology.orchestra.run.smithi027.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 3.0 MB/s | 6.0 MB 00:01 2024-04-14T16:06:36.274 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:36.274 INFO:teuthology.orchestra.run.smithi027.stdout:Total 2.8 MB/s | 7.0 MB 00:02 2024-04-14T16:06:36.350 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:06:36.364 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:06:36.364 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:06:36.475 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:06:36.477 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:06:36.799 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:06:36.818 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:40 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:36.821 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/2 2024-04-14T16:06:36.821 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/2 2024-04-14T16:06:36.978 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-14T16:06:37.033 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-14T16:06:37.119 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:37.119 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:37.119 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:37.119 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.119 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:37.119 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.119 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:37.119 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.119 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:37.119 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.120 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:37.120 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.120 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:37.120 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.120 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:37.120 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.120 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:37.120 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.120 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:37.120 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.120 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:37.120 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.120 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:37.121 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.121 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:37.121 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.121 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:37.121 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.121 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:37.121 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.121 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:37.121 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.121 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:37.121 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.121 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:37.121 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:37.122 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.123 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:37.123 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.123 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:37.123 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.123 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:37.123 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.123 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:37.123 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.123 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:37.123 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.123 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:37.123 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.123 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:37.124 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.124 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:37.124 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.124 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:37.124 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.124 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:37.124 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.124 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:37.124 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.124 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:37.124 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.124 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.125 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.126 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.127 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:37.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.127 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:37.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.127 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.127 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:37.128 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.128 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.128 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.128 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:37.137 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-14T16:06:37.137 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:37.137 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:06:37.138 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-14T16:06:37.138 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:37.138 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:37.192 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:37.193 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:37.193 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repository Size 2024-04-14T16:06:37.193 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:37.193 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:06:37.193 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-volume noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 264 k 2024-04-14T16:06:37.193 INFO:teuthology.orchestra.run.smithi016.stdout:Installing dependencies: 2024-04-14T16:06:37.193 INFO:teuthology.orchestra.run.smithi016.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-04-14T16:06:37.193 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:37.193 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:06:37.193 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:37.194 INFO:teuthology.orchestra.run.smithi016.stdout:Install 2 Packages 2024-04-14T16:06:37.194 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:37.194 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 341 k 2024-04-14T16:06:37.194 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 1.5 M 2024-04-14T16:06:37.194 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:06:37.484 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install ceph-volume 2024-04-14T16:06:37.593 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-14T16:06:37.609 INFO:teuthology.orchestra.run.smithi016.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 638 kB/s | 77 kB 00:00 2024-04-14T16:06:37.687 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-14T16:06:37.758 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-14T16:06:37.759 INFO:teuthology.orchestra.run.smithi016.stdout:(2/2): ceph-volume-19.0.0-2778.ga971fd5f.el9.no 972 kB/s | 264 kB 00:00 2024-04-14T16:06:37.760 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:37.760 INFO:teuthology.orchestra.run.smithi016.stdout:Total 601 kB/s | 341 kB 00:00 2024-04-14T16:06:37.772 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:06:37.782 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:06:37.782 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:06:37.786 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 6/6 2024-04-14T16:06:37.825 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:06:37.825 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:06:37.978 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:06:38.089 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:47 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:38.174 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-14T16:06:38.212 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : ceph-volume-2:19.0.0-2778.ga971fd5f.el9.noarch 2/2 2024-04-14T16:06:38.229 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: ceph-volume-2:19.0.0-2778.ga971fd5f.el9.noarch 2/2 2024-04-14T16:06:38.229 INFO:teuthology.orchestra.run.smithi016.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:06:38.229 INFO:teuthology.orchestra.run.smithi016.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-14T16:06:38.229 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:38.377 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:38.377 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:38.377 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:38.377 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.377 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:38.377 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.377 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:38.377 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.377 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:38.378 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.378 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:38.378 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.378 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:38.378 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.378 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:38.378 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.378 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:38.378 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.378 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:38.378 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.378 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:38.378 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.379 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:38.379 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.379 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:38.379 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.379 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:38.379 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.379 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:38.379 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.379 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:38.379 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.379 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:38.379 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.380 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:38.380 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.380 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:38.380 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.380 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:38.380 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.380 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:38.380 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.380 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:38.380 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.380 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:38.380 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.381 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:38.381 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.381 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:38.381 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.381 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:38.381 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.381 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:38.381 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.381 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:38.381 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.381 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:38.381 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.381 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:38.382 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.382 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:38.382 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.382 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:38.382 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.382 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:38.382 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.382 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:38.382 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.382 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:38.382 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.382 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:38.383 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.383 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:38.383 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.383 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:38.383 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.383 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.383 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.383 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:38.383 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.383 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.383 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.383 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.383 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:38.384 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.384 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.384 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.384 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.384 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.384 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.384 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:38.384 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.384 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.384 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.384 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.384 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:38.384 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.385 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.385 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.385 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.385 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:38.385 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.385 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.385 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.385 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.385 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:38.385 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.385 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.385 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.385 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.386 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:38.386 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.386 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.386 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.386 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.386 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:38.386 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.386 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.386 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.386 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:38.447 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:38.447 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:38.447 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repository Size 2024-04-14T16:06:38.447 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:38.448 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:06:38.448 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-volume noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 264 k 2024-04-14T16:06:38.448 INFO:teuthology.orchestra.run.smithi122.stdout:Installing dependencies: 2024-04-14T16:06:38.448 INFO:teuthology.orchestra.run.smithi122.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-04-14T16:06:38.448 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:38.448 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:06:38.448 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:38.448 INFO:teuthology.orchestra.run.smithi122.stdout:Install 2 Packages 2024-04-14T16:06:38.448 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:38.448 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 341 k 2024-04-14T16:06:38.448 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 1.5 M 2024-04-14T16:06:38.448 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:06:38.548 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 6/6 2024-04-14T16:06:38.548 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 1/6 2024-04-14T16:06:38.548 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-14T16:06:38.548 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-14T16:06:38.548 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-14T16:06:38.548 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-14T16:06:38.842 INFO:teuthology.orchestra.run.smithi122.stdout:(1/2): ceph-volume-19.0.0-2778.ga971fd5f.el9.no 1.0 MB/s | 264 kB 00:00 2024-04-14T16:06:38.879 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-14T16:06:38.879 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:38.879 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:06:38.879 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-mgr-cephadm-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:38.879 INFO:teuthology.orchestra.run.smithi027.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-14T16:06:38.879 INFO:teuthology.orchestra.run.smithi027.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-14T16:06:38.879 INFO:teuthology.orchestra.run.smithi027.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-14T16:06:38.879 INFO:teuthology.orchestra.run.smithi027.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-14T16:06:38.879 INFO:teuthology.orchestra.run.smithi027.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-14T16:06:38.880 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:38.880 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:39.016 INFO:teuthology.orchestra.run.smithi122.stdout:(2/2): python3-packaging-20.9-5.el9.noarch.rpm 182 kB/s | 77 kB 00:00 2024-04-14T16:06:39.017 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:39.017 INFO:teuthology.orchestra.run.smithi122.stdout:Total 598 kB/s | 341 kB 00:00 2024-04-14T16:06:39.029 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:06:39.037 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:06:39.037 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:06:39.081 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:06:39.081 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:06:39.098 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : ceph-volume-2:19.0.0-2778.ga971fd5f.el9.noarch 1/2 2024-04-14T16:06:39.128 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install ceph-fuse 2024-04-14T16:06:39.236 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:06:39.430 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-14T16:06:39.470 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : ceph-volume-2:19.0.0-2778.ga971fd5f.el9.noarch 2/2 2024-04-14T16:06:39.485 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: ceph-volume-2:19.0.0-2778.ga971fd5f.el9.noarch 2/2 2024-04-14T16:06:39.485 INFO:teuthology.orchestra.run.smithi122.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:06:39.485 INFO:teuthology.orchestra.run.smithi122.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-14T16:06:39.485 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:39.486 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-14T16:06:39.486 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:39.486 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:06:39.486 INFO:teuthology.orchestra.run.smithi016.stdout: ceph-volume-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:39.486 INFO:teuthology.orchestra.run.smithi016.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-14T16:06:39.486 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:39.486 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:39.754 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:40 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:39.826 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install librados-devel 2024-04-14T16:06:40.055 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:40.055 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:40.056 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:40.057 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.058 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:40.058 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.058 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:40.058 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.058 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:40.058 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.058 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:40.058 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.058 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:40.058 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.058 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:40.058 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.058 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:40.059 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:40.060 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.061 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.062 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.063 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.064 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.064 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:40.064 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.064 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.064 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.064 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.130 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:40.131 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:40.131 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repository Size 2024-04-14T16:06:40.131 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:40.131 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:06:40.131 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-fuse x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 891 k 2024-04-14T16:06:40.131 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-04-14T16:06:40.131 INFO:teuthology.orchestra.run.smithi027.stdout: fuse x86_64 2.9.9-15.el9 baseos 80 k 2024-04-14T16:06:40.131 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:40.131 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:06:40.131 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:40.131 INFO:teuthology.orchestra.run.smithi027.stdout:Install 2 Packages 2024-04-14T16:06:40.131 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:40.132 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 971 k 2024-04-14T16:06:40.132 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 2.8 M 2024-04-14T16:06:40.132 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:06:40.231 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : ceph-volume-2:19.0.0-2778.ga971fd5f.el9.noarch 1/2 2024-04-14T16:06:40.442 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:44 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:40.626 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-14T16:06:40.626 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:40.626 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:06:40.626 INFO:teuthology.orchestra.run.smithi122.stdout: ceph-volume-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:40.627 INFO:teuthology.orchestra.run.smithi122.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-14T16:06:40.627 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:40.627 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:40.640 INFO:teuthology.orchestra.run.smithi027.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 269 kB/s | 80 kB 00:00 2024-04-14T16:06:40.745 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:40.745 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:40.745 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:40.745 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.745 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:40.745 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.745 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:40.745 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.745 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:40.746 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.746 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:40.746 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.746 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:40.746 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.746 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:40.746 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.746 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:40.746 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.746 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:40.746 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.746 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:40.746 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.747 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:40.747 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.747 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:40.747 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.747 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:40.747 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.747 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:40.747 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.747 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:40.747 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.747 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:40.748 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.748 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:40.748 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.748 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:40.748 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.748 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:40.748 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.748 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:40.748 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.748 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:40.748 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.748 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:40.748 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.749 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:40.749 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.749 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:40.749 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.749 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:40.749 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.749 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:40.749 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.749 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:40.749 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.749 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:40.749 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.749 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:40.750 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.750 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:40.750 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.750 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:40.750 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.750 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:40.750 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.750 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:40.750 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.750 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:40.750 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.750 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:40.750 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.751 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:40.751 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.751 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:40.751 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.751 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.751 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.751 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:40.751 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.751 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.751 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.751 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.751 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:40.751 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.752 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.753 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.753 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:40.753 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.753 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.753 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.753 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.753 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:40.753 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.753 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.753 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.753 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.753 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:40.754 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.754 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.754 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.754 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.754 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:40.754 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.754 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.754 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.754 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:40.817 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:40.818 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:40.818 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repo Size 2024-04-14T16:06:40.818 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:40.818 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:06:40.818 INFO:teuthology.orchestra.run.smithi016.stdout: librados-devel x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 127 k 2024-04-14T16:06:40.818 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:40.818 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:06:40.819 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:40.819 INFO:teuthology.orchestra.run.smithi016.stdout:Install 1 Package 2024-04-14T16:06:40.819 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:40.819 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 127 k 2024-04-14T16:06:40.819 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 456 k 2024-04-14T16:06:40.819 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:06:40.972 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install librados-devel 2024-04-14T16:06:40.991 INFO:teuthology.orchestra.run.smithi027.stdout:(2/2): ceph-fuse-19.0.0-2778.ga971fd5f.el9.x86_ 1.3 MB/s | 891 kB 00:00 2024-04-14T16:06:40.991 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:40.992 INFO:teuthology.orchestra.run.smithi027.stdout:Total 1.1 MB/s | 971 kB 00:00 2024-04-14T16:06:41.004 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:06:41.027 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:06:41.028 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:06:41.041 INFO:teuthology.orchestra.run.smithi016.stdout:librados-devel-19.0.0-2778.ga971fd5f.el9.x86_64 572 kB/s | 127 kB 00:00 2024-04-14T16:06:41.042 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:41.043 INFO:teuthology.orchestra.run.smithi016.stdout:Total 567 kB/s | 127 kB 00:00 2024-04-14T16:06:41.043 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:06:41.048 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:06:41.048 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:06:41.110 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:06:41.110 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:06:41.112 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:06:41.112 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:06:41.300 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:06:41.308 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:06:41.410 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : librados-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:41.431 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-14T16:06:41.502 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/2 2024-04-14T16:06:41.582 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:50 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:41.870 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:41.870 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:41.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:41.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:41.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:41.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:41.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:41.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:41.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:41.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:41.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:41.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:41.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:41.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:41.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:41.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.876 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:41.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.876 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:41.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.876 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:41.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.876 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:41.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.877 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:41.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.878 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:41.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.878 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:41.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.878 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.879 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:41.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.879 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:41.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.879 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:41.916 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: librados-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:41.940 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:41.941 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:41.941 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repo Size 2024-04-14T16:06:41.941 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:41.941 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:06:41.941 INFO:teuthology.orchestra.run.smithi122.stdout: librados-devel x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 127 k 2024-04-14T16:06:41.941 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:41.941 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:06:41.941 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:41.941 INFO:teuthology.orchestra.run.smithi122.stdout:Install 1 Package 2024-04-14T16:06:41.941 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:41.941 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 127 k 2024-04-14T16:06:41.941 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 456 k 2024-04-14T16:06:41.942 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:06:42.173 INFO:teuthology.orchestra.run.smithi122.stdout:librados-devel-19.0.0-2778.ga971fd5f.el9.x86_64 548 kB/s | 127 kB 00:00 2024-04-14T16:06:42.174 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:42.174 INFO:teuthology.orchestra.run.smithi122.stdout:Total 545 kB/s | 127 kB 00:00 2024-04-14T16:06:42.174 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:06:42.179 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:06:42.179 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:06:42.212 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 2/2 2024-04-14T16:06:42.212 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/2 2024-04-14T16:06:42.237 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : librados-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:42.237 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:42.237 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:06:42.237 INFO:teuthology.orchestra.run.smithi016.stdout: librados-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:06:42.237 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:42.237 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:42.239 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:06:42.239 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:06:42.428 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:06:42.475 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install libcephfs2 2024-04-14T16:06:42.538 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : librados-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:42.562 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-14T16:06:42.563 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:42.563 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:06:42.563 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-14T16:06:42.563 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:42.563 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:42.848 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install ceph-volume 2024-04-14T16:06:43.053 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: librados-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:43.090 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:47 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:43.369 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : librados-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:43.369 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:43.369 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:06:43.369 INFO:teuthology.orchestra.run.smithi122.stdout: librados-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:06:43.369 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:43.370 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:43.397 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:43.398 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:43.398 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:43.398 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.398 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:43.398 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.398 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:43.398 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.398 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:43.398 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.398 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:43.398 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.398 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:43.398 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:43.399 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:43.400 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.401 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:43.401 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.401 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:43.401 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.401 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:43.401 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.401 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:43.401 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.401 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:43.401 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.401 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:43.401 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.401 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.402 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.403 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:43.404 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.405 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:43.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.405 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:43.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.405 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.406 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:43.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.406 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:43.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.406 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.407 INFO:teuthology.orchestra.run.smithi016.stdout:Package libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:43.470 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:43.472 INFO:teuthology.orchestra.run.smithi016.stdout:Nothing to do. 2024-04-14T16:06:43.472 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:43.483 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:44 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:43.535 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install libcephfs-devel 2024-04-14T16:06:43.589 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install libcephfs2 2024-04-14T16:06:43.795 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:43.795 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:43.795 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:43.795 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.795 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:43.796 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.796 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:43.796 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.796 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:43.796 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.796 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:43.796 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.796 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:43.796 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.796 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:43.796 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.796 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:43.796 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:43.797 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.798 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:43.798 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.798 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:43.798 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.798 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:43.798 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.798 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:43.798 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.798 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:43.798 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.798 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:43.798 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:43.799 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:43.800 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.801 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:43.801 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.801 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:43.801 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.801 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.801 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.801 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:43.801 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.801 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.801 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.801 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.801 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:43.801 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.802 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.802 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.802 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.802 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.802 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.802 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:43.802 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.802 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.802 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.802 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.802 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:43.802 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.803 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:43.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.803 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:43.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.804 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:43.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.804 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:43.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:43.869 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:43.870 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:43.870 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repository Size 2024-04-14T16:06:43.870 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:43.870 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:06:43.870 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-volume noarch 2:19.0.0-2778.ga971fd5f.el9 ceph-noarch 264 k 2024-04-14T16:06:43.870 INFO:teuthology.orchestra.run.smithi027.stdout:Installing dependencies: 2024-04-14T16:06:43.870 INFO:teuthology.orchestra.run.smithi027.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-04-14T16:06:43.871 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:43.871 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:06:43.871 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:43.871 INFO:teuthology.orchestra.run.smithi027.stdout:Install 2 Packages 2024-04-14T16:06:43.871 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:43.871 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 341 k 2024-04-14T16:06:43.871 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 1.5 M 2024-04-14T16:06:43.872 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:06:44.142 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:48 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:44.192 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:53 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:44.364 INFO:teuthology.orchestra.run.smithi027.stdout:(1/2): ceph-volume-19.0.0-2778.ga971fd5f.el9.no 1.2 MB/s | 264 kB 00:00 2024-04-14T16:06:44.444 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:44.444 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:44.444 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:44.444 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.444 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:44.445 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.445 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:44.445 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.445 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:44.445 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.445 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:44.445 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.445 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:44.445 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.445 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:44.445 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.445 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:44.445 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.446 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:44.446 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.446 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:44.446 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.446 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:44.446 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.446 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:44.446 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.446 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:44.446 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.446 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:44.447 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.447 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:44.447 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.447 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:44.447 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.447 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:44.447 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.447 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:44.447 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.447 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:44.447 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.447 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.448 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:44.449 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.449 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:44.449 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.449 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:44.449 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.449 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:44.449 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.449 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:44.449 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.449 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:44.449 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.449 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:44.449 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.450 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:44.450 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.450 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:44.450 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.450 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:44.450 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.450 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:44.450 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.450 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.450 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.450 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:44.450 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.450 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.451 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.451 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.451 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:44.451 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.451 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.451 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.451 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.451 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.451 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.451 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:44.451 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.451 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.451 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.452 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.452 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:44.452 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.452 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.452 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.452 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.452 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:44.452 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.452 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.452 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.453 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.453 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:44.453 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.453 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.453 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.453 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.453 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:44.453 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.453 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.453 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.453 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.454 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:44.454 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.454 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.454 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.454 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.482 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:44.482 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:44.482 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:44.482 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.482 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.483 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:44.484 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.484 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:44.484 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.484 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:44.484 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.484 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:44.484 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.484 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:44.484 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.484 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:44.484 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.484 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:44.484 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.485 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:44.485 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.485 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:44.485 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.485 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:44.485 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.485 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:44.485 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.485 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:44.485 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.485 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:44.485 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.485 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:44.486 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.486 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:44.486 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.486 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:44.486 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.486 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:44.486 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.486 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:44.486 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.486 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:44.486 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.486 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:44.486 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.487 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:44.487 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.487 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:44.487 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.487 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:44.487 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.487 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:44.487 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.487 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:44.487 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.487 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:44.487 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.487 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:44.488 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.488 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:44.488 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.488 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:44.488 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.488 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.488 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.488 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:44.488 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.488 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.488 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.488 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.488 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.489 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.490 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.490 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.490 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:44.490 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.490 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.490 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.490 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.490 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:44.490 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.490 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.490 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.490 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.491 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:44.491 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.491 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.491 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.491 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.491 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:44.491 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.491 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.491 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.491 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:44.492 INFO:teuthology.orchestra.run.smithi122.stdout:Package libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:44.516 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:44.516 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:44.517 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repo Size 2024-04-14T16:06:44.517 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:44.517 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:06:44.517 INFO:teuthology.orchestra.run.smithi016.stdout: libcephfs-devel x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 32 k 2024-04-14T16:06:44.517 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:44.517 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:06:44.517 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:44.517 INFO:teuthology.orchestra.run.smithi016.stdout:Install 1 Package 2024-04-14T16:06:44.517 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:44.518 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 32 k 2024-04-14T16:06:44.518 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 142 k 2024-04-14T16:06:44.518 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:06:44.550 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:44.551 INFO:teuthology.orchestra.run.smithi122.stdout:Nothing to do. 2024-04-14T16:06:44.551 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:44.620 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install libcephfs-devel 2024-04-14T16:06:44.695 INFO:teuthology.orchestra.run.smithi016.stdout:libcephfs-devel-19.0.0-2778.ga971fd5f.el9.x86_6 178 kB/s | 32 kB 00:00 2024-04-14T16:06:44.696 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:44.696 INFO:teuthology.orchestra.run.smithi016.stdout:Total 177 kB/s | 32 kB 00:00 2024-04-14T16:06:44.696 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:06:44.700 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:06:44.700 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:06:44.732 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:06:44.732 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:06:44.815 INFO:teuthology.orchestra.run.smithi027.stdout:(2/2): python3-packaging-20.9-5.el9.noarch.rpm 115 kB/s | 77 kB 00:00 2024-04-14T16:06:44.816 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:44.816 INFO:teuthology.orchestra.run.smithi027.stdout:Total 361 kB/s | 341 kB 00:00 2024-04-14T16:06:44.824 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:06:44.828 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:06:44.839 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:06:44.839 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:06:44.887 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:06:44.887 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:06:44.946 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : libcephfs-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:45.044 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:06:45.220 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:54 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:45.256 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-14T16:06:45.284 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : ceph-volume-2:19.0.0-2778.ga971fd5f.el9.noarch 2/2 2024-04-14T16:06:45.301 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: ceph-volume-2:19.0.0-2778.ga971fd5f.el9.noarch 2/2 2024-04-14T16:06:45.301 INFO:teuthology.orchestra.run.smithi027.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:06:45.301 INFO:teuthology.orchestra.run.smithi027.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-14T16:06:45.301 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:45.351 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:45.507 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:45.507 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:45.507 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:45.507 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.507 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:45.507 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.507 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:45.508 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.508 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:45.508 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.508 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:45.508 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.508 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:45.508 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.508 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:45.508 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.508 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:45.508 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.508 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:45.508 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:45.509 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.510 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:45.510 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.510 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:45.510 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.510 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:45.510 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.510 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:45.510 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.510 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:45.510 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.510 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:45.511 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.511 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:45.511 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.511 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:45.511 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.511 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:45.511 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.511 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:45.511 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.511 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:45.511 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.511 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:45.511 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.512 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:45.512 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.512 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:45.512 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.512 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:45.512 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.512 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:45.512 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.512 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:45.512 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.512 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:45.512 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.512 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:45.513 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.513 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:45.513 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.513 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:45.513 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.513 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.513 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.513 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:45.513 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.513 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.513 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.513 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.513 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:45.514 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.514 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.514 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.514 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.514 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.514 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.514 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:45.514 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.514 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.514 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.514 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.514 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.515 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.516 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:45.516 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.516 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.516 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.516 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.516 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:45.516 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.516 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.516 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.516 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:45.574 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:45.575 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:45.575 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repo Size 2024-04-14T16:06:45.575 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:45.575 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:06:45.575 INFO:teuthology.orchestra.run.smithi122.stdout: libcephfs-devel x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 32 k 2024-04-14T16:06:45.575 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:45.575 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:06:45.575 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:45.576 INFO:teuthology.orchestra.run.smithi122.stdout:Install 1 Package 2024-04-14T16:06:45.576 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:45.576 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 32 k 2024-04-14T16:06:45.576 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 142 k 2024-04-14T16:06:45.576 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:06:45.628 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : libcephfs-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:45.628 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:45.628 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:06:45.628 INFO:teuthology.orchestra.run.smithi016.stdout: libcephfs-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:06:45.628 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:45.628 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:45.803 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install librados2 2024-04-14T16:06:45.826 INFO:teuthology.orchestra.run.smithi122.stdout:libcephfs-devel-19.0.0-2778.ga971fd5f.el9.x86_6 127 kB/s | 32 kB 00:00 2024-04-14T16:06:45.827 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:45.827 INFO:teuthology.orchestra.run.smithi122.stdout:Total 126 kB/s | 32 kB 00:00 2024-04-14T16:06:45.827 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:06:45.831 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:06:45.831 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:06:45.862 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:06:45.863 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:06:45.964 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:06:46.057 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : ceph-volume-2:19.0.0-2778.ga971fd5f.el9.noarch 1/2 2024-04-14T16:06:46.075 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : libcephfs-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:46.410 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:50 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:46.420 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-14T16:06:46.421 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:46.421 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:06:46.421 INFO:teuthology.orchestra.run.smithi027.stdout: ceph-volume-2:19.0.0-2778.ga971fd5f.el9.noarch 2024-04-14T16:06:46.421 INFO:teuthology.orchestra.run.smithi027.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-14T16:06:46.421 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:46.421 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:46.424 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:46.714 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : libcephfs-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:46.714 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:46.714 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:06:46.714 INFO:teuthology.orchestra.run.smithi122.stdout: libcephfs-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:06:46.714 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:46.714 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:46.715 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:46.715 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:46.715 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:46.715 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.715 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:46.715 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.715 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:46.715 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.715 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:46.715 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.715 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:46.715 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.716 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:46.716 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.716 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:46.716 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.716 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:46.716 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.716 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:46.716 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.716 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:46.716 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.716 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:46.716 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.717 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:46.717 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.717 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:46.717 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.717 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:46.717 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.717 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:46.717 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.717 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:46.717 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.717 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:46.717 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.717 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:46.718 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.718 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:46.718 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.718 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:46.718 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.718 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:46.718 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.718 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:46.718 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.718 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:46.718 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.718 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:46.719 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.719 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:46.719 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.719 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:46.719 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.719 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:46.719 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.719 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:46.719 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.719 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:46.719 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.719 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:46.719 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.720 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:46.720 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.720 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:46.720 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.720 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:46.720 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.720 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:46.720 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.720 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:46.720 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.720 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:46.720 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.720 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:46.721 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.721 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.721 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.721 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:46.721 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.721 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.721 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.721 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.721 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:46.721 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.721 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.721 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.721 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.722 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.722 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.722 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:46.722 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.722 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.722 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.722 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.722 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:46.722 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.722 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.722 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.722 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.722 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.723 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.724 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:46.724 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.724 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.724 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.724 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:46.724 INFO:teuthology.orchestra.run.smithi016.stdout:Package librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:46.745 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install librados-devel 2024-04-14T16:06:46.787 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:46.788 INFO:teuthology.orchestra.run.smithi016.stdout:Nothing to do. 2024-04-14T16:06:46.788 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:46.860 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install librbd1 2024-04-14T16:06:46.905 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install librados2 2024-04-14T16:06:47.377 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:48 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:47.468 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:51 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:47.502 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:56 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:47.682 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:47.683 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:47.683 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:47.683 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.683 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:47.683 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.683 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:47.683 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.683 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:47.683 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.683 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:47.684 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.684 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:47.684 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.684 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:47.684 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.684 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:47.684 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.684 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:47.684 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.684 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:47.684 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.684 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:47.685 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.685 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:47.685 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.685 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:47.685 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.685 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:47.685 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.685 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:47.685 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.685 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:47.685 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.685 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:47.685 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.686 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:47.686 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.686 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:47.686 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.686 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:47.686 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.686 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:47.686 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.686 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:47.686 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.686 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:47.686 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.687 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:47.687 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.687 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:47.687 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.687 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:47.687 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.687 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:47.687 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.687 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:47.687 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.687 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:47.687 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.687 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:47.688 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.688 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:47.688 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.688 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:47.688 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.688 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:47.688 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.688 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:47.688 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.688 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:47.688 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.688 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:47.688 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.689 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.690 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.690 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.690 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:47.690 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.690 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.690 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.690 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.690 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:47.690 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.690 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.690 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.690 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.691 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:47.691 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.691 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.691 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.691 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.691 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:47.691 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.691 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.691 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.691 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.691 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:47.691 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.691 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.692 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.692 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.692 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:47.692 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.692 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.692 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.692 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.755 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:47.756 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:47.756 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repo Size 2024-04-14T16:06:47.756 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:47.756 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:06:47.756 INFO:teuthology.orchestra.run.smithi027.stdout: librados-devel x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 127 k 2024-04-14T16:06:47.756 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:47.756 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:06:47.756 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:47.756 INFO:teuthology.orchestra.run.smithi027.stdout:Install 1 Package 2024-04-14T16:06:47.756 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:47.756 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 127 k 2024-04-14T16:06:47.756 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 456 k 2024-04-14T16:06:47.757 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:06:47.776 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:47.776 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:47.776 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:47.776 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.776 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:47.776 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.777 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:47.777 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.777 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:47.777 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.777 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:47.778 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.778 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:47.778 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.778 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:47.778 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.779 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:47.779 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.779 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:47.779 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.779 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:47.779 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.780 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:47.780 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.780 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:47.780 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.780 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:47.780 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.781 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:47.781 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.781 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:47.781 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.781 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:47.781 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.782 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:47.782 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.782 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:47.782 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.782 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:47.783 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.783 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:47.783 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.783 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:47.783 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.784 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:47.784 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.784 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:47.784 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.784 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:47.784 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.784 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:47.785 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.785 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:47.785 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.785 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:47.785 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.785 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:47.785 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.785 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:47.785 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.785 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:47.785 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.785 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:47.786 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.786 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:47.786 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.786 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:47.786 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.786 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:47.786 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.786 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:47.786 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.786 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:47.786 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.786 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:47.786 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.787 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.787 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.787 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:47.787 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.787 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.787 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.787 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.787 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:47.787 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.787 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.787 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.787 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.787 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.788 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.789 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.790 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.790 INFO:teuthology.orchestra.run.smithi016.stdout:Package librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:47.791 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:47.791 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:47.791 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:47.791 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.792 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:47.792 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.792 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:47.792 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.792 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:47.792 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.792 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:47.792 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.792 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:47.792 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.792 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.793 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:47.794 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.794 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:47.794 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.794 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:47.794 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.794 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:47.794 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.794 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:47.794 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.794 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:47.794 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.794 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:47.794 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:47.795 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.796 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:47.796 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.796 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:47.796 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.796 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:47.796 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.796 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:47.796 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.796 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:47.796 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.797 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:47.797 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.797 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:47.797 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.797 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:47.797 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.797 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:47.797 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.797 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:47.797 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.797 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.797 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.798 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:47.798 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.798 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.798 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.798 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.798 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:47.798 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.798 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.798 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.798 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.798 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.798 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.798 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.799 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.800 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.801 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:47.801 INFO:teuthology.orchestra.run.smithi122.stdout:Package librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:47.848 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:47.849 INFO:teuthology.orchestra.run.smithi016.stdout:Nothing to do. 2024-04-14T16:06:47.849 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:47.861 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:47.863 INFO:teuthology.orchestra.run.smithi122.stdout:Nothing to do. 2024-04-14T16:06:47.863 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:47.916 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install python3-rados 2024-04-14T16:06:47.926 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install librbd1 2024-04-14T16:06:48.062 INFO:teuthology.orchestra.run.smithi027.stdout:librados-devel-19.0.0-2778.ga971fd5f.el9.x86_64 416 kB/s | 127 kB 00:00 2024-04-14T16:06:48.062 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:48.062 INFO:teuthology.orchestra.run.smithi027.stdout:Total 414 kB/s | 127 kB 00:00 2024-04-14T16:06:48.062 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:06:48.069 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:06:48.069 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:06:48.132 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:06:48.132 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:06:48.330 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:06:48.447 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : librados-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:48.518 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:57 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:48.523 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:52 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:48.807 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:48.807 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:48.807 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:48.807 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:48.808 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.809 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:48.809 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.809 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:48.809 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.809 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:48.809 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.809 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:48.809 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.809 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:48.809 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.809 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:48.809 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.810 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:48.810 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.810 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:48.810 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.810 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:48.810 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.810 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:48.810 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.810 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:48.810 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.810 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:48.810 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.811 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:48.811 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.811 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:48.811 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.811 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:48.811 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.811 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:48.811 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.811 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:48.811 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.811 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:48.811 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.812 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:48.812 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.812 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:48.812 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.812 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:48.812 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.812 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:48.812 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.812 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:48.812 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.812 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:48.812 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.812 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.813 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.814 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.814 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.814 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:48.814 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.814 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.814 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.814 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.814 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.814 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.814 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:48.814 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.814 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.815 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.815 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.815 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:48.815 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.815 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.815 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.815 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.815 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:48.815 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.815 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.815 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.815 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.816 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.817 INFO:teuthology.orchestra.run.smithi122.stdout:Package librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:48.824 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:48.824 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:48.824 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:48.824 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.824 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:48.825 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.825 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:48.825 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.825 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:48.825 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.825 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:48.825 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.825 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:48.825 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.825 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:48.825 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.825 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:48.825 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.826 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:48.826 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.826 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:48.826 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.826 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:48.826 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.826 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:48.826 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.826 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:48.826 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.826 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:48.826 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:48.827 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.828 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:48.828 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.828 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:48.828 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.828 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:48.828 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.828 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:48.828 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.828 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:48.828 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.828 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:48.828 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.828 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:48.829 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.829 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:48.829 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.829 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:48.829 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.829 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:48.829 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.829 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:48.829 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.829 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:48.829 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.829 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:48.829 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.830 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:48.830 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.830 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:48.830 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.830 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:48.830 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.830 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.830 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.830 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:48.830 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.830 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.830 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.830 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.831 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:48.831 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.831 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.831 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.831 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.831 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.831 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.831 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:48.831 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.831 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.831 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.831 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.831 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:48.832 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.832 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.832 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.832 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.832 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:48.832 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.832 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.832 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.832 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.832 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:48.832 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.832 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.833 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.833 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.833 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:48.833 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.833 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.833 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.833 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.833 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:48.833 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.833 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.833 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.833 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:48.834 INFO:teuthology.orchestra.run.smithi016.stdout:Package python3-rados-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:48.876 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:48.877 INFO:teuthology.orchestra.run.smithi122.stdout:Nothing to do. 2024-04-14T16:06:48.877 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:48.893 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: librados-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:48.897 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:48.899 INFO:teuthology.orchestra.run.smithi016.stdout:Nothing to do. 2024-04-14T16:06:48.899 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:48.945 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install python3-rados 2024-04-14T16:06:48.962 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install python3-rgw 2024-04-14T16:06:49.221 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : librados-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:49.221 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:49.221 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:06:49.221 INFO:teuthology.orchestra.run.smithi027.stdout: librados-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:06:49.221 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:49.222 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:49.477 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install libcephfs2 2024-04-14T16:06:49.542 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:58 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:49.577 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:53 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:49.830 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:49.830 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:49.831 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:49.831 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.831 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:49.831 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.831 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:49.831 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.831 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:49.831 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.831 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:49.831 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:49.832 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:49.833 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.834 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:49.834 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.834 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:49.834 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.834 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:49.834 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.834 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:49.834 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.834 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:49.834 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.834 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:49.834 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.835 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:49.835 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.835 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:49.835 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.835 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:49.835 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.835 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:49.835 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.835 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:49.835 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.835 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:49.835 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.836 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:49.837 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.838 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.838 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.838 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.838 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:49.838 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.838 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.838 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.838 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.838 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:49.838 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.838 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.838 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.839 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.839 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:49.839 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.839 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.839 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.839 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.839 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:49.839 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.839 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.839 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.840 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.840 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:49.840 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.840 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.840 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.840 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.840 INFO:teuthology.orchestra.run.smithi122.stdout:Package python3-rados-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:49.879 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:49.879 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:49.879 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:49.879 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.879 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:49.879 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.879 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:49.879 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.879 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:49.879 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.879 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:49.879 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.880 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:49.880 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.880 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:49.880 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.880 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:49.880 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.880 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:49.880 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.880 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:49.880 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.880 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:49.881 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.881 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:49.881 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.881 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:49.881 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.881 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:49.881 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.881 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:49.881 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.881 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:49.881 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.881 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:49.882 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.882 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:49.882 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.882 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:49.882 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.882 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:49.882 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.882 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:49.882 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.882 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:49.882 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.882 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:49.882 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.883 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:49.883 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.883 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:49.883 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.883 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:49.883 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.883 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:49.883 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.883 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:49.883 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.883 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:49.883 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.883 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:49.884 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.885 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.886 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:49.886 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.886 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.886 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.886 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.886 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:49.886 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.886 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.886 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.886 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.886 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:49.886 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.886 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:49.887 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.888 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.888 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.888 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:49.888 INFO:teuthology.orchestra.run.smithi016.stdout:Package python3-rgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:49.898 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:49.899 INFO:teuthology.orchestra.run.smithi122.stdout:Nothing to do. 2024-04-14T16:06:49.899 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:49.951 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:49.952 INFO:teuthology.orchestra.run.smithi016.stdout:Nothing to do. 2024-04-14T16:06:49.952 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:49.975 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install python3-rgw 2024-04-14T16:06:50.012 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install python3-cephfs 2024-04-14T16:06:50.104 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:51 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:50.411 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:50.411 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:50.411 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:50.411 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.411 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:50.411 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.411 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:50.411 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.411 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.412 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.413 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:50.414 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.414 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:50.414 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.414 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:50.414 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.414 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:50.414 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.414 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:50.414 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.414 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:50.414 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.414 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:50.414 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:50.415 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.416 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:50.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.418 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.420 INFO:teuthology.orchestra.run.smithi027.stdout:Package libcephfs2-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:50.484 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:50.485 INFO:teuthology.orchestra.run.smithi027.stdout:Nothing to do. 2024-04-14T16:06:50.486 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:50.552 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install libcephfs-devel 2024-04-14T16:06:50.574 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:01:59 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:50.622 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:54 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:50.868 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:50.868 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:50.868 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:50.868 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.869 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:50.869 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.869 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:50.869 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.869 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:50.869 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.869 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:50.869 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.869 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:50.869 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.869 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:50.869 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.869 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:50.870 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.870 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:50.870 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.870 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:50.870 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.870 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:50.870 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.870 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:50.870 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.870 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:50.870 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.870 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:50.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:50.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:50.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:50.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:50.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:50.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.871 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:50.871 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:50.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:50.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:50.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:50.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:50.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:50.872 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.872 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:50.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:50.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:50.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:50.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:50.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:50.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.873 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:50.873 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.874 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:50.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.875 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:50.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.875 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.876 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:50.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.876 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:50.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.876 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:50.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.876 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.877 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:50.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.877 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:50.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.877 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.878 INFO:teuthology.orchestra.run.smithi122.stdout:Package python3-rgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:50.923 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:50.923 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:50.923 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:50.923 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.923 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:50.924 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.924 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:50.924 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.924 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:50.924 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.924 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:50.924 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.924 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:50.924 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.924 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:50.924 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.924 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:50.924 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.925 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:50.925 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.925 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:50.925 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.925 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:50.925 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.925 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:50.925 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.925 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:50.925 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.925 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:50.925 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.925 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:50.926 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.926 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:50.926 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.926 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:50.926 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.926 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:50.926 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.926 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:50.926 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.926 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:50.926 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.926 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:50.927 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.927 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:50.927 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.927 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:50.927 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.927 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:50.927 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.927 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:50.927 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.927 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:50.927 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.927 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:50.927 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:50.928 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.929 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:50.929 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.929 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:50.929 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.929 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:50.929 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.929 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.929 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.929 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:50.929 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.929 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.929 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.929 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.930 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:50.930 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.930 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.930 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.930 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.930 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.930 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.930 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:50.930 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.930 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.930 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.930 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.931 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:50.931 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.931 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.931 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.931 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.931 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:50.931 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.931 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.931 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.931 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.931 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:50.931 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.931 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.932 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.932 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.932 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:50.932 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.932 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.932 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.932 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.932 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:50.932 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.932 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.932 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.932 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:50.933 INFO:teuthology.orchestra.run.smithi016.stdout:Package python3-cephfs-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:50.935 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:50.936 INFO:teuthology.orchestra.run.smithi122.stdout:Nothing to do. 2024-04-14T16:06:50.936 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:50.994 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:50.996 INFO:teuthology.orchestra.run.smithi016.stdout:Nothing to do. 2024-04-14T16:06:50.996 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:50.996 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install python3-cephfs 2024-04-14T16:06:51.055 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install python3-rbd 2024-04-14T16:06:51.178 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:52 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:51.481 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:51.481 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:51.481 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:51.481 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.481 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:51.481 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.481 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:51.482 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.482 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:51.482 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.482 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:51.482 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.482 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:51.482 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.482 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:51.482 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.482 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:51.482 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.482 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:51.482 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.483 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:51.483 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.483 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:51.483 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.483 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:51.483 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.483 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:51.483 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.483 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:51.483 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.483 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:51.483 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.483 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:51.484 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.484 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:51.484 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.484 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:51.484 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.484 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:51.484 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.484 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:51.484 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.484 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:51.484 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.484 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:51.484 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.485 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:51.485 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.485 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:51.485 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.485 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:51.485 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.485 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:51.485 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.485 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:51.485 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.485 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:51.485 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.485 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:51.486 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.486 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:51.486 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.486 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:51.486 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.486 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:51.486 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.486 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:51.486 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.486 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:51.486 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.486 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:51.486 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.487 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:51.487 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.487 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:51.487 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.487 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.487 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.487 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:51.487 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.487 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.487 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.487 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.487 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:51.488 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.488 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.488 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.488 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.488 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.488 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.488 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:51.488 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.488 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.488 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.488 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.488 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:51.488 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.489 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:51.490 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.490 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.490 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.490 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.490 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:51.490 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.490 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.490 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.490 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.553 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:51.553 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:51.554 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repo Size 2024-04-14T16:06:51.554 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:51.554 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:06:51.554 INFO:teuthology.orchestra.run.smithi027.stdout: libcephfs-devel x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 32 k 2024-04-14T16:06:51.554 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:51.554 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:06:51.554 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:06:51.554 INFO:teuthology.orchestra.run.smithi027.stdout:Install 1 Package 2024-04-14T16:06:51.554 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:51.554 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 32 k 2024-04-14T16:06:51.554 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 142 k 2024-04-14T16:06:51.554 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:06:51.592 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:02:00 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:51.659 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:55 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:51.731 INFO:teuthology.orchestra.run.smithi027.stdout:libcephfs-devel-19.0.0-2778.ga971fd5f.el9.x86_6 179 kB/s | 32 kB 00:00 2024-04-14T16:06:51.732 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:51.732 INFO:teuthology.orchestra.run.smithi027.stdout:Total 178 kB/s | 32 kB 00:00 2024-04-14T16:06:51.732 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:06:51.736 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:06:51.736 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:06:51.772 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:06:51.772 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:06:51.869 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:06:51.883 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:51.884 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:51.884 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:51.884 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.884 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:51.884 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.884 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:51.884 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.884 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:51.884 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.885 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:51.886 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.886 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:51.886 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.886 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:51.886 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.886 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:51.886 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.886 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:51.886 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.886 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:51.886 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.886 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:51.887 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.887 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:51.887 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.887 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:51.887 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.887 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:51.887 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.887 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:51.887 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.887 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:51.887 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.888 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:51.888 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.888 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:51.888 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.888 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:51.888 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.888 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:51.888 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.889 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:51.889 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.889 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:51.889 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.889 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:51.889 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.889 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:51.889 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.889 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:51.889 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.889 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:51.890 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.890 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:51.890 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.890 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:51.890 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.890 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:51.890 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.890 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:51.890 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.890 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.890 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.890 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:51.890 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.891 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.891 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.891 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.891 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:51.891 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.891 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.891 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.891 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.891 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.892 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.892 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:51.892 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.892 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.892 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.892 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.892 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:51.892 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.892 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.892 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.893 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.894 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.894 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:51.894 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.894 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.894 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.894 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.894 INFO:teuthology.orchestra.run.smithi122.stdout:Package python3-cephfs-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:51.951 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:51.952 INFO:teuthology.orchestra.run.smithi122.stdout:Nothing to do. 2024-04-14T16:06:51.952 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:51.961 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:51.961 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:51.961 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:51.961 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.961 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:51.961 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.961 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:51.961 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.961 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:51.961 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.962 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:51.962 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.962 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:51.962 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.962 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:51.962 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.962 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:51.962 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.962 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:51.962 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.962 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:51.962 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.963 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:51.963 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.963 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:51.963 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.963 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:51.963 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.963 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:51.963 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.963 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:51.963 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.963 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:51.963 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.963 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:51.964 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.964 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:51.964 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.964 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:51.964 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.964 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:51.964 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.964 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:51.964 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.964 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:51.964 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.964 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:51.965 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.965 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:51.965 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.965 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:51.965 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.965 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:51.965 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.965 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:51.965 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.965 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:51.965 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.965 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:51.966 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.966 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:51.966 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.966 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:51.966 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.966 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:51.966 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.966 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:51.966 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.966 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:51.966 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.966 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:51.967 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.967 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:51.967 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.967 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:51.967 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.967 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.967 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.967 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:51.967 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.967 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.967 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.967 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.967 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.968 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.969 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.970 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.970 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.970 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:51.970 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.970 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.970 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.970 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:51.971 INFO:teuthology.orchestra.run.smithi016.stdout:Package python3-rbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:52.000 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : libcephfs-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:52.018 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install python3-rbd 2024-04-14T16:06:52.033 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:52.034 INFO:teuthology.orchestra.run.smithi016.stdout:Nothing to do. 2024-04-14T16:06:52.034 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:52.099 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install rbd-fuse 2024-04-14T16:06:52.369 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:52.612 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:02:01 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:52.659 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : libcephfs-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:52.659 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:52.659 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:06:52.660 INFO:teuthology.orchestra.run.smithi027.stdout: libcephfs-devel-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:06:52.660 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:06:52.660 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:52.706 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:56 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:52.871 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install librados2 2024-04-14T16:06:52.901 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:52.901 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:52.901 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:52.901 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.901 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:52.901 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.901 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:52.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.902 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:52.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.902 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:52.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.902 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:52.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.902 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:52.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.902 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:52.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.902 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:52.902 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:52.903 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.904 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:52.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.904 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:52.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.904 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:52.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.904 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:52.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.904 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:52.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.904 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:52.904 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.905 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.906 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:52.907 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.907 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.907 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.907 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:52.907 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.907 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.907 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.907 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.907 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:52.907 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.907 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.907 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.907 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.908 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.908 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.908 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:52.908 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.908 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.908 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.908 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.908 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:52.908 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.908 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.908 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.908 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.908 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.909 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.910 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:52.910 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.910 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.910 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.910 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:52.910 INFO:teuthology.orchestra.run.smithi122.stdout:Package python3-rbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:52.968 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:52.969 INFO:teuthology.orchestra.run.smithi122.stdout:Nothing to do. 2024-04-14T16:06:52.969 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:53.014 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:53.014 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:53.014 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:53.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.015 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:53.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.015 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:53.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.015 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:53.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.015 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:53.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.015 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:53.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.015 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:53.015 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:53.016 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.017 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:53.018 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.018 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:53.018 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.018 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:53.018 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.018 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:53.018 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.018 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:53.018 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.018 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:53.018 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.018 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:53.018 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.019 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.020 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.021 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.021 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.021 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.021 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:53.021 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.021 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.021 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.021 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.021 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:53.021 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.021 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.021 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.021 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.022 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.023 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.023 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:53.023 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.023 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.023 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.023 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.034 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install rbd-fuse 2024-04-14T16:06:53.088 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:53.088 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:53.088 INFO:teuthology.orchestra.run.smithi016.stdout: Package Architecture Version Repository Size 2024-04-14T16:06:53.088 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:53.089 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:06:53.089 INFO:teuthology.orchestra.run.smithi016.stdout: rbd-fuse x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 85 k 2024-04-14T16:06:53.089 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:53.089 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:06:53.089 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:53.089 INFO:teuthology.orchestra.run.smithi016.stdout:Install 1 Package 2024-04-14T16:06:53.089 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:53.090 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 85 k 2024-04-14T16:06:53.090 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 231 k 2024-04-14T16:06:53.090 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:06:53.498 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:54 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:53.523 INFO:teuthology.orchestra.run.smithi016.stdout:rbd-fuse-19.0.0-2778.ga971fd5f.el9.x86_64.rpm 196 kB/s | 85 kB 00:00 2024-04-14T16:06:53.524 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:53.524 INFO:teuthology.orchestra.run.smithi016.stdout:Total 196 kB/s | 85 kB 00:00 2024-04-14T16:06:53.524 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:06:53.532 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:06:53.532 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:06:53.596 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:06:53.596 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:06:53.625 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:02:02 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:53.748 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:06:53.802 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:53.802 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:53.802 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:53.802 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.802 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:53.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.803 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:53.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.803 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:53.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.803 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:53.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.803 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:53.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.803 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:53.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.803 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:53.803 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.804 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:53.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.804 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:53.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.804 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:53.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.804 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:53.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.804 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:53.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.804 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:53.804 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.804 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:53.805 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.805 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:53.805 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.805 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:53.805 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.805 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:53.805 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.805 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:53.805 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.805 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:53.805 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.805 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:53.805 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:53.806 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.807 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:53.807 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.807 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:53.807 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.807 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:53.807 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.807 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:53.807 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.807 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:53.807 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.807 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:53.807 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.807 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:53.808 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.809 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.809 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.809 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.809 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.809 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.809 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:53.809 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.809 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.809 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.809 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.809 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:53.809 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.809 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.810 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.810 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.810 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:53.810 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.810 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.810 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.810 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.810 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:53.810 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.810 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.810 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.810 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.810 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:53.811 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.811 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.811 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.811 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.811 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:53.811 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.811 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.811 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.811 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.812 INFO:teuthology.orchestra.run.smithi027.stdout:Package librados2-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:53.859 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : rbd-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:53.875 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:53.876 INFO:teuthology.orchestra.run.smithi027.stdout:Nothing to do. 2024-04-14T16:06:53.877 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:53.915 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:53.915 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:53.915 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:53.915 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.915 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:53.916 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:53.917 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.918 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:53.918 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.918 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:53.918 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.918 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:53.918 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.918 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:53.918 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.918 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:53.918 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.918 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:53.918 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.919 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:53.919 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.919 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:53.919 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.919 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:53.919 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.919 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:53.919 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.919 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:53.919 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.919 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:53.919 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.919 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:53.920 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.921 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:53.922 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.923 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:53.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.923 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:53.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.923 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.924 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.924 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.924 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:53.924 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.924 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.924 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.924 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:53.943 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install librbd1 2024-04-14T16:06:54.014 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:54.015 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:54.015 INFO:teuthology.orchestra.run.smithi122.stdout: Package Architecture Version Repository Size 2024-04-14T16:06:54.015 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:54.015 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:06:54.015 INFO:teuthology.orchestra.run.smithi122.stdout: rbd-fuse x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 85 k 2024-04-14T16:06:54.015 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:54.015 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:06:54.015 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:54.015 INFO:teuthology.orchestra.run.smithi122.stdout:Install 1 Package 2024-04-14T16:06:54.015 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:54.016 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 85 k 2024-04-14T16:06:54.016 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 231 k 2024-04-14T16:06:54.016 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:06:54.222 INFO:teuthology.orchestra.run.smithi122.stdout:rbd-fuse-19.0.0-2778.ga971fd5f.el9.x86_64.rpm 415 kB/s | 85 kB 00:00 2024-04-14T16:06:54.223 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:54.223 INFO:teuthology.orchestra.run.smithi122.stdout:Total 412 kB/s | 85 kB 00:00 2024-04-14T16:06:54.223 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:06:54.229 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:06:54.229 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:06:54.266 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:54.288 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:06:54.289 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:06:54.429 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:06:54.537 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : rbd-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:54.574 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:55 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:54.618 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : rbd-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:54.618 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:54.618 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:06:54.618 INFO:teuthology.orchestra.run.smithi016.stdout: rbd-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:06:54.619 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:54.619 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:54.850 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install rbd-mirror 2024-04-14T16:06:54.883 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:54.884 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:54.884 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:54.884 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.884 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:54.884 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.884 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:54.884 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.884 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:54.884 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.884 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:54.884 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.884 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.885 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:54.886 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.886 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:54.886 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.886 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:54.886 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.886 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:54.886 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.886 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:54.886 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.886 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:54.886 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.886 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:54.886 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.887 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:54.887 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.887 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:54.887 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.887 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:54.887 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.887 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:54.887 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.887 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:54.887 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.887 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:54.887 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.887 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:54.888 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.888 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:54.888 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.888 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:54.888 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.888 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:54.888 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.888 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:54.888 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.888 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:54.888 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.888 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:54.888 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:54.889 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.890 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.890 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.890 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.890 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:54.890 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.890 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.890 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.890 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.890 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.890 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.890 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:54.890 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.891 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.892 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:54.893 INFO:teuthology.orchestra.run.smithi027.stdout:Package librbd1-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:54.933 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:54.955 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:54.957 INFO:teuthology.orchestra.run.smithi027.stdout:Nothing to do. 2024-04-14T16:06:54.957 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:55.022 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install python3-rados 2024-04-14T16:06:55.251 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : rbd-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:55.251 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:55.251 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:06:55.251 INFO:teuthology.orchestra.run.smithi122.stdout: rbd-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:06:55.251 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:55.251 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:55.463 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:01:59 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:55.531 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install rbd-mirror 2024-04-14T16:06:55.646 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:56 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:55.768 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:55.768 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:55.768 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:55.768 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.768 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:55.768 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.768 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:55.768 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.768 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:55.769 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.769 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:55.769 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.769 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:55.769 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.769 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:55.769 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.769 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:55.769 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.769 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:55.769 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.770 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:55.770 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.770 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:55.770 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.770 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:55.770 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.770 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:55.770 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.770 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:55.770 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.770 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:55.770 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.770 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:55.771 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:55.772 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.773 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:55.773 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.773 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:55.773 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.773 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:55.773 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.773 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:55.773 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.773 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:55.773 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.773 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:55.773 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.773 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:55.774 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.774 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.774 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.774 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:55.774 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.774 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.774 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.774 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.774 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:55.774 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.774 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.774 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.775 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.775 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.775 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.775 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:55.775 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.775 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.775 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.775 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.775 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:55.775 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.775 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.775 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.775 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.776 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.777 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.777 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:55.777 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.777 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.777 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.777 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.843 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:55.843 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:55.843 INFO:teuthology.orchestra.run.smithi016.stdout: Package Arch Version Repo Size 2024-04-14T16:06:55.844 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:55.844 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:06:55.844 INFO:teuthology.orchestra.run.smithi016.stdout: rbd-mirror x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 3.1 M 2024-04-14T16:06:55.844 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:55.844 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:06:55.844 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:55.844 INFO:teuthology.orchestra.run.smithi016.stdout:Install 1 Package 2024-04-14T16:06:55.844 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:55.845 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 3.1 M 2024-04-14T16:06:55.845 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 13 M 2024-04-14T16:06:55.845 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:06:55.953 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:55.953 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:55.953 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:55.953 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.953 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:55.953 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.953 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:55.953 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.953 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:55.954 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.954 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:55.954 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.954 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:55.954 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.954 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:55.954 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.954 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:55.954 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.954 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:55.954 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.954 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:55.955 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.955 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:55.955 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.955 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:55.955 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.955 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:55.955 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.955 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:55.955 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.955 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:55.955 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.955 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:55.955 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:55.956 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:55.957 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.958 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:55.958 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.958 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:55.958 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.958 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:55.958 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.958 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:55.958 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.958 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:55.958 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.958 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:55.958 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.958 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.959 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.960 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.961 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.961 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.961 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:55.961 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.961 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.961 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.961 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.961 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:55.961 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.961 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.961 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.961 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.961 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:55.962 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.962 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.962 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.962 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:55.962 INFO:teuthology.orchestra.run.smithi027.stdout:Package python3-rados-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:56.025 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:56.026 INFO:teuthology.orchestra.run.smithi027.stdout:Nothing to do. 2024-04-14T16:06:56.026 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:56.092 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install python3-rgw 2024-04-14T16:06:56.141 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:02:05 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:56.236 INFO:teuthology.orchestra.run.smithi016.stdout:rbd-mirror-19.0.0-2778.ga971fd5f.el9.x86_64.rpm 7.9 MB/s | 3.1 MB 00:00 2024-04-14T16:06:56.237 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:56.237 INFO:teuthology.orchestra.run.smithi016.stdout:Total 7.9 MB/s | 3.1 MB 00:00 2024-04-14T16:06:56.237 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:06:56.247 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:06:56.247 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:06:56.327 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:06:56.327 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:06:56.438 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:56.438 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:56.438 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:56.438 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.438 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:56.438 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.438 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:56.438 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.438 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:56.438 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.439 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:56.439 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.439 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:56.439 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.439 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:56.439 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.439 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:56.439 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.439 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:56.439 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.439 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:56.439 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.439 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:56.440 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.440 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:56.440 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.440 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:56.440 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.440 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:56.441 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.441 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:56.441 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.441 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:56.441 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.441 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:56.441 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.441 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:56.441 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.441 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:56.441 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.441 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.442 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:56.443 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.443 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:56.443 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.443 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:56.443 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.443 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:56.443 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.443 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:56.444 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.444 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:56.444 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.444 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:56.444 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.444 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:56.444 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.444 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:56.444 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.444 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:56.444 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.444 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.445 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.446 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:56.446 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.446 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.446 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.446 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.446 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:56.446 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.446 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.446 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.446 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.446 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:56.446 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.446 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.447 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.447 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.447 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:56.447 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.447 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.447 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.447 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.447 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:56.447 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.447 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.448 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.448 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.448 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:56.448 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.448 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.448 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.448 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:56.505 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:56.505 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:56.506 INFO:teuthology.orchestra.run.smithi122.stdout: Package Arch Version Repo Size 2024-04-14T16:06:56.506 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:56.506 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:06:56.506 INFO:teuthology.orchestra.run.smithi122.stdout: rbd-mirror x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 3.1 M 2024-04-14T16:06:56.506 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:56.506 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:06:56.506 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:56.506 INFO:teuthology.orchestra.run.smithi122.stdout:Install 1 Package 2024-04-14T16:06:56.506 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:56.507 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 3.1 M 2024-04-14T16:06:56.507 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 13 M 2024-04-14T16:06:56.507 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:06:56.713 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:57 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:56.778 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:06:56.836 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : rbd-mirror-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:56.860 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:56.860 INFO:teuthology.orchestra.run.smithi016.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:06:56.860 INFO:teuthology.orchestra.run.smithi016.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-14T16:06:56.860 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-14T16:06:56.860 INFO:teuthology.orchestra.run.smithi016.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-14T16:06:56.860 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:56.885 INFO:teuthology.orchestra.run.smithi122.stdout:rbd-mirror-19.0.0-2778.ga971fd5f.el9.x86_64.rpm 8.2 MB/s | 3.1 MB 00:00 2024-04-14T16:06:56.885 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:56.885 INFO:teuthology.orchestra.run.smithi122.stdout:Total 8.2 MB/s | 3.1 MB 00:00 2024-04-14T16:06:56.885 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:06:56.894 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:06:56.894 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:06:56.969 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:06:56.970 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:06:57.018 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:57.018 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:57.019 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:57.019 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.019 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:57.019 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.019 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:57.019 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.019 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:57.019 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.019 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:57.019 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.019 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:57.019 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.019 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.020 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:57.021 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.021 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:57.021 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.021 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:57.021 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.021 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:57.021 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.021 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:57.021 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.022 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:57.022 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.022 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:57.022 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.022 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:57.022 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.022 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:57.022 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.022 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:57.022 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.022 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:57.022 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.023 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:57.023 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.023 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:57.023 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.023 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:57.023 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.023 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:57.023 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.023 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:57.023 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.023 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:57.023 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.023 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:57.024 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.024 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:57.024 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.024 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:57.024 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.024 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:57.024 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.024 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:57.024 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.024 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:57.024 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.024 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:57.024 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.025 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.026 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:57.026 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.026 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.026 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.026 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.026 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:57.026 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.026 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.026 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.026 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.026 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:57.026 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.026 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.027 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.027 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.027 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:57.027 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.027 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.027 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.027 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.027 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:57.027 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.027 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.027 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.027 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.027 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:57.028 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.028 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.028 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.028 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:57.028 INFO:teuthology.orchestra.run.smithi027.stdout:Package python3-rgw-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:57.090 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:57.092 INFO:teuthology.orchestra.run.smithi027.stdout:Nothing to do. 2024-04-14T16:06:57.092 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:57.158 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install python3-cephfs 2024-04-14T16:06:57.411 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:06:57.468 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : rbd-mirror-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:57.492 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:57.492 INFO:teuthology.orchestra.run.smithi122.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:06:57.492 INFO:teuthology.orchestra.run.smithi122.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-14T16:06:57.492 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-14T16:06:57.492 INFO:teuthology.orchestra.run.smithi122.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-14T16:06:57.492 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:57.786 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:58 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:58.007 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : rbd-mirror-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:58.008 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:58.008 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:06:58.008 INFO:teuthology.orchestra.run.smithi016.stdout: rbd-mirror-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:06:58.008 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:58.008 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:06:58.088 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:58.088 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:58.088 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:58.088 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.088 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:58.088 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.088 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:58.088 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.088 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:58.088 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.088 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:58.089 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.089 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:58.089 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.089 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:58.089 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.089 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:58.089 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.089 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:58.089 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.089 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:58.089 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.089 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:58.089 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.090 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:58.090 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.090 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:58.090 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.090 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:58.090 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.090 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:58.090 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.090 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:58.090 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.090 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:58.090 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.090 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:58.091 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.091 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:58.091 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.091 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:58.091 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.091 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:58.091 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.091 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:58.091 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.091 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:58.091 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.091 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:58.091 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.092 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:58.092 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.092 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:58.092 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.092 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:58.092 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.092 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:58.092 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.092 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:58.092 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.092 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.093 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:58.094 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.094 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.094 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.094 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:58.094 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.094 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.094 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.094 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.094 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:58.094 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.094 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.094 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.094 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.095 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.095 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.095 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:58.095 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.095 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.095 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.095 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.095 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:58.095 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.095 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.095 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.095 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.095 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:58.096 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.097 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.097 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.097 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:58.097 INFO:teuthology.orchestra.run.smithi027.stdout:Package python3-cephfs-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:58.159 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:58.160 INFO:teuthology.orchestra.run.smithi027.stdout:Nothing to do. 2024-04-14T16:06:58.160 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:58.247 DEBUG:teuthology.orchestra.run.smithi016:> sudo yum -y install rbd-nbd 2024-04-14T16:06:58.364 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install python3-rbd 2024-04-14T16:06:58.605 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : rbd-mirror-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:06:58.605 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:58.605 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:06:58.605 INFO:teuthology.orchestra.run.smithi122.stdout: rbd-mirror-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:06:58.605 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:58.605 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:06:58.862 INFO:teuthology.orchestra.run.smithi016.stdout:Last metadata expiration check: 0:02:02 ago on Sun 14 Apr 2024 04:04:56 PM UTC. 2024-04-14T16:06:58.868 DEBUG:teuthology.orchestra.run.smithi122:> sudo yum -y install rbd-nbd 2024-04-14T16:06:58.988 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:01:59 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:06:59.164 INFO:teuthology.orchestra.run.smithi016.stderr:Modular dependency problems: 2024-04-14T16:06:59.164 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:06:59.164 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 1: conflicting requests 2024-04-14T16:06:59.164 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.164 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 2: conflicting requests 2024-04-14T16:06:59.164 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.164 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 3: conflicting requests 2024-04-14T16:06:59.164 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 4: conflicting requests 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 5: conflicting requests 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 6: conflicting requests 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 7: conflicting requests 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 8: conflicting requests 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 9: conflicting requests 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 10: conflicting requests 2024-04-14T16:06:59.165 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 11: conflicting requests 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 12: conflicting requests 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 13: conflicting requests 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 14: conflicting requests 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 15: conflicting requests 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 16: conflicting requests 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 17: conflicting requests 2024-04-14T16:06:59.166 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 18: conflicting requests 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 19: conflicting requests 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 20: conflicting requests 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 21: conflicting requests 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 22: conflicting requests 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 23: conflicting requests 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 24: conflicting requests 2024-04-14T16:06:59.167 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 25: conflicting requests 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 26: conflicting requests 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 27: conflicting requests 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 28: conflicting requests 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 29: conflicting requests 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 30: conflicting requests 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 31: conflicting requests 2024-04-14T16:06:59.168 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 32: conflicting requests 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 33: conflicting requests 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 34: conflicting requests 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 35: conflicting requests 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 36: conflicting requests 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 37: conflicting requests 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.169 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.170 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:59.170 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.170 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.170 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.170 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.170 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 39: conflicting requests 2024-04-14T16:06:59.170 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.170 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.170 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.170 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.170 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.170 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.170 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.171 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.172 INFO:teuthology.orchestra.run.smithi016.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.237 INFO:teuthology.orchestra.run.smithi016.stdout:Dependencies resolved. 2024-04-14T16:06:59.237 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:59.237 INFO:teuthology.orchestra.run.smithi016.stdout: Package Architecture Version Repository Size 2024-04-14T16:06:59.237 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:59.237 INFO:teuthology.orchestra.run.smithi016.stdout:Installing: 2024-04-14T16:06:59.237 INFO:teuthology.orchestra.run.smithi016.stdout: rbd-nbd x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 170 k 2024-04-14T16:06:59.237 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:59.238 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction Summary 2024-04-14T16:06:59.238 INFO:teuthology.orchestra.run.smithi016.stdout:================================================================================ 2024-04-14T16:06:59.238 INFO:teuthology.orchestra.run.smithi016.stdout:Install 1 Package 2024-04-14T16:06:59.238 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:06:59.238 INFO:teuthology.orchestra.run.smithi016.stdout:Total download size: 170 k 2024-04-14T16:06:59.238 INFO:teuthology.orchestra.run.smithi016.stdout:Installed size: 494 k 2024-04-14T16:06:59.239 INFO:teuthology.orchestra.run.smithi016.stdout:Downloading Packages: 2024-04-14T16:06:59.294 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:06:59.294 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:06:59.294 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.295 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.296 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.297 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.298 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.299 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.300 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.301 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.302 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.303 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:59.303 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.303 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.303 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.303 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.303 INFO:teuthology.orchestra.run.smithi027.stdout:Package python3-rbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 is already installed. 2024-04-14T16:06:59.367 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:06:59.368 INFO:teuthology.orchestra.run.smithi027.stdout:Nothing to do. 2024-04-14T16:06:59.369 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:06:59.433 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install rbd-fuse 2024-04-14T16:06:59.479 INFO:teuthology.orchestra.run.smithi122.stdout:Last metadata expiration check: 0:02:08 ago on Sun 14 Apr 2024 04:04:51 PM UTC. 2024-04-14T16:06:59.581 INFO:teuthology.orchestra.run.smithi016.stdout:rbd-nbd-19.0.0-2778.ga971fd5f.el9.x86_64.rpm 498 kB/s | 170 kB 00:00 2024-04-14T16:06:59.582 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:06:59.582 INFO:teuthology.orchestra.run.smithi016.stdout:Total 495 kB/s | 170 kB 00:00 2024-04-14T16:06:59.582 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction check 2024-04-14T16:06:59.591 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction check succeeded. 2024-04-14T16:06:59.591 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction test 2024-04-14T16:06:59.655 INFO:teuthology.orchestra.run.smithi016.stdout:Transaction test succeeded. 2024-04-14T16:06:59.656 INFO:teuthology.orchestra.run.smithi016.stdout:Running transaction 2024-04-14T16:06:59.772 INFO:teuthology.orchestra.run.smithi122.stderr:Modular dependency problems: 2024-04-14T16:06:59.773 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:06:59.773 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 1: conflicting requests 2024-04-14T16:06:59.773 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.773 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 2: conflicting requests 2024-04-14T16:06:59.773 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.773 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 3: conflicting requests 2024-04-14T16:06:59.773 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.773 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 4: conflicting requests 2024-04-14T16:06:59.773 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.773 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 5: conflicting requests 2024-04-14T16:06:59.773 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.773 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 6: conflicting requests 2024-04-14T16:06:59.773 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.774 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 7: conflicting requests 2024-04-14T16:06:59.774 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.774 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 8: conflicting requests 2024-04-14T16:06:59.774 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.774 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 9: conflicting requests 2024-04-14T16:06:59.774 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.774 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 10: conflicting requests 2024-04-14T16:06:59.774 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.774 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 11: conflicting requests 2024-04-14T16:06:59.774 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.774 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 12: conflicting requests 2024-04-14T16:06:59.774 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.774 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 13: conflicting requests 2024-04-14T16:06:59.775 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.775 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 14: conflicting requests 2024-04-14T16:06:59.775 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.775 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 15: conflicting requests 2024-04-14T16:06:59.775 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.775 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 16: conflicting requests 2024-04-14T16:06:59.775 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.775 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 17: conflicting requests 2024-04-14T16:06:59.775 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.775 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 18: conflicting requests 2024-04-14T16:06:59.775 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.775 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 19: conflicting requests 2024-04-14T16:06:59.775 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 20: conflicting requests 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 21: conflicting requests 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 22: conflicting requests 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 23: conflicting requests 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 24: conflicting requests 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 25: conflicting requests 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 26: conflicting requests 2024-04-14T16:06:59.776 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.777 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 27: conflicting requests 2024-04-14T16:06:59.777 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.777 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 28: conflicting requests 2024-04-14T16:06:59.777 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.777 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 29: conflicting requests 2024-04-14T16:06:59.777 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.777 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 30: conflicting requests 2024-04-14T16:06:59.777 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.777 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 31: conflicting requests 2024-04-14T16:06:59.777 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.777 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 32: conflicting requests 2024-04-14T16:06:59.777 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.777 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 33: conflicting requests 2024-04-14T16:06:59.778 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.778 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 34: conflicting requests 2024-04-14T16:06:59.778 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.778 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 35: conflicting requests 2024-04-14T16:06:59.778 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.778 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 36: conflicting requests 2024-04-14T16:06:59.778 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.778 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 37: conflicting requests 2024-04-14T16:06:59.778 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.778 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.778 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.778 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:06:59.778 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 39: conflicting requests 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.779 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.780 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.780 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:06:59.780 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.780 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.780 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.780 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.780 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:06:59.780 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.780 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.780 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.780 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.780 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:06:59.780 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.781 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.781 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.781 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.781 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:06:59.781 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.781 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.781 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.781 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.781 INFO:teuthology.orchestra.run.smithi122.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:06:59.781 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.781 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.781 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.781 INFO:teuthology.orchestra.run.smithi122.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:06:59.821 INFO:teuthology.orchestra.run.smithi016.stdout: Preparing : 1/1 2024-04-14T16:06:59.841 INFO:teuthology.orchestra.run.smithi122.stdout:Dependencies resolved. 2024-04-14T16:06:59.842 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:59.842 INFO:teuthology.orchestra.run.smithi122.stdout: Package Architecture Version Repository Size 2024-04-14T16:06:59.842 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:59.842 INFO:teuthology.orchestra.run.smithi122.stdout:Installing: 2024-04-14T16:06:59.842 INFO:teuthology.orchestra.run.smithi122.stdout: rbd-nbd x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 170 k 2024-04-14T16:06:59.842 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:59.842 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction Summary 2024-04-14T16:06:59.842 INFO:teuthology.orchestra.run.smithi122.stdout:================================================================================ 2024-04-14T16:06:59.842 INFO:teuthology.orchestra.run.smithi122.stdout:Install 1 Package 2024-04-14T16:06:59.842 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:06:59.843 INFO:teuthology.orchestra.run.smithi122.stdout:Total download size: 170 k 2024-04-14T16:06:59.843 INFO:teuthology.orchestra.run.smithi122.stdout:Installed size: 494 k 2024-04-14T16:06:59.843 INFO:teuthology.orchestra.run.smithi122.stdout:Downloading Packages: 2024-04-14T16:06:59.925 INFO:teuthology.orchestra.run.smithi016.stdout: Installing : rbd-nbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:00.058 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:02:01 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:07:00.205 INFO:teuthology.orchestra.run.smithi122.stdout:rbd-nbd-19.0.0-2778.ga971fd5f.el9.x86_64.rpm 472 kB/s | 170 kB 00:00 2024-04-14T16:07:00.205 INFO:teuthology.orchestra.run.smithi122.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:07:00.206 INFO:teuthology.orchestra.run.smithi122.stdout:Total 470 kB/s | 170 kB 00:00 2024-04-14T16:07:00.206 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction check 2024-04-14T16:07:00.214 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction check succeeded. 2024-04-14T16:07:00.214 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction test 2024-04-14T16:07:00.274 INFO:teuthology.orchestra.run.smithi122.stdout:Transaction test succeeded. 2024-04-14T16:07:00.274 INFO:teuthology.orchestra.run.smithi122.stdout:Running transaction 2024-04-14T16:07:00.361 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:07:00.362 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:07:00.362 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:07:00.362 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.362 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:07:00.362 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.362 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:07:00.362 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.362 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:07:00.362 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.363 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:07:00.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.363 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:07:00.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.363 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:07:00.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.363 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:07:00.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.363 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:07:00.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.363 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:07:00.363 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.364 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:07:00.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.364 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:07:00.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.364 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:07:00.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.364 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:07:00.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.364 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:07:00.364 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.364 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:07:00.365 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.365 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:07:00.365 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.365 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:07:00.365 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.365 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:07:00.365 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.365 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:07:00.365 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.365 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:07:00.365 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.365 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:07:00.365 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:07:00.366 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.367 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:07:00.367 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.367 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:07:00.367 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.367 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:07:00.367 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.367 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:07:00.367 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.367 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:07:00.367 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.367 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:07:00.367 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.367 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:07:00.368 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.368 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:07:00.368 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.368 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.368 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.368 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:07:00.368 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.368 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.368 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.368 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.368 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:07:00.368 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.368 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.369 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.369 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.369 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.369 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.369 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:07:00.369 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.369 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.369 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.369 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.369 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:07:00.369 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.369 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.370 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.370 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.370 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:07:00.370 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.370 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.370 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.370 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.370 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:07:00.370 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.370 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.370 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.370 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.370 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:07:00.371 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.371 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.371 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.371 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.371 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:07:00.371 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.371 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.371 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.371 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:07:00.372 INFO:teuthology.orchestra.run.smithi016.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:00.423 INFO:teuthology.orchestra.run.smithi122.stdout: Preparing : 1/1 2024-04-14T16:07:00.437 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:07:00.437 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:07:00.437 INFO:teuthology.orchestra.run.smithi027.stdout: Package Architecture Version Repository Size 2024-04-14T16:07:00.437 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:07:00.437 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:07:00.438 INFO:teuthology.orchestra.run.smithi027.stdout: rbd-fuse x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 85 k 2024-04-14T16:07:00.438 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:07:00.438 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:07:00.438 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:07:00.438 INFO:teuthology.orchestra.run.smithi027.stdout:Install 1 Package 2024-04-14T16:07:00.438 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:07:00.439 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 85 k 2024-04-14T16:07:00.439 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 231 k 2024-04-14T16:07:00.439 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:07:00.536 INFO:teuthology.orchestra.run.smithi122.stdout: Installing : rbd-nbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:00.643 INFO:teuthology.orchestra.run.smithi027.stdout:rbd-fuse-19.0.0-2778.ga971fd5f.el9.x86_64.rpm 417 kB/s | 85 kB 00:00 2024-04-14T16:07:00.644 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:07:00.644 INFO:teuthology.orchestra.run.smithi027.stdout:Total 414 kB/s | 85 kB 00:00 2024-04-14T16:07:00.644 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:07:00.651 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:07:00.652 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:07:00.675 INFO:teuthology.orchestra.run.smithi016.stdout: Verifying : rbd-nbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:00.675 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:07:00.676 INFO:teuthology.orchestra.run.smithi016.stdout:Installed: 2024-04-14T16:07:00.676 INFO:teuthology.orchestra.run.smithi016.stdout: rbd-nbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:07:00.676 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:07:00.676 INFO:teuthology.orchestra.run.smithi016.stdout:Complete! 2024-04-14T16:07:00.717 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:07:00.717 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:07:00.862 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:07:00.884 DEBUG:teuthology.parallel:result is None 2024-04-14T16:07:00.952 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : rbd-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:01.004 INFO:teuthology.orchestra.run.smithi122.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:01.322 INFO:teuthology.orchestra.run.smithi122.stdout: Verifying : rbd-nbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:01.323 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:07:01.323 INFO:teuthology.orchestra.run.smithi122.stdout:Installed: 2024-04-14T16:07:01.323 INFO:teuthology.orchestra.run.smithi122.stdout: rbd-nbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:07:01.323 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:07:01.323 INFO:teuthology.orchestra.run.smithi122.stdout:Complete! 2024-04-14T16:07:01.356 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:01.548 DEBUG:teuthology.parallel:result is None 2024-04-14T16:07:01.726 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : rbd-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:01.726 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:07:01.726 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:07:01.726 INFO:teuthology.orchestra.run.smithi027.stdout: rbd-fuse-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:07:01.726 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:07:01.726 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:07:01.961 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install rbd-mirror 2024-04-14T16:07:02.589 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:02:03 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:07:02.906 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:07:02.907 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:07:02.907 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:07:02.907 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.907 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:07:02.907 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.907 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:07:02.907 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.907 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:07:02.907 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:07:02.908 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.909 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:07:02.909 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.909 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:07:02.909 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.909 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:07:02.909 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.909 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:07:02.909 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.909 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:07:02.909 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.909 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:07:02.909 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.909 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:07:02.910 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.910 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:07:02.910 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.910 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:07:02.910 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.910 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:07:02.910 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.910 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:07:02.910 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.910 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:07:02.910 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.910 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:07:02.911 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.911 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:07:02.911 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.911 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:07:02.911 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.911 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:07:02.911 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.911 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:07:02.911 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.911 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:07:02.911 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.911 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:07:02.911 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:07:02.912 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.913 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.913 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.913 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:07:02.913 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.913 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.913 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.913 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.913 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:07:02.913 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.913 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.913 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.913 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.913 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.914 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.914 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:07:02.914 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.914 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.914 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.914 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.914 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:07:02.914 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.914 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.914 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.914 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.914 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:07:02.914 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.915 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:07:02.916 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.916 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.916 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.916 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:07:02.978 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:07:02.979 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:07:02.979 INFO:teuthology.orchestra.run.smithi027.stdout: Package Arch Version Repo Size 2024-04-14T16:07:02.979 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:07:02.979 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:07:02.980 INFO:teuthology.orchestra.run.smithi027.stdout: rbd-mirror x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 3.1 M 2024-04-14T16:07:02.980 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:07:02.980 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:07:02.980 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:07:02.980 INFO:teuthology.orchestra.run.smithi027.stdout:Install 1 Package 2024-04-14T16:07:02.980 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:07:02.980 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 3.1 M 2024-04-14T16:07:02.980 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 13 M 2024-04-14T16:07:02.980 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:07:03.504 INFO:teuthology.orchestra.run.smithi027.stdout:rbd-mirror-19.0.0-2778.ga971fd5f.el9.x86_64.rpm 5.9 MB/s | 3.1 MB 00:00 2024-04-14T16:07:03.505 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:07:03.505 INFO:teuthology.orchestra.run.smithi027.stdout:Total 5.9 MB/s | 3.1 MB 00:00 2024-04-14T16:07:03.505 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:07:03.515 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:07:03.515 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:07:03.596 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:07:03.596 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:07:04.043 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:07:04.097 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : rbd-mirror-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:04.123 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:04.123 INFO:teuthology.orchestra.run.smithi027.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-14T16:07:04.124 INFO:teuthology.orchestra.run.smithi027.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-14T16:07:04.124 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-14T16:07:04.124 INFO:teuthology.orchestra.run.smithi027.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-14T16:07:04.124 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:07:05.257 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : rbd-mirror-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:05.257 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:07:05.257 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:07:05.257 INFO:teuthology.orchestra.run.smithi027.stdout: rbd-mirror-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:07:05.257 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:07:05.257 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:07:05.476 DEBUG:teuthology.orchestra.run.smithi027:> sudo yum -y install rbd-nbd 2024-04-14T16:07:06.107 INFO:teuthology.orchestra.run.smithi027.stdout:Last metadata expiration check: 0:02:07 ago on Sun 14 Apr 2024 04:04:59 PM UTC. 2024-04-14T16:07:06.409 INFO:teuthology.orchestra.run.smithi027.stderr:Modular dependency problems: 2024-04-14T16:07:06.409 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:07:06.409 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 1: conflicting requests 2024-04-14T16:07:06.409 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.409 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 2: conflicting requests 2024-04-14T16:07:06.410 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.410 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 3: conflicting requests 2024-04-14T16:07:06.410 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.410 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 4: conflicting requests 2024-04-14T16:07:06.410 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.410 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 5: conflicting requests 2024-04-14T16:07:06.410 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.410 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 6: conflicting requests 2024-04-14T16:07:06.411 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.411 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 7: conflicting requests 2024-04-14T16:07:06.411 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.411 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 8: conflicting requests 2024-04-14T16:07:06.411 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.411 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 9: conflicting requests 2024-04-14T16:07:06.411 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.411 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 10: conflicting requests 2024-04-14T16:07:06.411 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.412 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 11: conflicting requests 2024-04-14T16:07:06.412 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.412 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 12: conflicting requests 2024-04-14T16:07:06.412 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.412 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 13: conflicting requests 2024-04-14T16:07:06.412 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.412 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 14: conflicting requests 2024-04-14T16:07:06.412 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.413 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 15: conflicting requests 2024-04-14T16:07:06.413 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.413 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 16: conflicting requests 2024-04-14T16:07:06.413 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.413 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 17: conflicting requests 2024-04-14T16:07:06.413 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.413 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 18: conflicting requests 2024-04-14T16:07:06.413 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.414 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 19: conflicting requests 2024-04-14T16:07:06.414 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.414 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 20: conflicting requests 2024-04-14T16:07:06.414 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.414 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 21: conflicting requests 2024-04-14T16:07:06.414 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.414 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 22: conflicting requests 2024-04-14T16:07:06.415 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.415 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 23: conflicting requests 2024-04-14T16:07:06.415 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.415 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 24: conflicting requests 2024-04-14T16:07:06.415 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.415 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 25: conflicting requests 2024-04-14T16:07:06.415 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.415 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 26: conflicting requests 2024-04-14T16:07:06.416 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.416 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 27: conflicting requests 2024-04-14T16:07:06.416 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.416 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 28: conflicting requests 2024-04-14T16:07:06.416 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.416 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 29: conflicting requests 2024-04-14T16:07:06.416 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.416 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 30: conflicting requests 2024-04-14T16:07:06.416 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.417 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 31: conflicting requests 2024-04-14T16:07:06.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.417 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 32: conflicting requests 2024-04-14T16:07:06.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.417 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 33: conflicting requests 2024-04-14T16:07:06.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.417 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 34: conflicting requests 2024-04-14T16:07:06.417 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.418 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 35: conflicting requests 2024-04-14T16:07:06.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.418 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 36: conflicting requests 2024-04-14T16:07:06.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.418 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 37: conflicting requests 2024-04-14T16:07:06.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.418 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.419 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 38: cannot install the best candidate for the job 2024-04-14T16:07:06.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.419 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 39: conflicting requests 2024-04-14T16:07:06.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.419 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.420 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 40: cannot install the best candidate for the job 2024-04-14T16:07:06.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.420 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 41: cannot install the best candidate for the job 2024-04-14T16:07:06.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.420 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 42: cannot install the best candidate for the job 2024-04-14T16:07:06.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.420 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 43: cannot install the best candidate for the job 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 44: cannot install the best candidate for the job 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: Problem 45: cannot install the best candidate for the job 2024-04-14T16:07:06.421 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.422 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.422 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.422 INFO:teuthology.orchestra.run.smithi027.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-14T16:07:06.481 INFO:teuthology.orchestra.run.smithi027.stdout:Dependencies resolved. 2024-04-14T16:07:06.482 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:07:06.482 INFO:teuthology.orchestra.run.smithi027.stdout: Package Architecture Version Repository Size 2024-04-14T16:07:06.482 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:07:06.482 INFO:teuthology.orchestra.run.smithi027.stdout:Installing: 2024-04-14T16:07:06.482 INFO:teuthology.orchestra.run.smithi027.stdout: rbd-nbd x86_64 2:19.0.0-2778.ga971fd5f.el9 ceph 170 k 2024-04-14T16:07:06.482 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:07:06.482 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction Summary 2024-04-14T16:07:06.483 INFO:teuthology.orchestra.run.smithi027.stdout:================================================================================ 2024-04-14T16:07:06.483 INFO:teuthology.orchestra.run.smithi027.stdout:Install 1 Package 2024-04-14T16:07:06.483 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:07:06.483 INFO:teuthology.orchestra.run.smithi027.stdout:Total download size: 170 k 2024-04-14T16:07:06.483 INFO:teuthology.orchestra.run.smithi027.stdout:Installed size: 494 k 2024-04-14T16:07:06.483 INFO:teuthology.orchestra.run.smithi027.stdout:Downloading Packages: 2024-04-14T16:07:06.808 INFO:teuthology.orchestra.run.smithi027.stdout:rbd-nbd-19.0.0-2778.ga971fd5f.el9.x86_64.rpm 526 kB/s | 170 kB 00:00 2024-04-14T16:07:06.809 INFO:teuthology.orchestra.run.smithi027.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:07:06.809 INFO:teuthology.orchestra.run.smithi027.stdout:Total 523 kB/s | 170 kB 00:00 2024-04-14T16:07:06.809 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction check 2024-04-14T16:07:06.818 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction check succeeded. 2024-04-14T16:07:06.818 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction test 2024-04-14T16:07:06.883 INFO:teuthology.orchestra.run.smithi027.stdout:Transaction test succeeded. 2024-04-14T16:07:06.883 INFO:teuthology.orchestra.run.smithi027.stdout:Running transaction 2024-04-14T16:07:07.037 INFO:teuthology.orchestra.run.smithi027.stdout: Preparing : 1/1 2024-04-14T16:07:07.150 INFO:teuthology.orchestra.run.smithi027.stdout: Installing : rbd-nbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:07.601 INFO:teuthology.orchestra.run.smithi027.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:07.933 INFO:teuthology.orchestra.run.smithi027.stdout: Verifying : rbd-nbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 1/1 2024-04-14T16:07:07.933 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:07:07.933 INFO:teuthology.orchestra.run.smithi027.stdout:Installed: 2024-04-14T16:07:07.933 INFO:teuthology.orchestra.run.smithi027.stdout: rbd-nbd-2:19.0.0-2778.ga971fd5f.el9.x86_64 2024-04-14T16:07:07.933 INFO:teuthology.orchestra.run.smithi027.stdout: 2024-04-14T16:07:07.933 INFO:teuthology.orchestra.run.smithi027.stdout:Complete! 2024-04-14T16:07:08.172 DEBUG:teuthology.parallel:result is None 2024-04-14T16:07:08.173 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T16:07:08.427 DEBUG:teuthology.orchestra.run.smithi016:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-14T16:07:08.451 INFO:teuthology.orchestra.run.smithi016.stdout:19.0.0-2778.ga971fd5f.el9 2024-04-14T16:07:08.452 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2778.ga971fd5f.el9 2024-04-14T16:07:08.452 INFO:teuthology.task.install:The correct ceph version 19.0.0-2778.ga971fd5f is installed. 2024-04-14T16:07:08.454 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T16:07:08.588 DEBUG:teuthology.orchestra.run.smithi027:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-14T16:07:08.609 INFO:teuthology.orchestra.run.smithi027.stdout:19.0.0-2778.ga971fd5f.el9 2024-04-14T16:07:08.610 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2778.ga971fd5f.el9 2024-04-14T16:07:08.610 INFO:teuthology.task.install:The correct ceph version 19.0.0-2778.ga971fd5f is installed. 2024-04-14T16:07:08.612 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T16:07:08.744 DEBUG:teuthology.orchestra.run.smithi122:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-14T16:07:08.769 INFO:teuthology.orchestra.run.smithi122.stdout:19.0.0-2778.ga971fd5f.el9 2024-04-14T16:07:08.769 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2778.ga971fd5f.el9 2024-04-14T16:07:08.769 INFO:teuthology.task.install:The correct ceph version 19.0.0-2778.ga971fd5f is installed. 2024-04-14T16:07:08.772 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-04-14T16:07:08.773 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T16:07:08.773 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-14T16:07:08.806 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-14T16:07:08.807 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-14T16:07:08.840 DEBUG:teuthology.orchestra.run.smithi122:> set -ex 2024-04-14T16:07:08.840 DEBUG:teuthology.orchestra.run.smithi122:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-14T16:07:08.873 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-04-14T16:07:08.873 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T16:07:08.874 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/usr/bin/daemon-helper 2024-04-14T16:07:08.905 DEBUG:teuthology.orchestra.run.smithi016:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-14T16:07:08.975 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-14T16:07:08.975 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/usr/bin/daemon-helper 2024-04-14T16:07:09.007 DEBUG:teuthology.orchestra.run.smithi027:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-14T16:07:09.078 DEBUG:teuthology.orchestra.run.smithi122:> set -ex 2024-04-14T16:07:09.079 DEBUG:teuthology.orchestra.run.smithi122:> sudo dd of=/usr/bin/daemon-helper 2024-04-14T16:07:09.105 DEBUG:teuthology.orchestra.run.smithi122:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-14T16:07:09.173 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-04-14T16:07:09.173 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T16:07:09.173 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-14T16:07:09.202 DEBUG:teuthology.orchestra.run.smithi016:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-14T16:07:09.269 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-14T16:07:09.269 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-14T16:07:09.301 DEBUG:teuthology.orchestra.run.smithi027:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-14T16:07:09.373 DEBUG:teuthology.orchestra.run.smithi122:> set -ex 2024-04-14T16:07:09.373 DEBUG:teuthology.orchestra.run.smithi122:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-14T16:07:09.400 DEBUG:teuthology.orchestra.run.smithi122:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-14T16:07:09.468 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-04-14T16:07:09.468 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T16:07:09.469 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/usr/bin/stdin-killer 2024-04-14T16:07:09.495 DEBUG:teuthology.orchestra.run.smithi016:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-14T16:07:09.563 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-14T16:07:09.563 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/usr/bin/stdin-killer 2024-04-14T16:07:09.594 DEBUG:teuthology.orchestra.run.smithi027:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-14T16:07:09.665 DEBUG:teuthology.orchestra.run.smithi122:> set -ex 2024-04-14T16:07:09.665 DEBUG:teuthology.orchestra.run.smithi122:> sudo dd of=/usr/bin/stdin-killer 2024-04-14T16:07:09.691 DEBUG:teuthology.orchestra.run.smithi122:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-14T16:07:09.757 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-14T16:07:09.857 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 3}, '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', 'mons down', 'mon down', 'out of quorum'], 'sha1': 'a971fd5f5719038c70b817bafacd6d5400b1d888'} 2024-04-14T16:07:09.857 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T16:07:09.857 INFO:tasks.cephadm:Cluster fsid is 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:07:09.857 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-14T16:07:09.858 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.16', 'mon.b': '172.21.15.27', 'mon.c': '172.21.15.122'} 2024-04-14T16:07:09.858 INFO:tasks.cephadm:First mon is mon.a on smithi016 2024-04-14T16:07:09.858 INFO:tasks.cephadm:First mgr is a 2024-04-14T16:07:09.858 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-14T16:07:09.858 DEBUG:teuthology.orchestra.run.smithi016:> sudo hostname $(hostname -s) 2024-04-14T16:07:09.885 DEBUG:teuthology.orchestra.run.smithi027:> sudo hostname $(hostname -s) 2024-04-14T16:07:09.917 DEBUG:teuthology.orchestra.run.smithi122:> sudo hostname $(hostname -s) 2024-04-14T16:07:09.945 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-14T16:07:09.946 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T16:07:10.094 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'a971fd5f5719038c70b817bafacd6d5400b1d888', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=arm64,AVAILABLE_ARCH=arm64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/54841/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2778-ga971fd5f', 'node_name': '172.21.4.69+confusa07', 'job_name': 'ceph-dev-build/ARCH=arm64,AVAILABLE_ARCH=arm64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-2778.ga971fd5f'}, 'url': 'https://4.chacra.ceph.com/r/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-04-07 15:35:40.226244', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'main', 'chacra_url': 'https://4.chacra.ceph.com/repos/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/flavors/default/', 'archs': ['arm64', 'source', 'x86_64'], 'distro': 'centos'}] 2024-04-14T16:07:10.240 INFO:tasks.util.chacra:got chacra host 4.chacra.ceph.com, ref main, sha1 a971fd5f5719038c70b817bafacd6d5400b1d888 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T16:07:10.241 INFO:tasks.cephadm:Discovered cachra url: https://4.chacra.ceph.com/binaries/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/x86_64/flavors/default/cephadm 2024-04-14T16:07:10.242 DEBUG:teuthology.orchestra.run.smithi016:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-14T16:07:10.688 INFO:teuthology.orchestra.run.smithi016.stdout:-rw-r--r--. 1 ubuntu ubuntu 781494 Apr 14 16:07 /home/ubuntu/cephtest/cephadm 2024-04-14T16:07:10.689 DEBUG:teuthology.orchestra.run.smithi027:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-14T16:07:11.144 INFO:teuthology.orchestra.run.smithi027.stdout:-rw-r--r--. 1 ubuntu ubuntu 781494 Apr 14 16:07 /home/ubuntu/cephtest/cephadm 2024-04-14T16:07:11.145 DEBUG:teuthology.orchestra.run.smithi122:> curl --silent -L https://4.chacra.ceph.com/binaries/ceph/main/a971fd5f5719038c70b817bafacd6d5400b1d888/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-14T16:07:11.751 INFO:teuthology.orchestra.run.smithi122.stdout:-rw-r--r--. 1 ubuntu ubuntu 781494 Apr 14 16:07 /home/ubuntu/cephtest/cephadm 2024-04-14T16:07:11.752 DEBUG:teuthology.orchestra.run.smithi016:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-14T16:07:11.770 DEBUG:teuthology.orchestra.run.smithi027:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-14T16:07:11.790 DEBUG:teuthology.orchestra.run.smithi122:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-14T16:07:11.820 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 on all hosts... 2024-04-14T16:07:11.820 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 pull 2024-04-14T16:07:11.822 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 pull 2024-04-14T16:07:11.832 DEBUG:teuthology.orchestra.run.smithi122:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 pull 2024-04-14T16:07:12.676 INFO:teuthology.orchestra.run.smithi016.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888... 2024-04-14T16:07:12.698 INFO:teuthology.orchestra.run.smithi122.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888... 2024-04-14T16:07:12.811 INFO:teuthology.orchestra.run.smithi027.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888... 2024-04-14T16:07:51.597 INFO:teuthology.orchestra.run.smithi027.stdout:{ 2024-04-14T16:07:51.597 INFO:teuthology.orchestra.run.smithi027.stdout: "ceph_version": "ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev)", 2024-04-14T16:07:51.597 INFO:teuthology.orchestra.run.smithi027.stdout: "image_id": "b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53", 2024-04-14T16:07:51.597 INFO:teuthology.orchestra.run.smithi027.stdout: "repo_digests": [ 2024-04-14T16:07:51.597 INFO:teuthology.orchestra.run.smithi027.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608" 2024-04-14T16:07:51.598 INFO:teuthology.orchestra.run.smithi027.stdout: ] 2024-04-14T16:07:51.598 INFO:teuthology.orchestra.run.smithi027.stdout:} 2024-04-14T16:08:15.680 INFO:teuthology.orchestra.run.smithi016.stdout:{ 2024-04-14T16:08:15.681 INFO:teuthology.orchestra.run.smithi016.stdout: "ceph_version": "ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev)", 2024-04-14T16:08:15.681 INFO:teuthology.orchestra.run.smithi016.stdout: "image_id": "b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53", 2024-04-14T16:08:15.681 INFO:teuthology.orchestra.run.smithi016.stdout: "repo_digests": [ 2024-04-14T16:08:15.681 INFO:teuthology.orchestra.run.smithi016.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608" 2024-04-14T16:08:15.681 INFO:teuthology.orchestra.run.smithi016.stdout: ] 2024-04-14T16:08:15.681 INFO:teuthology.orchestra.run.smithi016.stdout:} 2024-04-14T16:08:16.622 INFO:teuthology.orchestra.run.smithi122.stdout:{ 2024-04-14T16:08:16.622 INFO:teuthology.orchestra.run.smithi122.stdout: "ceph_version": "ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev)", 2024-04-14T16:08:16.622 INFO:teuthology.orchestra.run.smithi122.stdout: "image_id": "b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53", 2024-04-14T16:08:16.622 INFO:teuthology.orchestra.run.smithi122.stdout: "repo_digests": [ 2024-04-14T16:08:16.622 INFO:teuthology.orchestra.run.smithi122.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608" 2024-04-14T16:08:16.622 INFO:teuthology.orchestra.run.smithi122.stdout: ] 2024-04-14T16:08:16.622 INFO:teuthology.orchestra.run.smithi122.stdout:} 2024-04-14T16:08:16.646 DEBUG:teuthology.orchestra.run.smithi016:> sudo mkdir -p /etc/ceph 2024-04-14T16:08:16.681 DEBUG:teuthology.orchestra.run.smithi027:> sudo mkdir -p /etc/ceph 2024-04-14T16:08:16.721 DEBUG:teuthology.orchestra.run.smithi122:> sudo mkdir -p /etc/ceph 2024-04-14T16:08:16.750 DEBUG:teuthology.orchestra.run.smithi016:> sudo chmod 777 /etc/ceph 2024-04-14T16:08:16.781 DEBUG:teuthology.orchestra.run.smithi027:> sudo chmod 777 /etc/ceph 2024-04-14T16:08:16.817 DEBUG:teuthology.orchestra.run.smithi122:> sudo chmod 777 /etc/ceph 2024-04-14T16:08:16.843 INFO:tasks.cephadm:Writing seed config... 2024-04-14T16:08:16.844 INFO:tasks.cephadm: override: [global] mon election default strategy = 3 2024-04-14T16:08:16.844 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-04-14T16:08:16.845 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-04-14T16:08:16.845 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-04-14T16:08:16.845 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-04-14T16:08:16.845 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-04-14T16:08:16.845 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-04-14T16:08:16.845 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-04-14T16:08:16.845 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-04-14T16:08:16.846 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T16:08:16.846 DEBUG:teuthology.orchestra.run.smithi016:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-04-14T16:08:16.863 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 0c4012e2-fa79-11ee-bc8e-c7b262605968 mon election default strategy = 3 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = true bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 mgr/cephadm/use_agent = False [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-04-14T16:08:16.864 DEBUG:teuthology.orchestra.run.smithi016:mon.a> sudo journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.a.service 2024-04-14T16:08:16.906 DEBUG:teuthology.orchestra.run.smithi016:mgr.a> sudo journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mgr.a.service 2024-04-14T16:08:16.949 INFO:tasks.cephadm:Bootstrapping... 2024-04-14T16:08:16.950 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 -v bootstrap --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.16 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-04-14T16:08:17.154 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------------------------------------------------------------------- 2024-04-14T16:08:17.154 INFO:teuthology.orchestra.run.smithi016.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888', '-v', 'bootstrap', '--fsid', '0c4012e2-fa79-11ee-bc8e-c7b262605968', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-id', 'a', '--mgr-id', 'a', '--orphan-initial-daemons', '--skip-monitoring-stack', '--mon-ip', '172.21.15.16', '--skip-admin-label'] 2024-04-14T16:08:17.155 INFO:teuthology.orchestra.run.smithi016.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-04-14T16:08:17.155 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying podman|docker is present... 2024-04-14T16:08:17.179 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-14T16:08:17.179 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying lvm2 is present... 2024-04-14T16:08:17.180 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying time synchronization is in place... 2024-04-14T16:08:17.187 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-14T16:08:17.187 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-14T16:08:17.193 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-14T16:08:17.193 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-14T16:08:17.199 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout enabled 2024-04-14T16:08:17.205 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout active 2024-04-14T16:08:17.205 INFO:teuthology.orchestra.run.smithi016.stdout:Unit chronyd.service is enabled and running 2024-04-14T16:08:17.205 INFO:teuthology.orchestra.run.smithi016.stdout:Repeating the final host check... 2024-04-14T16:08:17.228 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-14T16:08:17.228 INFO:teuthology.orchestra.run.smithi016.stdout:podman (/bin/podman) version 4.9.4 is present 2024-04-14T16:08:17.228 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl is present 2024-04-14T16:08:17.228 INFO:teuthology.orchestra.run.smithi016.stdout:lvcreate is present 2024-04-14T16:08:17.234 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-14T16:08:17.234 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-14T16:08:17.240 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-14T16:08:17.240 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-14T16:08:17.246 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout enabled 2024-04-14T16:08:17.252 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout active 2024-04-14T16:08:17.252 INFO:teuthology.orchestra.run.smithi016.stdout:Unit chronyd.service is enabled and running 2024-04-14T16:08:17.252 INFO:teuthology.orchestra.run.smithi016.stdout:Host looks OK 2024-04-14T16:08:17.252 INFO:teuthology.orchestra.run.smithi016.stdout:Cluster fsid: 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:08:17.253 INFO:teuthology.orchestra.run.smithi016.stdout:Acquiring lock 140659659215536 on /run/cephadm/0c4012e2-fa79-11ee-bc8e-c7b262605968.lock 2024-04-14T16:08:17.253 INFO:teuthology.orchestra.run.smithi016.stdout:Lock 140659659215536 acquired on /run/cephadm/0c4012e2-fa79-11ee-bc8e-c7b262605968.lock 2024-04-14T16:08:17.253 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying IP 172.21.15.16 port 3300 ... 2024-04-14T16:08:17.253 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying IP 172.21.15.16 port 6789 ... 2024-04-14T16:08:17.253 INFO:teuthology.orchestra.run.smithi016.stdout:Base mon IP(s) is [172.21.15.16:3300, 172.21.15.16:6789], mon addrv is [v2:172.21.15.16:3300,v1:172.21.15.16:6789] 2024-04-14T16:08:17.256 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.16 metric 100 2024-04-14T16:08:17.256 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.16 metric 100 2024-04-14T16:08:17.259 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-04-14T16:08:17.259 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 1024 pref medium 2024-04-14T16:08:17.259 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 100 pref medium 2024-04-14T16:08:17.261 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-04-14T16:08:17.261 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-04-14T16:08:17.261 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-14T16:08:17.261 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-04-14T16:08:17.261 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:1564/64 scope link noprefixroute 2024-04-14T16:08:17.261 INFO:teuthology.orchestra.run.smithi016.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-14T16:08:17.262 INFO:teuthology.orchestra.run.smithi016.stdout:Mon IP `172.21.15.16` is in CIDR network `172.21.0.0/20` 2024-04-14T16:08:17.262 INFO:teuthology.orchestra.run.smithi016.stdout:Mon IP `172.21.15.16` is in CIDR network `172.21.0.0/20` 2024-04-14T16:08:17.262 INFO:teuthology.orchestra.run.smithi016.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-04-14T16:08:17.263 INFO:teuthology.orchestra.run.smithi016.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-04-14T16:08:17.263 INFO:teuthology.orchestra.run.smithi016.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888... 2024-04-14T16:08:17.708 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stdout b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53 2024-04-14T16:08:17.708 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888... 2024-04-14T16:08:17.708 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stderr Getting image source signatures 2024-04-14T16:08:17.708 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stderr Copying blob sha256:4a9a0f674f5d00de2fb0d6279a6376d7e805966559c8ffba59b1bc2aa8fd87e7 2024-04-14T16:08:17.709 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stderr Copying blob sha256:77070339c81bcb5c53bbbf3f31a47f7187e5393cb0e096452852a31192d97570 2024-04-14T16:08:17.709 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stderr Copying config sha256:b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53 2024-04-14T16:08:17.709 INFO:teuthology.orchestra.run.smithi016.stdout:/bin/podman: stderr Writing manifest to image destination 2024-04-14T16:08:18.621 INFO:teuthology.orchestra.run.smithi016.stdout:ceph: stdout ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev) 2024-04-14T16:08:18.622 INFO:teuthology.orchestra.run.smithi016.stdout:Ceph version: ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev) 2024-04-14T16:08:18.622 INFO:teuthology.orchestra.run.smithi016.stdout:Extracting ceph user uid/gid from container image... 2024-04-14T16:08:19.595 INFO:teuthology.orchestra.run.smithi016.stdout:stat: stdout 167 167 2024-04-14T16:08:19.595 INFO:teuthology.orchestra.run.smithi016.stdout:Creating initial keys... 2024-04-14T16:08:20.643 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-authtool: stdout AQBz/xtmyuGQOBAAzNJ/z7NrO7uGM8rxJRFrIQ== 2024-04-14T16:08:21.582 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-authtool: stdout AQB1/xtm5fM+ABAAhdU6xmIRtjnlL+6MoZLFtg== 2024-04-14T16:08:22.628 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph-authtool: stdout AQB1/xtmWMi8OBAAdCmvW9AiFebfbbV3KzhAwQ== 2024-04-14T16:08:22.629 INFO:teuthology.orchestra.run.smithi016.stdout:Creating initial monmap... 2024-04-14T16:08:23.619 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-14T16:08:23.619 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-04-14T16:08:23.619 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:08:23.619 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-14T16:08:23.619 INFO:teuthology.orchestra.run.smithi016.stdout:monmaptool for a [v2:172.21.15.16:3300,v1:172.21.15.16:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-14T16:08:23.619 INFO:teuthology.orchestra.run.smithi016.stdout:setting min_mon_release = quincy 2024-04-14T16:08:23.620 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: set fsid to 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:08:23.620 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-14T16:08:23.620 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:08:23.620 INFO:teuthology.orchestra.run.smithi016.stdout:Creating mon... 2024-04-14T16:08:24.583 INFO:teuthology.orchestra.run.smithi016.stdout:create mon.a on 2024-04-14T16:08:24.798 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-04-14T16:08:24.938 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-04-14T16:08:25.125 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968.target → /etc/systemd/system/ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968.target. 2024-04-14T16:08:25.125 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968.target → /etc/systemd/system/ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968.target. 2024-04-14T16:08:25.356 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.a 2024-04-14T16:08:25.356 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to reset failed state of unit ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.a.service: Unit ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.a.service not loaded. 2024-04-14T16:08:25.511 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968.target.wants/ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.a.service → /etc/systemd/system/ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@.service. 2024-04-14T16:08:26.064 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-14T16:08:26.064 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout disabled 2024-04-14T16:08:26.070 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-14T16:08:26.070 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-14T16:08:26.070 INFO:teuthology.orchestra.run.smithi016.stdout:firewalld.service is not enabled 2024-04-14T16:08:26.070 INFO:teuthology.orchestra.run.smithi016.stdout:Not possible to enable service . firewalld.service is not available 2024-04-14T16:08:26.071 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mon to start... 2024-04-14T16:08:26.071 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mon... 2024-04-14T16:08:27.095 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout cluster: 2024-04-14T16:08:27.095 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout id: 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:08:27.095 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-04-14T16:08:27.095 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-14T16:08:27.095 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout services: 2024-04-14T16:08:27.095 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.600148s) 2024-04-14T16:08:27.095 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-04-14T16:08:27.095 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-04-14T16:08:27.095 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-14T16:08:27.095 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout data: 2024-04-14T16:08:27.095 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-04-14T16:08:27.096 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-04-14T16:08:27.096 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-04-14T16:08:27.096 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout pgs: 2024-04-14T16:08:27.096 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-14T16:08:27.096 INFO:teuthology.orchestra.run.smithi016.stdout:mon is available 2024-04-14T16:08:27.096 INFO:teuthology.orchestra.run.smithi016.stdout:Assimilating anything we can from ceph.conf... 2024-04-14T16:08:28.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:27 smithi016 ceph-mon[29745]: from='client.? 172.21.15.16:0/2648458226' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-14T16:08:28.200 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-14T16:08:28.200 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [global] 2024-04-14T16:08:28.200 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout fsid = 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:08:28.200 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.16:3300,v1:172.21.15.16:6789] 2024-04-14T16:08:28.200 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-14T16:08:28.200 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-14T16:08:28.201 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-14T16:08:28.201 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-14T16:08:28.201 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-14T16:08:28.201 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-14T16:08:28.201 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-04-14T16:08:28.201 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-14T16:08:28.201 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-14T16:08:28.201 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [osd] 2024-04-14T16:08:28.201 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-14T16:08:28.201 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-14T16:08:28.201 INFO:teuthology.orchestra.run.smithi016.stdout:Generating new minimal ceph.conf... 2024-04-14T16:08:29.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:28 smithi016 ceph-mon[29745]: from='client.? 172.21.15.16:0/531577910' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:08:29.397 INFO:teuthology.orchestra.run.smithi016.stdout:Restarting the monitor... 2024-04-14T16:08:29.667 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:29 smithi016 systemd[1]: Stopping Ceph mon.a for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:08:29.939 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:29 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a[29722]: 2024-04-14T16:08:29.665+0000 7f16d66fd700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-04-14T16:08:29.939 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:29 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a[29722]: 2024-04-14T16:08:29.665+0000 7f16d66fd700 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-04-14T16:08:29.940 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:29 smithi016 podman[30080]: 2024-04-14 16:08:29.676306173 +0000 UTC m=+0.111587478 container died 6dc8e3d2be7fd11cf52243aeff29c64693f8eef47073e98262932cc7781e5c8e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240403, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-a971fd5, ceph=True, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=) 2024-04-14T16:08:30.280 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 podman[30080]: 2024-04-14 16:08:30.037345822 +0000 UTC m=+0.472627116 container cleanup 6dc8e3d2be7fd11cf52243aeff29c64693f8eef47073e98262932cc7781e5c8e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a, org.label-schema.license=GPLv2, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , RELEASE=main-a971fd5, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.build-date=20240403, io.buildah.version=1.33.5) 2024-04-14T16:08:30.280 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 bash[30080]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a 2024-04-14T16:08:30.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 podman[30099]: 2024-04-14 16:08:30.28005757 +0000 UTC m=+0.599517375 container remove 6dc8e3d2be7fd11cf52243aeff29c64693f8eef47073e98262932cc7781e5c8e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.build-date=20240403, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, ceph=True, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , GIT_CLEAN=True, RELEASE=main-a971fd5, org.label-schema.vendor=CentOS) 2024-04-14T16:08:30.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.a.service: Deactivated successfully. 2024-04-14T16:08:30.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 systemd[1]: Stopped Ceph mon.a for 0c4012e2-fa79-11ee-bc8e-c7b262605968. 2024-04-14T16:08:30.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 systemd[1]: Starting Ceph mon.a for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:08:30.875 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 podman[30199]: 2024-04-14 16:08:30.52682207 +0000 UTC m=+0.017632769 image pull b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T16:08:30.875 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 podman[30199]: 2024-04-14 16:08:30.640206884 +0000 UTC m=+0.131017583 container create 9bacf78c1313a07b0a7eb5727fbe6095dbfec50394005477ab105933e5312606 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a, ceph=True, RELEASE=main-a971fd5, GIT_CLEAN=True, io.buildah.version=1.33.5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240403, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-14T16:08:30.875 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 podman[30199]: 2024-04-14 16:08:30.842163805 +0000 UTC m=+0.332974504 container init 9bacf78c1313a07b0a7eb5727fbe6095dbfec50394005477ab105933e5312606 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a, GIT_CLEAN=True, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.vendor=CentOS, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240403, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-a971fd5, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0) 2024-04-14T16:08:30.875 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 podman[30199]: 2024-04-14 16:08:30.848018839 +0000 UTC m=+0.338829539 container start 9bacf78c1313a07b0a7eb5727fbe6095dbfec50394005477ab105933e5312606 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_CLEAN=True, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, RELEASE=main-a971fd5, org.label-schema.build-date=20240403, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-14T16:08:30.875 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: set uid:gid to 167:167 (ceph:ceph) 2024-04-14T16:08:30.875 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev), process ceph-mon, pid 7 2024-04-14T16:08:30.876 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: pidfile_write: ignore empty --pid-file 2024-04-14T16:08:30.876 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: load: jerasure load: lrc 2024-04-14T16:08:30.988 INFO:teuthology.orchestra.run.smithi016.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-04-14T16:08:31.202 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: RocksDB version: 7.9.2 2024-04-14T16:08:31.202 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Git sha 0 2024-04-14T16:08:31.202 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Compile date 2024-04-06 20:28:24 2024-04-14T16:08:31.202 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: DB SUMMARY 2024-04-14T16:08:31.202 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: DB Session ID: E6TNORNRTUEAQJA7P9H9 2024-04-14T16:08:31.203 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: CURRENT file: CURRENT 2024-04-14T16:08:31.203 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: IDENTITY file: IDENTITY 2024-04-14T16:08:31.203 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-04-14T16:08:31.203 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-04-14T16:08:31.203 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 89103 ; 2024-04-14T16:08:31.203 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.error_if_exists: 0 2024-04-14T16:08:31.203 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.create_if_missing: 0 2024-04-14T16:08:31.203 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.paranoid_checks: 1 2024-04-14T16:08:31.203 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.flush_verify_memtable_count: 1 2024-04-14T16:08:31.203 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-14T16:08:31.203 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-14T16:08:31.203 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.env: 0x560a7c61ec60 2024-04-14T16:08:31.203 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.fs: PosixFileSystem 2024-04-14T16:08:31.204 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.info_log: 0x560a7e1edbe0 2024-04-14T16:08:31.204 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_file_opening_threads: 16 2024-04-14T16:08:31.204 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.statistics: (nil) 2024-04-14T16:08:31.204 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.use_fsync: 0 2024-04-14T16:08:31.204 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_log_file_size: 0 2024-04-14T16:08:31.204 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-14T16:08:31.204 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.log_file_time_to_roll: 0 2024-04-14T16:08:31.204 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.keep_log_file_num: 1000 2024-04-14T16:08:31.204 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.recycle_log_file_num: 0 2024-04-14T16:08:31.204 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.allow_fallocate: 1 2024-04-14T16:08:31.204 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.allow_mmap_reads: 0 2024-04-14T16:08:31.204 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.allow_mmap_writes: 0 2024-04-14T16:08:31.204 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.use_direct_reads: 0 2024-04-14T16:08:31.205 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-14T16:08:31.205 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.create_missing_column_families: 0 2024-04-14T16:08:31.205 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.db_log_dir: 2024-04-14T16:08:31.205 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.wal_dir: 2024-04-14T16:08:31.205 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.table_cache_numshardbits: 6 2024-04-14T16:08:31.205 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.WAL_ttl_seconds: 0 2024-04-14T16:08:31.205 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.WAL_size_limit_MB: 0 2024-04-14T16:08:31.206 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-14T16:08:31.206 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-14T16:08:31.206 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.is_fd_close_on_exec: 1 2024-04-14T16:08:31.206 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.advise_random_on_open: 1 2024-04-14T16:08:31.206 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.db_write_buffer_size: 0 2024-04-14T16:08:31.206 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.write_buffer_manager: 0x560a7e1be1e0 2024-04-14T16:08:31.206 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-14T16:08:31.206 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-14T16:08:31.206 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.use_adaptive_mutex: 0 2024-04-14T16:08:31.206 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.rate_limiter: (nil) 2024-04-14T16:08:31.206 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-14T16:08:31.206 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.wal_recovery_mode: 2 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.enable_thread_tracking: 0 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.enable_pipelined_write: 0 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.unordered_write: 0 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.row_cache: None 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.wal_filter: None 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.allow_ingest_behind: 0 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.two_write_queues: 0 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.manual_wal_flush: 0 2024-04-14T16:08:31.207 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.wal_compression: 0 2024-04-14T16:08:31.208 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.atomic_flush: 0 2024-04-14T16:08:31.208 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-14T16:08:31.208 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.persist_stats_to_disk: 0 2024-04-14T16:08:31.208 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.write_dbid_to_manifest: 0 2024-04-14T16:08:31.208 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.log_readahead_size: 0 2024-04-14T16:08:31.208 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-14T16:08:31.208 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.best_efforts_recovery: 0 2024-04-14T16:08:31.208 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-14T16:08:31.208 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-14T16:08:31.208 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.allow_data_in_errors: 0 2024-04-14T16:08:31.209 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.db_host_id: __hostname__ 2024-04-14T16:08:31.209 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.enforce_single_del_contracts: true 2024-04-14T16:08:31.209 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_background_jobs: 2 2024-04-14T16:08:31.209 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_background_compactions: -1 2024-04-14T16:08:31.209 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_subcompactions: 1 2024-04-14T16:08:31.210 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-14T16:08:31.210 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-14T16:08:31.210 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.delayed_write_rate : 16777216 2024-04-14T16:08:31.210 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_total_wal_size: 0 2024-04-14T16:08:31.210 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-14T16:08:31.211 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.stats_dump_period_sec: 600 2024-04-14T16:08:31.211 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.stats_persist_period_sec: 600 2024-04-14T16:08:31.211 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-14T16:08:31.211 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_open_files: -1 2024-04-14T16:08:31.211 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.bytes_per_sync: 0 2024-04-14T16:08:31.211 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.wal_bytes_per_sync: 0 2024-04-14T16:08:31.211 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.strict_bytes_per_sync: 0 2024-04-14T16:08:31.211 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compaction_readahead_size: 0 2024-04-14T16:08:31.211 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_background_flushes: -1 2024-04-14T16:08:31.211 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Compression algorithms supported: 2024-04-14T16:08:31.212 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-14T16:08:31.212 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: kZSTD supported: 0 2024-04-14T16:08:31.212 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: kXpressCompression supported: 0 2024-04-14T16:08:31.212 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: kLZ4HCCompression supported: 1 2024-04-14T16:08:31.212 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: kZlibCompression supported: 1 2024-04-14T16:08:31.212 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: kSnappyCompression supported: 1 2024-04-14T16:08:31.212 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: kLZ4Compression supported: 1 2024-04-14T16:08:31.212 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: kBZip2Compression supported: 0 2024-04-14T16:08:31.212 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Fast CRC32 supported: Supported on x86 2024-04-14T16:08:31.212 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: DMutex implementation: pthread_mutex_t 2024-04-14T16:08:31.212 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.merge_operator: 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compaction_filter: None 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compaction_filter_factory: None 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.sst_partitioner_factory: None 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.memtable_factory: SkipListFactory 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.table_factory: BlockBasedTable 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x560a7e1eddc0) 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout: cache_index_and_filter_blocks: 1 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout: pin_top_level_index_and_filter: 1 2024-04-14T16:08:31.213 INFO:journalctl@ceph.mon.a.smithi016.stdout: index_type: 0 2024-04-14T16:08:31.214 INFO:journalctl@ceph.mon.a.smithi016.stdout: data_block_index_type: 0 2024-04-14T16:08:31.214 INFO:journalctl@ceph.mon.a.smithi016.stdout: index_shortening: 1 2024-04-14T16:08:31.214 INFO:journalctl@ceph.mon.a.smithi016.stdout: data_block_hash_table_util_ratio: 0.750000 2024-04-14T16:08:31.214 INFO:journalctl@ceph.mon.a.smithi016.stdout: checksum: 4 2024-04-14T16:08:31.214 INFO:journalctl@ceph.mon.a.smithi016.stdout: no_block_cache: 0 2024-04-14T16:08:31.214 INFO:journalctl@ceph.mon.a.smithi016.stdout: block_cache: 0x560a7e1f1090 2024-04-14T16:08:31.214 INFO:journalctl@ceph.mon.a.smithi016.stdout: block_cache_name: BinnedLRUCache 2024-04-14T16:08:31.214 INFO:journalctl@ceph.mon.a.smithi016.stdout: block_cache_options: 2024-04-14T16:08:31.214 INFO:journalctl@ceph.mon.a.smithi016.stdout: capacity : 536870912 2024-04-14T16:08:31.214 INFO:journalctl@ceph.mon.a.smithi016.stdout: num_shard_bits : 4 2024-04-14T16:08:31.215 INFO:journalctl@ceph.mon.a.smithi016.stdout: strict_capacity_limit : 0 2024-04-14T16:08:31.215 INFO:journalctl@ceph.mon.a.smithi016.stdout: high_pri_pool_ratio: 0.000 2024-04-14T16:08:31.215 INFO:journalctl@ceph.mon.a.smithi016.stdout: block_cache_compressed: (nil) 2024-04-14T16:08:31.215 INFO:journalctl@ceph.mon.a.smithi016.stdout: persistent_cache: (nil) 2024-04-14T16:08:31.215 INFO:journalctl@ceph.mon.a.smithi016.stdout: block_size: 4096 2024-04-14T16:08:31.215 INFO:journalctl@ceph.mon.a.smithi016.stdout: block_size_deviation: 10 2024-04-14T16:08:31.215 INFO:journalctl@ceph.mon.a.smithi016.stdout: block_restart_interval: 16 2024-04-14T16:08:31.215 INFO:journalctl@ceph.mon.a.smithi016.stdout: index_block_restart_interval: 1 2024-04-14T16:08:31.215 INFO:journalctl@ceph.mon.a.smithi016.stdout: metadata_block_size: 4096 2024-04-14T16:08:31.215 INFO:journalctl@ceph.mon.a.smithi016.stdout: partition_filters: 0 2024-04-14T16:08:31.215 INFO:journalctl@ceph.mon.a.smithi016.stdout: use_delta_encoding: 1 2024-04-14T16:08:31.216 INFO:journalctl@ceph.mon.a.smithi016.stdout: filter_policy: bloomfilter 2024-04-14T16:08:31.216 INFO:journalctl@ceph.mon.a.smithi016.stdout: whole_key_filtering: 1 2024-04-14T16:08:31.216 INFO:journalctl@ceph.mon.a.smithi016.stdout: verify_compression: 0 2024-04-14T16:08:31.216 INFO:journalctl@ceph.mon.a.smithi016.stdout: read_amp_bytes_per_bit: 0 2024-04-14T16:08:31.216 INFO:journalctl@ceph.mon.a.smithi016.stdout: format_version: 5 2024-04-14T16:08:31.216 INFO:journalctl@ceph.mon.a.smithi016.stdout: enable_index_compression: 1 2024-04-14T16:08:31.216 INFO:journalctl@ceph.mon.a.smithi016.stdout: block_align: 0 2024-04-14T16:08:31.216 INFO:journalctl@ceph.mon.a.smithi016.stdout: max_auto_readahead_size: 262144 2024-04-14T16:08:31.216 INFO:journalctl@ceph.mon.a.smithi016.stdout: prepopulate_block_cache: 0 2024-04-14T16:08:31.216 INFO:journalctl@ceph.mon.a.smithi016.stdout: initial_auto_readahead_size: 8192 2024-04-14T16:08:31.216 INFO:journalctl@ceph.mon.a.smithi016.stdout: num_file_reads_for_auto_readahead: 2 2024-04-14T16:08:31.216 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.write_buffer_size: 33554432 2024-04-14T16:08:31.216 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_write_buffer_number: 2 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compression: NoCompression 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.bottommost_compression: Disabled 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.prefix_extractor: nullptr 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.num_levels: 7 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-14T16:08:31.217 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-14T16:08:31.218 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-14T16:08:31.218 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-14T16:08:31.218 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compression_opts.window_bits: -14 2024-04-14T16:08:31.218 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compression_opts.level: 32767 2024-04-14T16:08:31.218 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compression_opts.strategy: 0 2024-04-14T16:08:31.218 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-14T16:08:31.218 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-14T16:08:31.218 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compression_opts.enabled: false 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.target_file_size_base: 67108864 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.target_file_size_multiplier: 1 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-14T16:08:31.219 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.arena_block_size: 1048576 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.disable_auto_compactions: 0 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-14T16:08:31.220 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-14T16:08:31.221 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-14T16:08:31.221 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-14T16:08:31.221 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-14T16:08:31.221 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-14T16:08:31.221 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-14T16:08:31.221 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-14T16:08:31.221 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-14T16:08:31.221 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-14T16:08:31.221 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.inplace_update_support: 0 2024-04-14T16:08:31.221 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.inplace_update_num_locks: 10000 2024-04-14T16:08:31.221 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-14T16:08:31.222 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-14T16:08:31.222 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.memtable_huge_page_size: 0 2024-04-14T16:08:31.222 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.bloom_locality: 0 2024-04-14T16:08:31.222 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.max_successive_merges: 0 2024-04-14T16:08:31.222 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.optimize_filters_for_hits: 0 2024-04-14T16:08:31.222 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.paranoid_file_checks: 0 2024-04-14T16:08:31.222 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.force_consistency_checks: 1 2024-04-14T16:08:31.222 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.report_bg_io_stats: 0 2024-04-14T16:08:31.222 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.ttl: 2592000 2024-04-14T16:08:31.222 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.periodic_compaction_seconds: 0 2024-04-14T16:08:31.222 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-14T16:08:31.222 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-14T16:08:31.223 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.enable_blob_files: false 2024-04-14T16:08:31.223 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.min_blob_size: 0 2024-04-14T16:08:31.223 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.blob_file_size: 268435456 2024-04-14T16:08:31.223 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.blob_compression_type: NoCompression 2024-04-14T16:08:31.223 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.enable_blob_garbage_collection: false 2024-04-14T16:08:31.223 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-14T16:08:31.223 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-14T16:08:31.223 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-14T16:08:31.223 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.blob_file_starting_level: 0 2024-04-14T16:08:31.223 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-14T16:08:31.223 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-04-14T16:08:31.223 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-04-14T16:08:31.223 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 3921e53b-568b-475a-ae98-2a59ba518a3f 2024-04-14T16:08:31.224 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713110910876923, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-04-14T16:08:31.224 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-04-14T16:08:31.224 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713110910877755, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85720, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 258, "table_properties": {"data_size": 83867, "index_size": 237, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 10201, "raw_average_key_size": 47, "raw_value_size": 78074, "raw_average_value_size": 359, "num_data_blocks": 11, "num_entries": 217, "num_filter_entries": 217, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1713110910, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "3921e53b-568b-475a-ae98-2a59ba518a3f", "db_session_id": "E6TNORNRTUEAQJA7P9H9", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-04-14T16:08:31.224 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713110910877836, "job": 1, "event": "recovery_finished"} 2024-04-14T16:08:31.224 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-04-14T16:08:31.224 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-14T16:08:31.224 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x560a7e2e0000 2024-04-14T16:08:31.224 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: DB pointer 0x560a7e2ca000 2024-04-14T16:08:31.224 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-14T16:08:31.224 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-14T16:08:31.225 INFO:journalctl@ceph.mon.a.smithi016.stdout: ** DB Stats ** 2024-04-14T16:08:31.225 INFO:journalctl@ceph.mon.a.smithi016.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-14T16:08:31.225 INFO:journalctl@ceph.mon.a.smithi016.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-14T16:08:31.225 INFO:journalctl@ceph.mon.a.smithi016.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-14T16:08:31.225 INFO:journalctl@ceph.mon.a.smithi016.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-14T16:08:31.225 INFO:journalctl@ceph.mon.a.smithi016.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-14T16:08:31.225 INFO:journalctl@ceph.mon.a.smithi016.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-14T16:08:31.225 INFO:journalctl@ceph.mon.a.smithi016.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-14T16:08:31.225 INFO:journalctl@ceph.mon.a.smithi016.stdout: 2024-04-14T16:08:31.225 INFO:journalctl@ceph.mon.a.smithi016.stdout: ** Compaction Stats [default] ** 2024-04-14T16:08:31.225 INFO:journalctl@ceph.mon.a.smithi016.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-14T16:08:31.225 INFO:journalctl@ceph.mon.a.smithi016.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-14T16:08:31.226 INFO:journalctl@ceph.mon.a.smithi016.stdout: L0 2/0 85.57 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 155.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-14T16:08:31.226 INFO:journalctl@ceph.mon.a.smithi016.stdout: Sum 2/0 85.57 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 155.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-14T16:08:31.226 INFO:journalctl@ceph.mon.a.smithi016.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 155.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-14T16:08:31.226 INFO:journalctl@ceph.mon.a.smithi016.stdout: 2024-04-14T16:08:31.226 INFO:journalctl@ceph.mon.a.smithi016.stdout: ** Compaction Stats [default] ** 2024-04-14T16:08:31.226 INFO:journalctl@ceph.mon.a.smithi016.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-14T16:08:31.226 INFO:journalctl@ceph.mon.a.smithi016.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-14T16:08:31.226 INFO:journalctl@ceph.mon.a.smithi016.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 155.7 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-14T16:08:31.226 INFO:journalctl@ceph.mon.a.smithi016.stdout: 2024-04-14T16:08:31.226 INFO:journalctl@ceph.mon.a.smithi016.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-14T16:08:31.226 INFO:journalctl@ceph.mon.a.smithi016.stdout: 2024-04-14T16:08:31.226 INFO:journalctl@ceph.mon.a.smithi016.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-14T16:08:31.226 INFO:journalctl@ceph.mon.a.smithi016.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout: AddFile(Keys): cumulative 0, interval 0 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout: Cumulative compaction: 0.00 GB write, 28.50 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout: Interval compaction: 0.00 GB write, 28.50 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout: Block cache BinnedLRUCache@0x560a7e1f1090#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.42 KB,8.04663e-05%) Misc(1,0.00 KB,0%) 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout: 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout: ** File Read Latency Histogram By Level [default] ** 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: starting mon.a rank 0 at public addrs [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] at bind addrs [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: mon.a@-1(???) e1 preinit fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:08:31.227 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: mon.a@-1(???).mds e1 new map 2024-04-14T16:08:31.228 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: mon.a@-1(???).mds e1 print_map 2024-04-14T16:08:31.228 INFO:journalctl@ceph.mon.a.smithi016.stdout: e1 2024-04-14T16:08:31.228 INFO:journalctl@ceph.mon.a.smithi016.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-04-14T16:08:31.228 INFO:journalctl@ceph.mon.a.smithi016.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-04-14T16:08:31.228 INFO:journalctl@ceph.mon.a.smithi016.stdout: legacy client fscid: -1 2024-04-14T16:08:31.228 INFO:journalctl@ceph.mon.a.smithi016.stdout: 2024-04-14T16:08:31.228 INFO:journalctl@ceph.mon.a.smithi016.stdout: No filesystems configured 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: mon.a is new leader, mons a in quorum (ranks 0) 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: monmap epoch 1 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: last_changed 2024-04-14T16:08:23.046866+0000 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: created 2024-04-14T16:08:23.046866+0000 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: min_mon_release 19 (squid) 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: election_strategy: 1 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-14T16:08:31.229 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: fsmap 2024-04-14T16:08:31.230 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: osdmap e1: 0 total, 0 up, 0 in 2024-04-14T16:08:31.230 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 ceph-mon[30237]: mgrmap e1: no daemons active 2024-04-14T16:08:31.230 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 bash[30199]: 9bacf78c1313a07b0a7eb5727fbe6095dbfec50394005477ab105933e5312606 2024-04-14T16:08:31.230 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:30 smithi016 systemd[1]: Started Ceph mon.a for 0c4012e2-fa79-11ee-bc8e-c7b262605968. 2024-04-14T16:08:31.976 INFO:teuthology.orchestra.run.smithi016.stdout:Wrote config to /etc/ceph/ceph.conf 2024-04-14T16:08:31.989 INFO:teuthology.orchestra.run.smithi016.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-04-14T16:08:31.989 INFO:teuthology.orchestra.run.smithi016.stdout:Creating mgr... 2024-04-14T16:08:31.990 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying port 0.0.0.0:9283 ... 2024-04-14T16:08:31.990 INFO:teuthology.orchestra.run.smithi016.stdout:Verifying port 0.0.0.0:8765 ... 2024-04-14T16:08:32.221 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mgr.a 2024-04-14T16:08:32.221 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Failed to reset failed state of unit ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mgr.a.service: Unit ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mgr.a.service not loaded. 2024-04-14T16:08:32.370 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968.target.wants/ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mgr.a.service → /etc/systemd/system/ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@.service. 2024-04-14T16:08:32.513 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:32 smithi016 systemd[1]: Starting Ceph mgr.a for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:08:32.810 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:32 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/3018498868' entity='client.admin' 2024-04-14T16:08:32.811 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:32 smithi016 podman[30478]: 2024-04-14 16:08:32.591605661 +0000 UTC m=+0.104657374 container create 73a11f7db90dff5d62f90333929f790dcd4263c0f9b240de4a99f481e105f52d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240403, RELEASE=main-a971fd5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, maintainer=Guillaume Abrioux , GIT_CLEAN=True) 2024-04-14T16:08:32.811 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:32 smithi016 podman[30478]: 2024-04-14 16:08:32.504576057 +0000 UTC m=+0.017627774 image pull b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 2024-04-14T16:08:32.811 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:32 smithi016 podman[30478]: 2024-04-14 16:08:32.810385166 +0000 UTC m=+0.323436881 container init 73a11f7db90dff5d62f90333929f790dcd4263c0f9b240de4a99f481e105f52d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , RELEASE=main-a971fd5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_BRANCH=HEAD, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.license=GPLv2, org.label-schema.build-date=20240403, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5) 2024-04-14T16:08:32.932 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-14T16:08:32.932 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout disabled 2024-04-14T16:08:32.939 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-14T16:08:32.939 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-14T16:08:32.939 INFO:teuthology.orchestra.run.smithi016.stdout:firewalld.service is not enabled 2024-04-14T16:08:32.939 INFO:teuthology.orchestra.run.smithi016.stdout:Not possible to enable service . firewalld.service is not available 2024-04-14T16:08:32.947 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-14T16:08:32.947 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout disabled 2024-04-14T16:08:32.954 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-14T16:08:32.954 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-14T16:08:32.954 INFO:teuthology.orchestra.run.smithi016.stdout:firewalld.service is not enabled 2024-04-14T16:08:32.955 INFO:teuthology.orchestra.run.smithi016.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-04-14T16:08:32.955 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mgr to start... 2024-04-14T16:08:32.955 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mgr... 2024-04-14T16:08:33.062 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:32 smithi016 podman[30478]: 2024-04-14 16:08:32.815509262 +0000 UTC m=+0.328560986 container start 73a11f7db90dff5d62f90333929f790dcd4263c0f9b240de4a99f481e105f52d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240403, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, RELEASE=main-a971fd5, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux ) 2024-04-14T16:08:33.062 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:32 smithi016 bash[30478]: 73a11f7db90dff5d62f90333929f790dcd4263c0f9b240de4a99f481e105f52d 2024-04-14T16:08:33.062 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:32 smithi016 systemd[1]: Started Ceph mgr.a for 0c4012e2-fa79-11ee-bc8e-c7b262605968. 2024-04-14T16:08:33.708 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:33 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1470796396' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-14T16:08:33.709 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:33 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:33.384+0000 7f9cbf8f6200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-14T16:08:33.709 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:33 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:33.482+0000 7f9cbf8f6200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-14T16:08:33.963 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-14T16:08:33.963 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-14T16:08:33.963 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsid": "0c4012e2-fa79-11ee-bc8e-c7b262605968", 2024-04-14T16:08:33.963 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "health": { 2024-04-14T16:08:33.963 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-14T16:08:33.963 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-14T16:08:33.963 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-14T16:08:33.963 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:33.963 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 0 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "a" 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:33.964 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-14T16:08:33.965 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "restful" 2024-04-14T16:08:33.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-14T16:08:33.967 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T16:08:33.967 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:33.967 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-14T16:08:33.967 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:33.967 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modified": "2024-04-14T16:08:25.988073+0000", 2024-04-14T16:08:33.967 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T16:08:33.967 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:33.967 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-14T16:08:33.967 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-14T16:08:33.967 INFO:teuthology.orchestra.run.smithi016.stdout:mgr not available, waiting (1/15)... 2024-04-14T16:08:34.492 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:34 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:34.157+0000 7f9cbf8f6200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-14T16:08:34.492 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:34 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:34.251+0000 7f9cbf8f6200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-14T16:08:34.493 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:34 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:34.394+0000 7f9cbf8f6200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-14T16:08:34.493 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:34 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:34.491+0000 7f9cbf8f6200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-14T16:08:34.855 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:34 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:34.576+0000 7f9cbf8f6200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-14T16:08:34.855 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:34 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:34.854+0000 7f9cbf8f6200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-14T16:08:35.121 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:34 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:34.965+0000 7f9cbf8f6200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-14T16:08:35.121 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:35 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:35.053+0000 7f9cbf8f6200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-14T16:08:35.621 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:35 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:35.150+0000 7f9cbf8f6200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-14T16:08:35.621 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:35 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:35.342+0000 7f9cbf8f6200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-14T16:08:36.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:36 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1766664117' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-14T16:08:36.622 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:36 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:36.350+0000 7f9cbf8f6200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-14T16:08:36.622 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:36 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:36.486+0000 7f9cbf8f6200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-14T16:08:37.098 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:36 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:36.831+0000 7f9cbf8f6200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-14T16:08:37.098 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:36 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:36.922+0000 7f9cbf8f6200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-14T16:08:37.103 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-14T16:08:37.103 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-14T16:08:37.103 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsid": "0c4012e2-fa79-11ee-bc8e-c7b262605968", 2024-04-14T16:08:37.103 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "health": { 2024-04-14T16:08:37.103 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-14T16:08:37.103 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-14T16:08:37.103 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-14T16:08:37.103 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 0 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "a" 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-14T16:08:37.104 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:37.105 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-14T16:08:37.105 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-14T16:08:37.105 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-14T16:08:37.105 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-14T16:08:37.105 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-14T16:08:37.105 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-14T16:08:37.108 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:37.108 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-14T16:08:37.108 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-14T16:08:37.108 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-14T16:08:37.108 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-14T16:08:37.108 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-14T16:08:37.108 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-14T16:08:37.109 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "restful" 2024-04-14T16:08:37.110 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-14T16:08:37.110 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T16:08:37.110 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:37.110 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-14T16:08:37.110 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:37.110 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modified": "2024-04-14T16:08:25.988073+0000", 2024-04-14T16:08:37.110 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T16:08:37.110 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:37.110 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-14T16:08:37.110 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-14T16:08:37.110 INFO:teuthology.orchestra.run.smithi016.stdout:mgr not available, waiting (2/15)... 2024-04-14T16:08:37.371 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:37 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:37.124+0000 7f9cbf8f6200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-14T16:08:37.371 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:37 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:37.311+0000 7f9cbf8f6200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-14T16:08:37.862 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:37 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:37.600+0000 7f9cbf8f6200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-14T16:08:37.862 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:37 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:37.861+0000 7f9cbf8f6200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-14T16:08:38.121 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:38 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:38.105+0000 7f9cbf8f6200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-14T16:08:39.121 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:38 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:38.939+0000 7f9cbf8f6200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-14T16:08:39.868 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:39 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/4211166938' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-14T16:08:39.868 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:39 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:39.533+0000 7f9cbf8f6200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-14T16:08:39.868 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:39 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:39.637+0000 7f9cbf8f6200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-14T16:08:39.869 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:39 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:39.867+0000 7f9cbf8f6200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-14T16:08:41.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:40 smithi016 ceph-mon[30237]: Activating manager daemon a 2024-04-14T16:08:41.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:40 smithi016 ceph-mon[30237]: mgrmap e2: a(active, starting, since 0.00297302s) 2024-04-14T16:08:41.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:40 smithi016 ceph-mon[30237]: from='mgr.14100 172.21.15.16:0/3193769898' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-14T16:08:41.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:40 smithi016 ceph-mon[30237]: from='mgr.14100 172.21.15.16:0/3193769898' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-14T16:08:41.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:40 smithi016 ceph-mon[30237]: from='mgr.14100 172.21.15.16:0/3193769898' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-14T16:08:41.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:40 smithi016 ceph-mon[30237]: from='mgr.14100 172.21.15.16:0/3193769898' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:08:41.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:40 smithi016 ceph-mon[30237]: from='mgr.14100 172.21.15.16:0/3193769898' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-14T16:08:41.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:40 smithi016 ceph-mon[30237]: Manager daemon a is now available 2024-04-14T16:08:41.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:40 smithi016 ceph-mon[30237]: from='mgr.14100 172.21.15.16:0/3193769898' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-14T16:08:41.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:40 smithi016 ceph-mon[30237]: from='mgr.14100 172.21.15.16:0/3193769898' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-14T16:08:41.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:40 smithi016 ceph-mon[30237]: from='mgr.14100 172.21.15.16:0/3193769898' entity='mgr.a' 2024-04-14T16:08:41.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:40 smithi016 ceph-mon[30237]: from='mgr.14100 172.21.15.16:0/3193769898' entity='mgr.a' 2024-04-14T16:08:41.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:40 smithi016 ceph-mon[30237]: from='mgr.14100 172.21.15.16:0/3193769898' entity='mgr.a' 2024-04-14T16:08:41.295 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-14T16:08:41.295 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-14T16:08:41.295 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsid": "0c4012e2-fa79-11ee-bc8e-c7b262605968", 2024-04-14T16:08:41.295 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "health": { 2024-04-14T16:08:41.295 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-14T16:08:41.295 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-14T16:08:41.295 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-14T16:08:41.295 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:41.295 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-14T16:08:41.295 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 0 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "a" 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_age": 8, 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-14T16:08:41.296 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-14T16:08:41.297 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-14T16:08:41.297 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-14T16:08:41.297 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-14T16:08:41.297 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-14T16:08:41.300 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:41.300 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-14T16:08:41.300 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-14T16:08:41.300 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-14T16:08:41.300 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-14T16:08:41.301 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-14T16:08:41.301 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-14T16:08:41.301 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-14T16:08:41.301 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-14T16:08:41.301 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-14T16:08:41.301 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:41.301 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-14T16:08:41.301 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:41.301 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-14T16:08:41.301 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-14T16:08:41.301 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:41.301 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-14T16:08:41.301 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "restful" 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modified": "2024-04-14T16:08:25.988073+0000", 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:41.302 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-14T16:08:41.303 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-14T16:08:41.303 INFO:teuthology.orchestra.run.smithi016.stdout:mgr not available, waiting (3/15)... 2024-04-14T16:08:42.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:41 smithi016 ceph-mon[30237]: mgrmap e3: a(active, since 1.00708s) 2024-04-14T16:08:43.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:42 smithi016 ceph-mon[30237]: mgrmap e4: a(active, since 2s) 2024-04-14T16:08:47.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:47 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1244214429' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-14T16:08:52.376 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-14T16:08:52.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-14T16:08:52.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsid": "0c4012e2-fa79-11ee-bc8e-c7b262605968", 2024-04-14T16:08:52.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "health": { 2024-04-14T16:08:52.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-14T16:08:52.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-14T16:08:52.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-14T16:08:52.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:52.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-14T16:08:52.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-14T16:08:52.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 0 2024-04-14T16:08:52.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "a" 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "quorum_age": 16, 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-14T16:08:52.378 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-14T16:08:52.379 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-14T16:08:52.382 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-14T16:08:52.382 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-14T16:08:52.382 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:52.382 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-14T16:08:52.383 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-14T16:08:52.383 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-14T16:08:52.383 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-14T16:08:52.383 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-14T16:08:52.383 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-14T16:08:52.383 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-14T16:08:52.383 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-14T16:08:52.383 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-14T16:08:52.383 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:52.383 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-14T16:08:52.383 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:52.383 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-14T16:08:52.383 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "restful" 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ], 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-14T16:08:52.384 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "modified": "2024-04-14T16:08:25.988073+0000", 2024-04-14T16:08:52.385 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-14T16:08:52.385 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout }, 2024-04-14T16:08:52.385 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-14T16:08:52.385 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-14T16:08:52.385 INFO:teuthology.orchestra.run.smithi016.stdout:mgr is available 2024-04-14T16:08:53.343 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:53 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/3395277278' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-14T16:08:53.343 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:53 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/3395277278' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-14T16:08:53.597 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-14T16:08:53.597 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [global] 2024-04-14T16:08:53.597 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout fsid = 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:08:53.597 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-14T16:08:53.597 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-14T16:08:53.598 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-14T16:08:53.598 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-14T16:08:53.598 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-14T16:08:53.598 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-14T16:08:53.598 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-14T16:08:53.598 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 2024-04-14T16:08:53.598 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout [osd] 2024-04-14T16:08:53.598 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-14T16:08:53.598 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-14T16:08:53.598 INFO:teuthology.orchestra.run.smithi016.stdout:Enabling cephadm module... 2024-04-14T16:08:54.675 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:54 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1667952956' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-14T16:08:54.675 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:54 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: ignoring --setuser ceph since I am not root 2024-04-14T16:08:54.675 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:54 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: ignoring --setgroup ceph since I am not root 2024-04-14T16:08:55.269 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:54 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:54.944+0000 7f696d9cb200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-14T16:08:55.269 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:55 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:55.045+0000 7f696d9cb200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-14T16:08:55.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:55 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1667952956' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-04-14T16:08:55.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:55 smithi016 ceph-mon[30237]: mgrmap e5: a(active, since 14s) 2024-04-14T16:08:55.967 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:55 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:55.720+0000 7f696d9cb200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-14T16:08:55.967 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:55 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:55.815+0000 7f696d9cb200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-14T16:08:55.967 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:55 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:55.966+0000 7f696d9cb200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-14T16:08:56.265 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:56 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:56.065+0000 7f696d9cb200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-14T16:08:56.265 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:56 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:56.151+0000 7f696d9cb200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-14T16:08:56.268 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-14T16:08:56.268 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-04-14T16:08:56.268 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-14T16:08:56.268 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-04-14T16:08:56.268 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-14T16:08:56.268 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-14T16:08:56.268 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for the mgr to restart... 2024-04-14T16:08:56.268 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mgr epoch 5... 2024-04-14T16:08:56.545 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:08:56 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/4199919346' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-14T16:08:56.545 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:56 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:56.427+0000 7f696d9cb200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-14T16:08:56.545 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:56 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:56.544+0000 7f696d9cb200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-14T16:08:56.871 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:56 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:56.633+0000 7f696d9cb200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-14T16:08:56.871 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:56 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:56.735+0000 7f696d9cb200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-14T16:08:57.257 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:56 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:56.914+0000 7f696d9cb200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-14T16:08:58.371 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:57 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:57.913+0000 7f696d9cb200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-14T16:08:58.371 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:58 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:58.049+0000 7f696d9cb200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-14T16:08:58.680 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:58 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:58.387+0000 7f696d9cb200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-14T16:08:58.680 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:58 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:58.478+0000 7f696d9cb200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-14T16:08:58.680 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:58 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:58.679+0000 7f696d9cb200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-14T16:08:59.121 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:58 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:58.868+0000 7f696d9cb200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-14T16:08:59.422 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:59 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:59.160+0000 7f696d9cb200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-14T16:08:59.422 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:59 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:59.420+0000 7f696d9cb200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-14T16:08:59.871 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:08:59 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:08:59.663+0000 7f696d9cb200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-14T16:09:00.871 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:00 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:00.488+0000 7f696d9cb200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-14T16:09:01.371 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:01.069+0000 7f696d9cb200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-14T16:09:01.371 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:01.169+0000 7f696d9cb200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-14T16:09:01.871 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:01.390+0000 7f696d9cb200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-14T16:09:01.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: Active manager daemon a restarted 2024-04-14T16:09:01.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: Activating manager daemon a 2024-04-14T16:09:01.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: osdmap e2: 0 total, 0 up, 0 in 2024-04-14T16:09:01.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: mgrmap e6: a(active, starting, since 0.00324046s) 2024-04-14T16:09:01.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:09:01.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-14T16:09:01.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-14T16:09:01.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-14T16:09:01.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-14T16:09:01.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: Manager daemon a is now available 2024-04-14T16:09:01.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: Found migration_current of "None". Setting to last migration. 2024-04-14T16:09:01.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:01.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:01.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:09:01.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:09:01.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-14T16:09:01.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:01 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-14T16:09:02.714 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:02 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:02.714 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:02 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:02.714 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:02 smithi016 ceph-mon[30237]: [14/Apr/2024:16:09:01] ENGINE Bus STARTING 2024-04-14T16:09:02.714 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:02 smithi016 ceph-mon[30237]: [14/Apr/2024:16:09:02] ENGINE Serving on http://172.21.15.16:8765 2024-04-14T16:09:02.714 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:02 smithi016 ceph-mon[30237]: [14/Apr/2024:16:09:02] ENGINE Serving on https://172.21.15.16:7150 2024-04-14T16:09:02.714 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:02 smithi016 ceph-mon[30237]: [14/Apr/2024:16:09:02] ENGINE Bus STARTED 2024-04-14T16:09:02.714 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:02 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:09:02.714 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:02 smithi016 ceph-mon[30237]: from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-14T16:09:02.715 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:02 smithi016 ceph-mon[30237]: mgrmap e7: a(active, since 1.00541s) 2024-04-14T16:09:02.715 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:02 smithi016 ceph-mon[30237]: from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-14T16:09:02.966 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-14T16:09:02.967 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-04-14T16:09:02.967 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-14T16:09:02.967 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-14T16:09:02.967 INFO:teuthology.orchestra.run.smithi016.stdout:mgr epoch 5 is available 2024-04-14T16:09:02.967 INFO:teuthology.orchestra.run.smithi016.stdout:Setting orchestrator backend to cephadm... 2024-04-14T16:09:04.844 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:04 smithi016 ceph-mon[30237]: mgrmap e8: a(active, since 2s) 2024-04-14T16:09:04.844 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:04 smithi016 ceph-mon[30237]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:09:04.844 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:04 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:04.844 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:04 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:09:05.377 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout value unchanged 2024-04-14T16:09:05.377 INFO:teuthology.orchestra.run.smithi016.stdout:Generating ssh key... 2024-04-14T16:09:05.752 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:05 smithi016 ceph-mon[30237]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:09:06.689 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: Generating public/private rsa key pair. 2024-04-14T16:09:06.689 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: Your identification has been saved in /tmp/tmpje3dtweq/key. 2024-04-14T16:09:06.689 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: Your public key has been saved in /tmp/tmpje3dtweq/key.pub. 2024-04-14T16:09:06.689 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: The key fingerprint is: 2024-04-14T16:09:06.689 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: SHA256:loAwZqNpWxjdgS1Dfm0buTT9ltH7ZALL+SBetrlY7Og ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:09:06.689 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: The key's randomart image is: 2024-04-14T16:09:06.689 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: +---[RSA 3072]----+ 2024-04-14T16:09:06.689 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: | .O.+.. | 2024-04-14T16:09:06.689 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: | =+O +. o . | 2024-04-14T16:09:06.690 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: |oo o+..B . o . | 2024-04-14T16:09:06.690 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: |. o . o.=.o * . | 2024-04-14T16:09:06.690 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: | . oS. @ o o | 2024-04-14T16:09:06.690 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: | .. * = = | 2024-04-14T16:09:06.690 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: | . = . . | 2024-04-14T16:09:06.690 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: | = . | 2024-04-14T16:09:06.690 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: | .E o | 2024-04-14T16:09:06.690 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:06 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: +----[SHA256]-----+ 2024-04-14T16:09:07.764 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:07 smithi016 ceph-mon[30237]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:09:07.764 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:07 smithi016 ceph-mon[30237]: Generating ssh key... 2024-04-14T16:09:07.764 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:07 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:07.765 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:07 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:08.315 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDQrDG6HAnl2I18KZENUiyRFcHgGCm5Nz6OTRwyq1sr3topz0L0afwvGNgB/kA/Eg0yvQuF1g9xIz/va2vX/4hVjxQ6Aoxv22mPIF7Jjmnk15JF7ifjyXwLNXU5zoJS/lizr8fxQd4hj1shD5jYGLCN7uYuUMcPRKg2ebLqKcKngB/NHvg7xxFXos9ZBp8mcH53rnJFQy05g8ksBSGm+2b1DxR8n9eJAct/rpQfgcfeneWK03ZGlEZqHrVTgUBHWsvWRYeiZzfuTv3ALOb1mGd9rAt6tEFu+whP1OufxFP8hoEL/iAFMDRx0yYVmyaCch6ZRNqYXdXQ0wtMPymXJUguJ+U16lDFABXH66n6sG1HBFuhdUtOdvVrvEkijvkHrCJvlMZEuTF+oMwbgx21Esk8L2qjFUDyXFzh/dLDzB2YsXjze63y2oDSPCaDdPipb1/IHnh5HAru7dRtVE5tH/KHtxYPwCovGJdb4v60G0hnOmx7uOq4C6+MBUjV2YfYnG0= ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:09:08.315 INFO:teuthology.orchestra.run.smithi016.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-04-14T16:09:08.315 INFO:teuthology.orchestra.run.smithi016.stdout:Adding key to root@localhost authorized_keys... 2024-04-14T16:09:08.315 INFO:teuthology.orchestra.run.smithi016.stdout:Adding host smithi016... 2024-04-14T16:09:08.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:08 smithi016 ceph-mon[30237]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:09:09.597 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:09 smithi016 ceph-mon[30237]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi016", "addr": "172.21.15.16", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:09:10.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:10 smithi016 ceph-mon[30237]: Deploying cephadm binary to smithi016 2024-04-14T16:09:13.972 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout Added host 'smithi016' with addr '172.21.15.16' 2024-04-14T16:09:13.972 INFO:teuthology.orchestra.run.smithi016.stdout:Deploying unmanaged mon service... 2024-04-14T16:09:14.524 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:14 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:14.524 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:14 smithi016 ceph-mon[30237]: Added host smithi016 2024-04-14T16:09:14.524 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:14 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:09:15.975 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:15 smithi016 ceph-mon[30237]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:09:15.976 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:15 smithi016 ceph-mon[30237]: Saving service mon spec with placement count:5 2024-04-14T16:09:15.976 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:15 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:16.229 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-04-14T16:09:16.229 INFO:teuthology.orchestra.run.smithi016.stdout:Deploying unmanaged mgr service... 2024-04-14T16:09:17.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:16 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:17.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:16 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:17.660 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-04-14T16:09:18.069 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:17 smithi016 ceph-mon[30237]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:09:18.069 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:17 smithi016 ceph-mon[30237]: Saving service mgr spec with placement count:2 2024-04-14T16:09:18.069 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:17 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:19.695 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:19 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1612644333' entity='client.admin' 2024-04-14T16:09:20.610 INFO:teuthology.orchestra.run.smithi016.stdout:Enabling the dashboard module... 2024-04-14T16:09:20.984 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:20 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:20.985 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:20 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/2921987659' entity='client.admin' 2024-04-14T16:09:22.574 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:22 smithi016 ceph-mon[30237]: from='mgr.14120 172.21.15.16:0/203626515' entity='mgr.a' 2024-04-14T16:09:22.574 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:22 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1672946385' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-04-14T16:09:22.574 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:22 smithi016 ceph-mon[30237]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:09:22.574 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:22 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: ignoring --setuser ceph since I am not root 2024-04-14T16:09:22.574 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:22 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: ignoring --setgroup ceph since I am not root 2024-04-14T16:09:23.192 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:22 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:22.909+0000 7fab3b82a200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-14T16:09:23.192 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:23 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:23.005+0000 7fab3b82a200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-14T16:09:23.528 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:23 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1672946385' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-04-14T16:09:23.528 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:23 smithi016 ceph-mon[30237]: mgrmap e9: a(active, since 20s) 2024-04-14T16:09:23.779 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:23 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:23.681+0000 7fab3b82a200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-14T16:09:23.779 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:23 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:23.777+0000 7fab3b82a200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-14T16:09:24.111 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:23 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:23.923+0000 7fab3b82a200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-14T16:09:24.111 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:24 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:24.025+0000 7fab3b82a200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-14T16:09:24.112 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:24 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:24.110+0000 7fab3b82a200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-14T16:09:24.366 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:24 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/3590569912' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-14T16:09:24.621 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:24 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:24.381+0000 7fab3b82a200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-14T16:09:24.621 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:24 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:24.493+0000 7fab3b82a200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-14T16:09:24.622 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:24 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:24.582+0000 7fab3b82a200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-14T16:09:24.628 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-14T16:09:24.629 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-04-14T16:09:24.629 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-14T16:09:24.629 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-04-14T16:09:24.629 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-14T16:09:24.629 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-14T16:09:24.629 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for the mgr to restart... 2024-04-14T16:09:24.629 INFO:teuthology.orchestra.run.smithi016.stdout:Waiting for mgr epoch 9... 2024-04-14T16:09:24.890 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:24 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:24.689+0000 7fab3b82a200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-14T16:09:24.890 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:24 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:24.868+0000 7fab3b82a200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-14T16:09:26.121 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:25 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:25.868+0000 7fab3b82a200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-14T16:09:26.121 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:26 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:26.004+0000 7fab3b82a200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-14T16:09:26.621 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:26 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:26.344+0000 7fab3b82a200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-14T16:09:26.621 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:26 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:26.437+0000 7fab3b82a200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-14T16:09:27.121 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:26 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:26.641+0000 7fab3b82a200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-14T16:09:27.121 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:26 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:26.833+0000 7fab3b82a200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-14T16:09:27.407 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:27 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:27.131+0000 7fab3b82a200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-14T16:09:27.407 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:27 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:27.406+0000 7fab3b82a200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-14T16:09:27.795 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:27 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:27.650+0000 7fab3b82a200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-14T16:09:28.871 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:28 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:28.487+0000 7fab3b82a200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-14T16:09:29.371 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:29.070+0000 7fab3b82a200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-14T16:09:29.371 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:29.170+0000 7fab3b82a200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-14T16:09:29.871 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:09:29.394+0000 7fab3b82a200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-14T16:09:29.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-mon[30237]: Active manager daemon a restarted 2024-04-14T16:09:29.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-mon[30237]: Activating manager daemon a 2024-04-14T16:09:29.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-mon[30237]: osdmap e3: 0 total, 0 up, 0 in 2024-04-14T16:09:29.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-mon[30237]: mgrmap e10: a(active, starting, since 0.00317508s) 2024-04-14T16:09:29.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:09:29.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-14T16:09:29.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-14T16:09:29.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-14T16:09:29.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-14T16:09:29.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-mon[30237]: Manager daemon a is now available 2024-04-14T16:09:29.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:09:29.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-14T16:09:29.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-14T16:09:30.783 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:30 smithi016 ceph-mon[30237]: [14/Apr/2024:16:09:29] ENGINE Bus STARTING 2024-04-14T16:09:30.783 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:30 smithi016 ceph-mon[30237]: [14/Apr/2024:16:09:29] ENGINE Serving on https://172.21.15.16:7150 2024-04-14T16:09:30.783 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:30 smithi016 ceph-mon[30237]: [14/Apr/2024:16:09:29] ENGINE Serving on http://172.21.15.16:8765 2024-04-14T16:09:30.783 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:30 smithi016 ceph-mon[30237]: [14/Apr/2024:16:09:29] ENGINE Bus STARTED 2024-04-14T16:09:30.783 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:30 smithi016 ceph-mon[30237]: mgrmap e11: a(active, since 1.00632s) 2024-04-14T16:09:31.195 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout { 2024-04-14T16:09:31.195 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-04-14T16:09:31.195 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-14T16:09:31.195 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout } 2024-04-14T16:09:31.195 INFO:teuthology.orchestra.run.smithi016.stdout:mgr epoch 9 is available 2024-04-14T16:09:31.195 INFO:teuthology.orchestra.run.smithi016.stdout:Generating a dashboard self-signed certificate... 2024-04-14T16:09:31.709 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:31 smithi016 ceph-mon[30237]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-14T16:09:31.709 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:31 smithi016 ceph-mon[30237]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-14T16:09:32.616 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:32 smithi016 ceph-mon[30237]: mgrmap e12: a(active, since 2s) 2024-04-14T16:09:32.616 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:32 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:32.616 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:32 smithi016 ceph-mon[30237]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:09:32.616 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:32 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:32.616 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:32 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:32.877 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-04-14T16:09:32.877 INFO:teuthology.orchestra.run.smithi016.stdout:Creating initial admin user... 2024-04-14T16:09:34.260 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:34.260 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:35.175 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$v333VTIzCvQuWkHJX0V3xe9WnLc/DdM5x0GXUFU9nu0OhbQ7xL8xi", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1713110973, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-04-14T16:09:35.175 INFO:teuthology.orchestra.run.smithi016.stdout:Fetching dashboard port number... 2024-04-14T16:09:35.289 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:34 smithi016 ceph-mon[30237]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:09:36.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:35 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/2156473764' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-04-14T16:09:36.439 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stdout 8443 2024-04-14T16:09:36.450 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-14T16:09:36.450 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout disabled 2024-04-14T16:09:36.458 INFO:teuthology.orchestra.run.smithi016.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-14T16:09:36.458 INFO:teuthology.orchestra.run.smithi016.stdout:systemctl: stdout inactive 2024-04-14T16:09:36.458 INFO:teuthology.orchestra.run.smithi016.stdout:firewalld.service is not enabled 2024-04-14T16:09:36.458 INFO:teuthology.orchestra.run.smithi016.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-04-14T16:09:36.460 INFO:teuthology.orchestra.run.smithi016.stdout:Ceph Dashboard is now available at: 2024-04-14T16:09:36.460 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:09:36.460 INFO:teuthology.orchestra.run.smithi016.stdout: URL: https://smithi016.front.sepia.ceph.com:8443/ 2024-04-14T16:09:36.460 INFO:teuthology.orchestra.run.smithi016.stdout: User: admin 2024-04-14T16:09:36.460 INFO:teuthology.orchestra.run.smithi016.stdout: Password: gti56jsfku 2024-04-14T16:09:36.460 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:09:36.460 INFO:teuthology.orchestra.run.smithi016.stdout:Saving cluster configuration to /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config directory 2024-04-14T16:09:36.461 INFO:teuthology.orchestra.run.smithi016.stdout:Enabling autotune for osd_memory_target 2024-04-14T16:09:37.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:36 smithi016 ceph-mon[30237]: mgrmap e13: a(active, since 6s) 2024-04-14T16:09:38.876 INFO:teuthology.orchestra.run.smithi016.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-04-14T16:09:38.876 INFO:teuthology.orchestra.run.smithi016.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-04-14T16:09:38.876 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout:Or, if you are only running a single cluster on this host: 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout:Please consider enabling telemetry to help improve Ceph: 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout: ceph telemetry on 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout:For more information see: 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-04-14T16:09:38.877 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:09:38.878 INFO:teuthology.orchestra.run.smithi016.stdout:Bootstrap complete. 2024-04-14T16:09:38.919 INFO:tasks.cephadm:Fetching config... 2024-04-14T16:09:38.919 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T16:09:38.919 DEBUG:teuthology.orchestra.run.smithi016:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-04-14T16:09:38.935 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-04-14T16:09:38.935 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T16:09:38.935 DEBUG:teuthology.orchestra.run.smithi016:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-04-14T16:09:38.989 INFO:tasks.cephadm:Fetching mon keyring... 2024-04-14T16:09:38.990 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T16:09:38.990 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/keyring of=/dev/stdout 2024-04-14T16:09:39.056 INFO:tasks.cephadm:Fetching pub ssh key... 2024-04-14T16:09:39.056 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T16:09:39.056 DEBUG:teuthology.orchestra.run.smithi016:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-04-14T16:09:39.110 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-04-14T16:09:39.110 DEBUG:teuthology.orchestra.run.smithi016:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDQrDG6HAnl2I18KZENUiyRFcHgGCm5Nz6OTRwyq1sr3topz0L0afwvGNgB/kA/Eg0yvQuF1g9xIz/va2vX/4hVjxQ6Aoxv22mPIF7Jjmnk15JF7ifjyXwLNXU5zoJS/lizr8fxQd4hj1shD5jYGLCN7uYuUMcPRKg2ebLqKcKngB/NHvg7xxFXos9ZBp8mcH53rnJFQy05g8ksBSGm+2b1DxR8n9eJAct/rpQfgcfeneWK03ZGlEZqHrVTgUBHWsvWRYeiZzfuTv3ALOb1mGd9rAt6tEFu+whP1OufxFP8hoEL/iAFMDRx0yYVmyaCch6ZRNqYXdXQ0wtMPymXJUguJ+U16lDFABXH66n6sG1HBFuhdUtOdvVrvEkijvkHrCJvlMZEuTF+oMwbgx21Esk8L2qjFUDyXFzh/dLDzB2YsXjze63y2oDSPCaDdPipb1/IHnh5HAru7dRtVE5tH/KHtxYPwCovGJdb4v60G0hnOmx7uOq4C6+MBUjV2YfYnG0= ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-14T16:09:39.204 INFO:teuthology.orchestra.run.smithi016.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDQrDG6HAnl2I18KZENUiyRFcHgGCm5Nz6OTRwyq1sr3topz0L0afwvGNgB/kA/Eg0yvQuF1g9xIz/va2vX/4hVjxQ6Aoxv22mPIF7Jjmnk15JF7ifjyXwLNXU5zoJS/lizr8fxQd4hj1shD5jYGLCN7uYuUMcPRKg2ebLqKcKngB/NHvg7xxFXos9ZBp8mcH53rnJFQy05g8ksBSGm+2b1DxR8n9eJAct/rpQfgcfeneWK03ZGlEZqHrVTgUBHWsvWRYeiZzfuTv3ALOb1mGd9rAt6tEFu+whP1OufxFP8hoEL/iAFMDRx0yYVmyaCch6ZRNqYXdXQ0wtMPymXJUguJ+U16lDFABXH66n6sG1HBFuhdUtOdvVrvEkijvkHrCJvlMZEuTF+oMwbgx21Esk8L2qjFUDyXFzh/dLDzB2YsXjze63y2oDSPCaDdPipb1/IHnh5HAru7dRtVE5tH/KHtxYPwCovGJdb4v60G0hnOmx7uOq4C6+MBUjV2YfYnG0= ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:09:39.218 DEBUG:teuthology.orchestra.run.smithi027:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDQrDG6HAnl2I18KZENUiyRFcHgGCm5Nz6OTRwyq1sr3topz0L0afwvGNgB/kA/Eg0yvQuF1g9xIz/va2vX/4hVjxQ6Aoxv22mPIF7Jjmnk15JF7ifjyXwLNXU5zoJS/lizr8fxQd4hj1shD5jYGLCN7uYuUMcPRKg2ebLqKcKngB/NHvg7xxFXos9ZBp8mcH53rnJFQy05g8ksBSGm+2b1DxR8n9eJAct/rpQfgcfeneWK03ZGlEZqHrVTgUBHWsvWRYeiZzfuTv3ALOb1mGd9rAt6tEFu+whP1OufxFP8hoEL/iAFMDRx0yYVmyaCch6ZRNqYXdXQ0wtMPymXJUguJ+U16lDFABXH66n6sG1HBFuhdUtOdvVrvEkijvkHrCJvlMZEuTF+oMwbgx21Esk8L2qjFUDyXFzh/dLDzB2YsXjze63y2oDSPCaDdPipb1/IHnh5HAru7dRtVE5tH/KHtxYPwCovGJdb4v60G0hnOmx7uOq4C6+MBUjV2YfYnG0= ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-14T16:09:39.271 INFO:teuthology.orchestra.run.smithi027.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDQrDG6HAnl2I18KZENUiyRFcHgGCm5Nz6OTRwyq1sr3topz0L0afwvGNgB/kA/Eg0yvQuF1g9xIz/va2vX/4hVjxQ6Aoxv22mPIF7Jjmnk15JF7ifjyXwLNXU5zoJS/lizr8fxQd4hj1shD5jYGLCN7uYuUMcPRKg2ebLqKcKngB/NHvg7xxFXos9ZBp8mcH53rnJFQy05g8ksBSGm+2b1DxR8n9eJAct/rpQfgcfeneWK03ZGlEZqHrVTgUBHWsvWRYeiZzfuTv3ALOb1mGd9rAt6tEFu+whP1OufxFP8hoEL/iAFMDRx0yYVmyaCch6ZRNqYXdXQ0wtMPymXJUguJ+U16lDFABXH66n6sG1HBFuhdUtOdvVrvEkijvkHrCJvlMZEuTF+oMwbgx21Esk8L2qjFUDyXFzh/dLDzB2YsXjze63y2oDSPCaDdPipb1/IHnh5HAru7dRtVE5tH/KHtxYPwCovGJdb4v60G0hnOmx7uOq4C6+MBUjV2YfYnG0= ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:09:39.289 DEBUG:teuthology.orchestra.run.smithi122:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDQrDG6HAnl2I18KZENUiyRFcHgGCm5Nz6OTRwyq1sr3topz0L0afwvGNgB/kA/Eg0yvQuF1g9xIz/va2vX/4hVjxQ6Aoxv22mPIF7Jjmnk15JF7ifjyXwLNXU5zoJS/lizr8fxQd4hj1shD5jYGLCN7uYuUMcPRKg2ebLqKcKngB/NHvg7xxFXos9ZBp8mcH53rnJFQy05g8ksBSGm+2b1DxR8n9eJAct/rpQfgcfeneWK03ZGlEZqHrVTgUBHWsvWRYeiZzfuTv3ALOb1mGd9rAt6tEFu+whP1OufxFP8hoEL/iAFMDRx0yYVmyaCch6ZRNqYXdXQ0wtMPymXJUguJ+U16lDFABXH66n6sG1HBFuhdUtOdvVrvEkijvkHrCJvlMZEuTF+oMwbgx21Esk8L2qjFUDyXFzh/dLDzB2YsXjze63y2oDSPCaDdPipb1/IHnh5HAru7dRtVE5tH/KHtxYPwCovGJdb4v60G0hnOmx7uOq4C6+MBUjV2YfYnG0= ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-14T16:09:39.333 INFO:teuthology.orchestra.run.smithi122.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDQrDG6HAnl2I18KZENUiyRFcHgGCm5Nz6OTRwyq1sr3topz0L0afwvGNgB/kA/Eg0yvQuF1g9xIz/va2vX/4hVjxQ6Aoxv22mPIF7Jjmnk15JF7ifjyXwLNXU5zoJS/lizr8fxQd4hj1shD5jYGLCN7uYuUMcPRKg2ebLqKcKngB/NHvg7xxFXos9ZBp8mcH53rnJFQy05g8ksBSGm+2b1DxR8n9eJAct/rpQfgcfeneWK03ZGlEZqHrVTgUBHWsvWRYeiZzfuTv3ALOb1mGd9rAt6tEFu+whP1OufxFP8hoEL/iAFMDRx0yYVmyaCch6ZRNqYXdXQ0wtMPymXJUguJ+U16lDFABXH66n6sG1HBFuhdUtOdvVrvEkijvkHrCJvlMZEuTF+oMwbgx21Esk8L2qjFUDyXFzh/dLDzB2YsXjze63y2oDSPCaDdPipb1/IHnh5HAru7dRtVE5tH/KHtxYPwCovGJdb4v60G0hnOmx7uOq4C6+MBUjV2YfYnG0= ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:09:39.348 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-04-14T16:09:39.590 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:09:39.711 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:39 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/671215619' entity='client.admin' 2024-04-14T16:09:43.099 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-04-14T16:09:43.099 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-04-14T16:09:43.531 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:09:43.653 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:43 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1516648519' entity='client.admin' 2024-04-14T16:09:44.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:44 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:44.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:44 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:44.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:44 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi016", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:09:44.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:44 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:44.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:44 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:09:44.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:44 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:46.003 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi027 2024-04-14T16:09:46.003 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-14T16:09:46.003 DEBUG:teuthology.orchestra.run.smithi027:> dd of=/etc/ceph/ceph.conf 2024-04-14T16:09:46.022 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-14T16:09:46.022 DEBUG:teuthology.orchestra.run.smithi027:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:09:46.080 INFO:tasks.cephadm:Adding host smithi027 to orchestrator... 2024-04-14T16:09:46.080 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph orch host add smithi027 2024-04-14T16:09:46.329 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:09:46.572 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:46 smithi016 ceph-mon[30237]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:09:46.572 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:46 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:46.572 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:46 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:09:46.572 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:46 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:09:46.573 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:46 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:09:46.573 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:46 smithi016 ceph-mon[30237]: Updating smithi016:/etc/ceph/ceph.conf 2024-04-14T16:09:46.573 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:46 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:46.573 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:46 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:46.573 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:46 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:47.456 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:47 smithi016 ceph-mon[30237]: Updating smithi016:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:09:47.456 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:47 smithi016 ceph-mon[30237]: Updating smithi016:/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:09:47.456 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:47 smithi016 ceph-mon[30237]: Updating smithi016:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T16:09:48.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:48 smithi016 ceph-mon[30237]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi027", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:09:49.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:49 smithi016 ceph-mon[30237]: Deploying cephadm binary to smithi027 2024-04-14T16:09:50.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:50 smithi016 ceph-mon[30237]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:09:52.633 INFO:teuthology.orchestra.run.smithi016.stdout:Added host 'smithi027' with addr '172.21.15.27' 2024-04-14T16:09:52.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:52 smithi016 ceph-mon[30237]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:09:53.378 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph orch host ls --format=json 2024-04-14T16:09:53.624 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:09:53.885 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:53 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:53.886 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:53 smithi016 ceph-mon[30237]: Added host smithi027 2024-04-14T16:09:53.886 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:53 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:09:53.886 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:53 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:54.988 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:54 smithi016 ceph-mon[30237]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:09:54.988 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:54 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:55.424 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:09:55.424 INFO:teuthology.orchestra.run.smithi016.stdout:[{"addr": "172.21.15.16", "hostname": "smithi016", "labels": [], "status": ""}, {"addr": "172.21.15.27", "hostname": "smithi027", "labels": [], "status": ""}] 2024-04-14T16:09:55.959 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi122 2024-04-14T16:09:55.960 DEBUG:teuthology.orchestra.run.smithi122:> set -ex 2024-04-14T16:09:55.960 DEBUG:teuthology.orchestra.run.smithi122:> dd of=/etc/ceph/ceph.conf 2024-04-14T16:09:55.978 DEBUG:teuthology.orchestra.run.smithi122:> set -ex 2024-04-14T16:09:55.978 DEBUG:teuthology.orchestra.run.smithi122:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:09:56.035 INFO:tasks.cephadm:Adding host smithi122 to orchestrator... 2024-04-14T16:09:56.035 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph orch host add smithi122 2024-04-14T16:09:56.276 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:09:56.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:56 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:57.345 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:57 smithi016 ceph-mon[30237]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:09:57.345 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:57 smithi016 ceph-mon[30237]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:09:59.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:59 smithi016 ceph-mon[30237]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:09:59.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:59 smithi016 ceph-mon[30237]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi122", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:09:59.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:59.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:59.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:59.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:09:59.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi027", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:09:59.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:09:59.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:09:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:00.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:00 smithi016 ceph-mon[30237]: Updating smithi027:/etc/ceph/ceph.conf 2024-04-14T16:10:00.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:00 smithi016 ceph-mon[30237]: Updating smithi027:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:00.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:00 smithi016 ceph-mon[30237]: Deploying cephadm binary to smithi122 2024-04-14T16:10:00.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:00 smithi016 ceph-mon[30237]: Updating smithi027:/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:10:00.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:00 smithi016 ceph-mon[30237]: Updating smithi027:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T16:10:01.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:01 smithi016 ceph-mon[30237]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:02.689 INFO:teuthology.orchestra.run.smithi016.stdout:Added host 'smithi122' with addr '172.21.15.122' 2024-04-14T16:10:03.010 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:02 smithi016 ceph-mon[30237]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:03.010 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:02 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:03.010 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:02 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:03.011 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:02 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:03.011 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:02 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:03.011 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:02 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:03.409 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph orch host ls --format=json 2024-04-14T16:10:03.650 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:10:04.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:04 smithi016 ceph-mon[30237]: Added host smithi122 2024-04-14T16:10:04.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:04.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:05.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:05 smithi016 ceph-mon[30237]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:05.381 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:10:05.381 INFO:teuthology.orchestra.run.smithi016.stdout:[{"addr": "172.21.15.16", "hostname": "smithi016", "labels": [], "status": ""}, {"addr": "172.21.15.27", "hostname": "smithi027", "labels": [], "status": ""}, {"addr": "172.21.15.122", "hostname": "smithi122", "labels": [], "status": ""}] 2024-04-14T16:10:06.010 INFO:tasks.cephadm:Setting crush tunables to default 2024-04-14T16:10:06.011 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph osd crush tunables default 2024-04-14T16:10:06.250 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:10:06.592 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:06 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:06.592 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:06 smithi016 ceph-mon[30237]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:10:07.534 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:07 smithi016 ceph-mon[30237]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:08.284 INFO:teuthology.orchestra.run.smithi016.stderr:adjusted tunables profile to default 2024-04-14T16:10:08.585 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:08 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/947854047' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-14T16:10:08.859 INFO:tasks.cephadm:Adding mon.a on smithi016 2024-04-14T16:10:08.860 INFO:tasks.cephadm:Adding mon.b on smithi027 2024-04-14T16:10:08.860 INFO:tasks.cephadm:Adding mon.c on smithi122 2024-04-14T16:10:08.860 DEBUG:teuthology.orchestra.run.smithi122:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph orch apply mon '3;smithi016:172.21.15.16=a;smithi027:172.21.15.27=b;smithi122:172.21.15.122=c' 2024-04-14T16:10:09.105 INFO:teuthology.orchestra.run.smithi122.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-14T16:10:09.152 INFO:teuthology.orchestra.run.smithi122.stderr:Inferring config /etc/ceph/ceph.conf 2024-04-14T16:10:09.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:09 smithi016 ceph-mon[30237]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:09.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:09 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/947854047' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-14T16:10:09.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:09 smithi016 ceph-mon[30237]: osdmap e4: 0 total, 0 up, 0 in 2024-04-14T16:10:09.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:09 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:09.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:09 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:09.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:09 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:09.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:09 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:09.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:09 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi122", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:10:09.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:09 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:09.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:09 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:10.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:10 smithi016 ceph-mon[30237]: Updating smithi122:/etc/ceph/ceph.conf 2024-04-14T16:10:10.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:10 smithi016 ceph-mon[30237]: Updating smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:10.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:10 smithi016 ceph-mon[30237]: Updating smithi122:/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:10:10.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:10 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:10.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:10 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:10.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:10 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:10.985 INFO:teuthology.orchestra.run.smithi122.stdout:Scheduled mon update... 2024-04-14T16:10:11.591 DEBUG:teuthology.orchestra.run.smithi027:mon.b> sudo journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.b.service 2024-04-14T16:10:11.594 DEBUG:teuthology.orchestra.run.smithi122:mon.c> sudo journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.c.service 2024-04-14T16:10:11.596 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-14T16:10:11.596 DEBUG:teuthology.orchestra.run.smithi122:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph mon dump -f json 2024-04-14T16:10:11.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:11 smithi016 ceph-mon[30237]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:11.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:11 smithi016 ceph-mon[30237]: Updating smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T16:10:11.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:11 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:11.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:11 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:11.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:11 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:11.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:11 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:11.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:11 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:11.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:11 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:11.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:11 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:12.406 INFO:teuthology.orchestra.run.smithi122.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:12.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:12 smithi016 ceph-mon[30237]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi016:172.21.15.16=a;smithi027:172.21.15.27=b;smithi122:172.21.15.122=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:10:12.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:12 smithi016 ceph-mon[30237]: Saving service mon spec with placement smithi016:172.21.15.16=a;smithi027:172.21.15.27=b;smithi122:172.21.15.122=c;count:3 2024-04-14T16:10:12.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:12 smithi016 ceph-mon[30237]: Deploying daemon mon.c on smithi122 2024-04-14T16:10:13.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:13 smithi016 ceph-mon[30237]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:15.059 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:10:15.059 INFO:teuthology.orchestra.run.smithi122.stdout:{"epoch":1,"fsid":"0c4012e2-fa79-11ee-bc8e-c7b262605968","modified":"2024-04-14T16:08:23.046866Z","created":"2024-04-14T16:08:23.046866Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:3300","nonce":0},{"type":"v1","addr":"172.21.15.16:6789","nonce":0}]},"addr":"172.21.15.16:6789/0","public_addr":"172.21.15.16:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-14T16:10:15.061 INFO:teuthology.orchestra.run.smithi122.stderr:dumped monmap epoch 1 2024-04-14T16:10:15.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:15 smithi016 ceph-mon[30237]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:15.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:15 smithi016 ceph-mon[30237]: from='client.? 172.21.15.122:0/3231491592' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-14T16:10:16.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 podman[33714]: 2024-04-14 16:10:16.428286832 +0000 UTC m=+0.017391343 image pull b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608 2024-04-14T16:10:17.032 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-14T16:10:17.033 DEBUG:teuthology.orchestra.run.smithi122:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph mon dump -f json 2024-04-14T16:10:17.063 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 podman[33714]: 2024-04-14 16:10:16.699326927 +0000 UTC m=+0.288431435 container init e9037717fcf043dc8eebd65d65749788c5f39000e5ee42e09ad73f80c358a2d2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-c, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240403, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, RELEASE=main-a971fd5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_CLEAN=True, maintainer=Guillaume Abrioux ) 2024-04-14T16:10:17.063 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 podman[33714]: 2024-04-14 16:10:16.704419345 +0000 UTC m=+0.293523846 container start e9037717fcf043dc8eebd65d65749788c5f39000e5ee42e09ad73f80c358a2d2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-c, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, RELEASE=main-a971fd5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240403, io.buildah.version=1.33.5, GIT_CLEAN=True, org.label-schema.schema-version=1.0) 2024-04-14T16:10:17.063 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: set uid:gid to 167:167 (ceph:ceph) 2024-04-14T16:10:17.063 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: ceph version 19.0.0-2778-ga971fd5f (a971fd5f5719038c70b817bafacd6d5400b1d888) squid (dev), process ceph-mon, pid 7 2024-04-14T16:10:17.064 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: pidfile_write: ignore empty --pid-file 2024-04-14T16:10:17.064 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: load: jerasure load: lrc 2024-04-14T16:10:17.064 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: RocksDB version: 7.9.2 2024-04-14T16:10:17.064 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Git sha 0 2024-04-14T16:10:17.064 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Compile date 2024-04-06 20:28:24 2024-04-14T16:10:17.064 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: DB SUMMARY 2024-04-14T16:10:17.064 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: DB Session ID: 3QPQ8JV8I5DVD88XSGUV 2024-04-14T16:10:17.064 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: CURRENT file: CURRENT 2024-04-14T16:10:17.064 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: IDENTITY file: IDENTITY 2024-04-14T16:10:17.064 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-04-14T16:10:17.064 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: SST files in /var/lib/ceph/mon/ceph-c/store.db dir, Total Num: 0, files: 2024-04-14T16:10:17.064 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-c/store.db: 000004.log size: 511 ; 2024-04-14T16:10:17.064 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.error_if_exists: 0 2024-04-14T16:10:17.065 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.create_if_missing: 0 2024-04-14T16:10:17.065 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.paranoid_checks: 1 2024-04-14T16:10:17.065 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.flush_verify_memtable_count: 1 2024-04-14T16:10:17.065 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-14T16:10:17.065 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-14T16:10:17.065 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.env: 0x55edc2af3c60 2024-04-14T16:10:17.065 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.fs: PosixFileSystem 2024-04-14T16:10:17.065 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.info_log: 0x55edc4c7dbe0 2024-04-14T16:10:17.065 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_file_opening_threads: 16 2024-04-14T16:10:17.065 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.statistics: (nil) 2024-04-14T16:10:17.065 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.use_fsync: 0 2024-04-14T16:10:17.065 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_log_file_size: 0 2024-04-14T16:10:17.065 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-14T16:10:17.066 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.log_file_time_to_roll: 0 2024-04-14T16:10:17.066 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.keep_log_file_num: 1000 2024-04-14T16:10:17.066 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.recycle_log_file_num: 0 2024-04-14T16:10:17.066 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.allow_fallocate: 1 2024-04-14T16:10:17.066 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.allow_mmap_reads: 0 2024-04-14T16:10:17.066 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.allow_mmap_writes: 0 2024-04-14T16:10:17.066 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.use_direct_reads: 0 2024-04-14T16:10:17.066 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-14T16:10:17.066 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.create_missing_column_families: 0 2024-04-14T16:10:17.066 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.db_log_dir: 2024-04-14T16:10:17.066 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.wal_dir: 2024-04-14T16:10:17.066 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.table_cache_numshardbits: 6 2024-04-14T16:10:17.066 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.WAL_ttl_seconds: 0 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.WAL_size_limit_MB: 0 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.is_fd_close_on_exec: 1 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.advise_random_on_open: 1 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.db_write_buffer_size: 0 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.write_buffer_manager: 0x55edc4c4e1e0 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.use_adaptive_mutex: 0 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.rate_limiter: (nil) 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.wal_recovery_mode: 2 2024-04-14T16:10:17.067 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.enable_thread_tracking: 0 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.enable_pipelined_write: 0 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.unordered_write: 0 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.row_cache: None 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.wal_filter: None 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.allow_ingest_behind: 0 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.two_write_queues: 0 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.manual_wal_flush: 0 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.wal_compression: 0 2024-04-14T16:10:17.068 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.atomic_flush: 0 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.persist_stats_to_disk: 0 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.write_dbid_to_manifest: 0 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.log_readahead_size: 0 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.best_efforts_recovery: 0 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.allow_data_in_errors: 0 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.db_host_id: __hostname__ 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.enforce_single_del_contracts: true 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_background_jobs: 2 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_background_compactions: -1 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_subcompactions: 1 2024-04-14T16:10:17.069 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.delayed_write_rate : 16777216 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_total_wal_size: 0 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.stats_dump_period_sec: 600 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.stats_persist_period_sec: 600 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_open_files: -1 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.bytes_per_sync: 0 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.wal_bytes_per_sync: 0 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.strict_bytes_per_sync: 0 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compaction_readahead_size: 0 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_background_flushes: -1 2024-04-14T16:10:17.070 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Compression algorithms supported: 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: kZSTD supported: 0 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: kXpressCompression supported: 0 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: kLZ4HCCompression supported: 1 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: kZlibCompression supported: 1 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: kSnappyCompression supported: 1 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: kLZ4Compression supported: 1 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: kBZip2Compression supported: 0 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Fast CRC32 supported: Supported on x86 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: DMutex implementation: pthread_mutex_t 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.merge_operator: 2024-04-14T16:10:17.071 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compaction_filter: None 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compaction_filter_factory: None 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.sst_partitioner_factory: None 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.memtable_factory: SkipListFactory 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.table_factory: BlockBasedTable 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55edc4c7ddc0) 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout: cache_index_and_filter_blocks: 1 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout: pin_top_level_index_and_filter: 1 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout: index_type: 0 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout: data_block_index_type: 0 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout: index_shortening: 1 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout: data_block_hash_table_util_ratio: 0.750000 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout: checksum: 4 2024-04-14T16:10:17.072 INFO:journalctl@ceph.mon.c.smithi122.stdout: no_block_cache: 0 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: block_cache: 0x55edc4c81090 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: block_cache_name: BinnedLRUCache 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: block_cache_options: 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: capacity : 536870912 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: num_shard_bits : 4 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: strict_capacity_limit : 0 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: high_pri_pool_ratio: 0.000 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: block_cache_compressed: (nil) 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: persistent_cache: (nil) 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: block_size: 4096 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: block_size_deviation: 10 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: block_restart_interval: 16 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: index_block_restart_interval: 1 2024-04-14T16:10:17.073 INFO:journalctl@ceph.mon.c.smithi122.stdout: metadata_block_size: 4096 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout: partition_filters: 0 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout: use_delta_encoding: 1 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout: filter_policy: bloomfilter 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout: whole_key_filtering: 1 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout: verify_compression: 0 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout: read_amp_bytes_per_bit: 0 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout: format_version: 5 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout: enable_index_compression: 1 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout: block_align: 0 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout: max_auto_readahead_size: 262144 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout: prepopulate_block_cache: 0 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout: initial_auto_readahead_size: 8192 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout: num_file_reads_for_auto_readahead: 2 2024-04-14T16:10:17.074 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.write_buffer_size: 33554432 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_write_buffer_number: 2 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compression: NoCompression 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.bottommost_compression: Disabled 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.prefix_extractor: nullptr 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.num_levels: 7 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-14T16:10:17.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compression_opts.window_bits: -14 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compression_opts.level: 32767 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compression_opts.strategy: 0 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compression_opts.enabled: false 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-14T16:10:17.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.target_file_size_base: 67108864 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.target_file_size_multiplier: 1 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-14T16:10:17.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.arena_block_size: 1048576 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.disable_auto_compactions: 0 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-14T16:10:17.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.inplace_update_support: 0 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.inplace_update_num_locks: 10000 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.memtable_huge_page_size: 0 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.bloom_locality: 0 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.max_successive_merges: 0 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.optimize_filters_for_hits: 0 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.paranoid_file_checks: 0 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.force_consistency_checks: 1 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.report_bg_io_stats: 0 2024-04-14T16:10:17.079 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.ttl: 2592000 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.periodic_compaction_seconds: 0 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.enable_blob_files: false 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.min_blob_size: 0 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.blob_file_size: 268435456 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.blob_compression_type: NoCompression 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.enable_blob_garbage_collection: false 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.blob_file_starting_level: 0 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-14T16:10:17.080 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 9cad4ca2-0e2c-43a1-bb88-ada5c8980acf 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713111016734682, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713111016735277, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1713111016, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "9cad4ca2-0e2c-43a1-bb88-ada5c8980acf", "db_session_id": "3QPQ8JV8I5DVD88XSGUV", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713111016735377, "job": 1, "event": "recovery_finished"} 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-c/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55edc4d70000 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: DB pointer 0x55edc4d5a000 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout: ** DB Stats ** 2024-04-14T16:10:17.081 INFO:journalctl@ceph.mon.c.smithi122.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: ** Compaction Stats [default] ** 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.8 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.8 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.8 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-14T16:10:17.082 INFO:journalctl@ceph.mon.c.smithi122.stdout: 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: ** Compaction Stats [default] ** 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: AddFile(Keys): cumulative 0, interval 0 2024-04-14T16:10:17.083 INFO:journalctl@ceph.mon.c.smithi122.stdout: Cumulative compaction: 0.00 GB write, 0.52 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout: Interval compaction: 0.00 GB write, 0.52 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout: Block cache BinnedLRUCache@0x55edc4c81090#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout: 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout: ** File Read Latency Histogram By Level [default] ** 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c does not exist in monmap, will attempt to join an existing cluster 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: using public_addr v2:172.21.15.122:0/0 -> [v2:172.21.15.122:3300/0,v1:172.21.15.122:6789/0] 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: starting mon.c rank -1 at public addrs [v2:172.21.15.122:3300/0,v1:172.21.15.122:6789/0] at bind addrs [v2:172.21.15.122:3300/0,v1:172.21.15.122:6789/0] mon_data /var/lib/ceph/mon/ceph-c fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(???) e0 preinit fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(synchronizing).mds e1 new map 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(synchronizing).mds e1 print_map 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout: e1 2024-04-14T16:10:17.084 INFO:journalctl@ceph.mon.c.smithi122.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout: legacy client fscid: -1 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout: 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout: No filesystems configured 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T16:10:17.085 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: Added host smithi027 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi122", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.086 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi027", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: Updating smithi027:/etc/ceph/ceph.conf 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: Updating smithi027:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: Deploying cephadm binary to smithi122 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: Updating smithi027:/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: Updating smithi027:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.087 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: Added host smithi122 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/947854047' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/947854047' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: osdmap e4: 0 total, 0 up, 0 in 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.088 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi122", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: Updating smithi122:/etc/ceph/ceph.conf 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: Updating smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: Updating smithi122:/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: Updating smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:17.089 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:17.090 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:17.090 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:17.090 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:17.090 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:17.090 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi016:172.21.15.16=a;smithi027:172.21.15.27=b;smithi122:172.21.15.122=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:10:17.090 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: Saving service mon spec with placement smithi016:172.21.15.16=a;smithi027:172.21.15.27=b;smithi122:172.21.15.122=c;count:3 2024-04-14T16:10:17.090 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: Deploying daemon mon.c on smithi122 2024-04-14T16:10:17.090 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:17.090 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:17.090 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: from='client.? 172.21.15.122:0/3231491592' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-14T16:10:17.090 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 ceph-mon[33752]: mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-04-14T16:10:17.090 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 bash[33714]: e9037717fcf043dc8eebd65d65749788c5f39000e5ee42e09ad73f80c358a2d2 2024-04-14T16:10:17.090 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:16 smithi122 systemd[1]: Started Ceph mon.c for 0c4012e2-fa79-11ee-bc8e-c7b262605968. 2024-04-14T16:10:17.267 INFO:teuthology.orchestra.run.smithi122.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.c/config 2024-04-14T16:10:22.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:10:22.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:22.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: mon.a calling monitor election 2024-04-14T16:10:22.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:22.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:22.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:22.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: mon.c calling monitor election 2024-04-14T16:10:22.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:22.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:22.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:22.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:22.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-14T16:10:22.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: monmap epoch 2 2024-04-14T16:10:22.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:10:22.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: last_changed 2024-04-14T16:10:16.757706+0000 2024-04-14T16:10:22.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: created 2024-04-14T16:08:23.046866+0000 2024-04-14T16:10:22.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: min_mon_release 19 (squid) 2024-04-14T16:10:22.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: election_strategy: 1 2024-04-14T16:10:22.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-14T16:10:22.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: 1: [v2:172.21.15.122:3300/0,v1:172.21.15.122:6789/0] mon.c 2024-04-14T16:10:22.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: fsmap 2024-04-14T16:10:22.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: osdmap e4: 0 total, 0 up, 0 in 2024-04-14T16:10:22.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: mgrmap e13: a(active, since 52s) 2024-04-14T16:10:22.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: overall HEALTH_OK 2024-04-14T16:10:22.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:22.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:22.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:22.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:22.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:22.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:10:22.214 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:22.214 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: mon.a calling monitor election 2024-04-14T16:10:22.214 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:22.214 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:22.214 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: mon.c calling monitor election 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: monmap epoch 2 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: last_changed 2024-04-14T16:10:16.757706+0000 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: created 2024-04-14T16:08:23.046866+0000 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: min_mon_release 19 (squid) 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: election_strategy: 1 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-14T16:10:22.215 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: 1: [v2:172.21.15.122:3300/0,v1:172.21.15.122:6789/0] mon.c 2024-04-14T16:10:22.216 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: fsmap 2024-04-14T16:10:22.216 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: osdmap e4: 0 total, 0 up, 0 in 2024-04-14T16:10:22.216 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: mgrmap e13: a(active, since 52s) 2024-04-14T16:10:22.216 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: overall HEALTH_OK 2024-04-14T16:10:22.216 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:22.216 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:22.216 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:22.216 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:22.216 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:22.233 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:10:22.233 INFO:teuthology.orchestra.run.smithi122.stdout:{"epoch":2,"fsid":"0c4012e2-fa79-11ee-bc8e-c7b262605968","modified":"2024-04-14T16:10:16.757706Z","created":"2024-04-14T16:08:23.046866Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:3300","nonce":0},{"type":"v1","addr":"172.21.15.16:6789","nonce":0}]},"addr":"172.21.15.16:6789/0","public_addr":"172.21.15.16:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:3300","nonce":0},{"type":"v1","addr":"172.21.15.122:6789","nonce":0}]},"addr":"172.21.15.122:6789/0","public_addr":"172.21.15.122:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-04-14T16:10:22.235 INFO:teuthology.orchestra.run.smithi122.stderr:dumped monmap epoch 2 2024-04-14T16:10:23.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:22 smithi016 ceph-mon[30237]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:23.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:22 smithi016 ceph-mon[30237]: Deploying daemon mon.b on smithi027 2024-04-14T16:10:23.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:22 smithi016 ceph-mon[30237]: from='client.? 172.21.15.122:0/3112913031' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-14T16:10:23.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:22 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:23.325 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:22 smithi122 ceph-mon[33752]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:23.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:22 smithi122 ceph-mon[33752]: Deploying daemon mon.b on smithi027 2024-04-14T16:10:23.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:22 smithi122 ceph-mon[33752]: from='client.? 172.21.15.122:0/3112913031' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-14T16:10:23.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:22 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:23.879 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-14T16:10:23.880 DEBUG:teuthology.orchestra.run.smithi122:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph mon dump -f json 2024-04-14T16:10:24.117 INFO:teuthology.orchestra.run.smithi122.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.c/config 2024-04-14T16:10:25.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:24 smithi016 ceph-mon[30237]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:25.191 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:24 smithi122 ceph-mon[33752]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:25.739 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: mon.b@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-04-14T16:10:25.739 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: mon.b@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-14T16:10:25.740 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T16:10:25.740 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T16:10:25.740 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-14T16:10:26.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Added host smithi027 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi122", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi027", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Updating smithi027:/etc/ceph/ceph.conf 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Updating smithi027:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Deploying cephadm binary to smithi122 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Updating smithi027:/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Updating smithi027:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:26.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Added host smithi122 2024-04-14T16:10:26.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:10:26.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/947854047' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-14T16:10:26.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/947854047' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-14T16:10:26.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: osdmap e4: 0 total, 0 up, 0 in 2024-04-14T16:10:26.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.030 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.030 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.030 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.030 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi122", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:10:26.030 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:26.030 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:26.030 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Updating smithi122:/etc/ceph/ceph.conf 2024-04-14T16:10:26.030 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Updating smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:26.030 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Updating smithi122:/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:10:26.030 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.030 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.030 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.030 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.031 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Updating smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T16:10:26.031 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.031 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:26.031 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:26.031 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:26.031 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.031 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:26.031 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:26.031 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi016:172.21.15.16=a;smithi027:172.21.15.27=b;smithi122:172.21.15.122=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:10:26.031 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Saving service mon spec with placement smithi016:172.21.15.16=a;smithi027:172.21.15.27=b;smithi122:172.21.15.122=c;count:3 2024-04-14T16:10:26.031 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Deploying daemon mon.c on smithi122 2024-04-14T16:10:26.032 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.032 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.032 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='client.? 172.21.15.122:0/3231491592' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-14T16:10:26.032 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:10:26.032 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:26.032 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: mon.a calling monitor election 2024-04-14T16:10:26.032 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.032 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:26.032 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:26.033 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: mon.c calling monitor election 2024-04-14T16:10:26.033 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.033 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:26.033 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:26.033 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:26.033 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-14T16:10:26.033 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: monmap epoch 2 2024-04-14T16:10:26.033 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:10:26.033 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: last_changed 2024-04-14T16:10:16.757706+0000 2024-04-14T16:10:26.033 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: created 2024-04-14T16:08:23.046866+0000 2024-04-14T16:10:26.033 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: min_mon_release 19 (squid) 2024-04-14T16:10:26.033 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: election_strategy: 1 2024-04-14T16:10:26.033 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: 1: [v2:172.21.15.122:3300/0,v1:172.21.15.122:6789/0] mon.c 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: fsmap 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: osdmap e4: 0 total, 0 up, 0 in 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: mgrmap e13: a(active, since 52s) 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: overall HEALTH_OK 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: Deploying daemon mon.b on smithi027 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='client.? 172.21.15.122:0/3112913031' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-14T16:10:26.034 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:26.035 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:26.035 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 ceph-mon[33435]: mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-04-14T16:10:26.035 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 bash[33397]: 5305343f485b35e75042a961aabdb5ed15ca11dd3d0d8f3a9571dd711f0dbd07 2024-04-14T16:10:26.035 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:25 smithi027 systemd[1]: Started Ceph mon.b for 0c4012e2-fa79-11ee-bc8e-c7b262605968. 2024-04-14T16:10:30.757 INFO:teuthology.orchestra.run.smithi122.stdout: 2024-04-14T16:10:30.757 INFO:teuthology.orchestra.run.smithi122.stdout:{"epoch":3,"fsid":"0c4012e2-fa79-11ee-bc8e-c7b262605968","modified":"2024-04-14T16:10:25.745491Z","created":"2024-04-14T16:08:23.046866Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:3300","nonce":0},{"type":"v1","addr":"172.21.15.16:6789","nonce":0}]},"addr":"172.21.15.16:6789/0","public_addr":"172.21.15.16:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:3300","nonce":0},{"type":"v1","addr":"172.21.15.122:6789","nonce":0}]},"addr":"172.21.15.122:6789/0","public_addr":"172.21.15.122:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:3300","nonce":0},{"type":"v1","addr":"172.21.15.27:6789","nonce":0}]},"addr":"172.21.15.27:6789/0","public_addr":"172.21.15.27:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-04-14T16:10:30.759 INFO:teuthology.orchestra.run.smithi122.stderr:dumped monmap epoch 3 2024-04-14T16:10:31.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:31.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: mon.c calling monitor election 2024-04-14T16:10:31.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:10:31.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: mon.a calling monitor election 2024-04-14T16:10:31.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:31.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:31.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: from='client.? 172.21.15.122:0/2059887830' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-14T16:10:31.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:31.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:31.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:31.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: monmap epoch 3 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: last_changed 2024-04-14T16:10:25.745491+0000 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: created 2024-04-14T16:08:23.046866+0000 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: min_mon_release 19 (squid) 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: election_strategy: 1 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: 1: [v2:172.21.15.122:3300/0,v1:172.21.15.122:6789/0] mon.c 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: 2: [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] mon.b 2024-04-14T16:10:31.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: fsmap 2024-04-14T16:10:31.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: osdmap e4: 0 total, 0 up, 0 in 2024-04-14T16:10:31.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: mgrmap e13: a(active, since 61s) 2024-04-14T16:10:31.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-04-14T16:10:31.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-04-14T16:10:31.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-04-14T16:10:31.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: mon.b (rank 2) addr [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] is down (out of quorum) 2024-04-14T16:10:31.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:31.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:31.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:31.078 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:30 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:31.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:31.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: mon.c calling monitor election 2024-04-14T16:10:31.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:10:31.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: mon.a calling monitor election 2024-04-14T16:10:31.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:31.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:31.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: from='client.? 172.21.15.122:0/2059887830' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: monmap epoch 3 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: last_changed 2024-04-14T16:10:25.745491+0000 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: created 2024-04-14T16:08:23.046866+0000 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: min_mon_release 19 (squid) 2024-04-14T16:10:31.123 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: election_strategy: 1 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: 1: [v2:172.21.15.122:3300/0,v1:172.21.15.122:6789/0] mon.c 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: 2: [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] mon.b 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: fsmap 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: osdmap e4: 0 total, 0 up, 0 in 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: mgrmap e13: a(active, since 61s) 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: mon.b (rank 2) addr [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] is down (out of quorum) 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:31.124 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:30 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:31.529 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-04-14T16:10:31.529 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph config generate-minimal-conf 2024-04-14T16:10:31.784 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:10:32.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:31 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:32.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:31 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:32.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:31 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:32.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:31 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:33.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:33.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: mon.c calling monitor election 2024-04-14T16:10:33.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:10:33.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: mon.a calling monitor election 2024-04-14T16:10:33.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:33.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:10:33.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='client.? 172.21.15.122:0/2059887830' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-14T16:10:33.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:33.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:33.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:33.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:33.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:33.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:33.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:33.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-14T16:10:33.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: monmap epoch 3 2024-04-14T16:10:33.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:10:33.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: last_changed 2024-04-14T16:10:25.745491+0000 2024-04-14T16:10:33.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: created 2024-04-14T16:08:23.046866+0000 2024-04-14T16:10:33.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: min_mon_release 19 (squid) 2024-04-14T16:10:33.027 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: election_strategy: 1 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: 1: [v2:172.21.15.122:3300/0,v1:172.21.15.122:6789/0] mon.c 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: 2: [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] mon.b 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: fsmap 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: osdmap e4: 0 total, 0 up, 0 in 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: mgrmap e13: a(active, since 61s) 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: Health check failed: 1/3 mons down, quorum a,c (MON_DOWN) 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: Health detail: HEALTH_WARN 1/3 mons down, quorum a,c 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: [WRN] MON_DOWN: 1/3 mons down, quorum a,c 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: mon.b (rank 2) addr [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] is down (out of quorum) 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.028 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:33.029 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:33.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: mon.b calling monitor election 2024-04-14T16:10:33.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: Updating smithi016:/etc/ceph/ceph.conf 2024-04-14T16:10:33.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: Updating smithi027:/etc/ceph/ceph.conf 2024-04-14T16:10:33.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: Updating smithi122:/etc/ceph/ceph.conf 2024-04-14T16:10:33.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: Updating smithi016:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:33.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: Updating smithi027:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:33.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: Updating smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:33.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: mon.b calling monitor election 2024-04-14T16:10:33.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: mon.a calling monitor election 2024-04-14T16:10:33.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: mon.c calling monitor election 2024-04-14T16:10:33.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-14T16:10:33.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: monmap epoch 3 2024-04-14T16:10:33.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:10:33.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: last_changed 2024-04-14T16:10:25.745491+0000 2024-04-14T16:10:33.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: created 2024-04-14T16:08:23.046866+0000 2024-04-14T16:10:33.624 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: min_mon_release 19 (squid) 2024-04-14T16:10:33.624 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: election_strategy: 1 2024-04-14T16:10:33.624 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-14T16:10:33.624 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: 1: [v2:172.21.15.122:3300/0,v1:172.21.15.122:6789/0] mon.c 2024-04-14T16:10:33.624 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: 2: [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] mon.b 2024-04-14T16:10:33.624 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: fsmap 2024-04-14T16:10:33.624 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: osdmap e4: 0 total, 0 up, 0 in 2024-04-14T16:10:33.624 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: mgrmap e13: a(active, since 63s) 2024-04-14T16:10:33.624 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-04-14T16:10:33.624 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: Cluster is now healthy 2024-04-14T16:10:33.624 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: overall HEALTH_OK 2024-04-14T16:10:33.624 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.625 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.625 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.625 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.625 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.625 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.625 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.625 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.625 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.625 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.625 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.625 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: Reconfiguring mon.a (unknown last config time)... 2024-04-14T16:10:33.625 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:33.626 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T16:10:33.626 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:33.626 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:33 smithi016 ceph-mon[30237]: Reconfiguring daemon mon.a on smithi016 2024-04-14T16:10:33.680 INFO:teuthology.orchestra.run.smithi016.stdout:# minimal ceph.conf for 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:10:33.680 INFO:teuthology.orchestra.run.smithi016.stdout:[global] 2024-04-14T16:10:33.680 INFO:teuthology.orchestra.run.smithi016.stdout: fsid = 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:10:33.681 INFO:teuthology.orchestra.run.smithi016.stdout: mon_host = [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] [v2:172.21.15.122:3300/0,v1:172.21.15.122:6789/0] 2024-04-14T16:10:33.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: mon.b calling monitor election 2024-04-14T16:10:33.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: Updating smithi016:/etc/ceph/ceph.conf 2024-04-14T16:10:33.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: Updating smithi027:/etc/ceph/ceph.conf 2024-04-14T16:10:33.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: Updating smithi122:/etc/ceph/ceph.conf 2024-04-14T16:10:33.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: Updating smithi016:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:33.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: Updating smithi027:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:33.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: Updating smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:33.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: mon.b calling monitor election 2024-04-14T16:10:33.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: mon.a calling monitor election 2024-04-14T16:10:33.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: mon.c calling monitor election 2024-04-14T16:10:33.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-14T16:10:33.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: monmap epoch 3 2024-04-14T16:10:33.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:10:33.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: last_changed 2024-04-14T16:10:25.745491+0000 2024-04-14T16:10:33.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: created 2024-04-14T16:08:23.046866+0000 2024-04-14T16:10:33.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: min_mon_release 19 (squid) 2024-04-14T16:10:33.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: election_strategy: 1 2024-04-14T16:10:33.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-14T16:10:33.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: 1: [v2:172.21.15.122:3300/0,v1:172.21.15.122:6789/0] mon.c 2024-04-14T16:10:33.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: 2: [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] mon.b 2024-04-14T16:10:33.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: fsmap 2024-04-14T16:10:33.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: osdmap e4: 0 total, 0 up, 0 in 2024-04-14T16:10:33.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: mgrmap e13: a(active, since 63s) 2024-04-14T16:10:33.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-04-14T16:10:33.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: Cluster is now healthy 2024-04-14T16:10:33.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: overall HEALTH_OK 2024-04-14T16:10:33.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.779 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.779 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.779 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.779 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.779 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.779 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.779 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.779 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: Reconfiguring mon.a (unknown last config time)... 2024-04-14T16:10:33.779 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:33.779 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T16:10:33.779 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:33.779 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:33 smithi027 ceph-mon[33435]: Reconfiguring daemon mon.a on smithi016 2024-04-14T16:10:33.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: mon.b calling monitor election 2024-04-14T16:10:33.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: Updating smithi016:/etc/ceph/ceph.conf 2024-04-14T16:10:33.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: Updating smithi027:/etc/ceph/ceph.conf 2024-04-14T16:10:33.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: Updating smithi122:/etc/ceph/ceph.conf 2024-04-14T16:10:33.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: Updating smithi016:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:33.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: Updating smithi027:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:33.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: Updating smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:10:33.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: mon.b calling monitor election 2024-04-14T16:10:33.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: mon.a calling monitor election 2024-04-14T16:10:33.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: mon.c calling monitor election 2024-04-14T16:10:33.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-14T16:10:33.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: monmap epoch 3 2024-04-14T16:10:33.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:10:33.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: last_changed 2024-04-14T16:10:25.745491+0000 2024-04-14T16:10:33.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: created 2024-04-14T16:08:23.046866+0000 2024-04-14T16:10:33.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: min_mon_release 19 (squid) 2024-04-14T16:10:33.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: election_strategy: 1 2024-04-14T16:10:33.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-14T16:10:33.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: 1: [v2:172.21.15.122:3300/0,v1:172.21.15.122:6789/0] mon.c 2024-04-14T16:10:33.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: 2: [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] mon.b 2024-04-14T16:10:33.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: fsmap 2024-04-14T16:10:33.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: osdmap e4: 0 total, 0 up, 0 in 2024-04-14T16:10:33.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: mgrmap e13: a(active, since 63s) 2024-04-14T16:10:33.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: Health check cleared: MON_DOWN (was: 1/3 mons down, quorum a,c) 2024-04-14T16:10:33.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: Cluster is now healthy 2024-04-14T16:10:33.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: overall HEALTH_OK 2024-04-14T16:10:33.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.829 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.829 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.829 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.829 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.829 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.829 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.829 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:33.829 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: Reconfiguring mon.a (unknown last config time)... 2024-04-14T16:10:33.829 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:33.829 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T16:10:33.829 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:33.829 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:33 smithi122 ceph-mon[33752]: Reconfiguring daemon mon.a on smithi016 2024-04-14T16:10:34.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:34 smithi016 ceph-mon[30237]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:34.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:34 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1790444328' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:34.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:34 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:34.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:34 smithi027 ceph-mon[33435]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:34.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:34 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/1790444328' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:34.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:34 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:34.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:34 smithi122 ceph-mon[33752]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:34.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:34 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/1790444328' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:34.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:34 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:10:35.030 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-04-14T16:10:35.031 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T16:10:35.031 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/etc/ceph/ceph.conf 2024-04-14T16:10:35.061 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T16:10:35.062 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:10:35.130 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-14T16:10:35.130 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/etc/ceph/ceph.conf 2024-04-14T16:10:35.170 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-14T16:10:35.170 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:10:35.245 DEBUG:teuthology.orchestra.run.smithi122:> set -ex 2024-04-14T16:10:35.245 DEBUG:teuthology.orchestra.run.smithi122:> sudo dd of=/etc/ceph/ceph.conf 2024-04-14T16:10:35.279 DEBUG:teuthology.orchestra.run.smithi122:> set -ex 2024-04-14T16:10:35.279 DEBUG:teuthology.orchestra.run.smithi122:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:10:35.348 INFO:tasks.cephadm:Adding mgr.a on smithi016 2024-04-14T16:10:35.348 INFO:tasks.cephadm:Adding mgr.b on smithi027 2024-04-14T16:10:35.348 DEBUG:teuthology.orchestra.run.smithi122:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph orch apply mgr '2;smithi016=a;smithi027=b' 2024-04-14T16:10:35.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:35 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:35.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:35 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:35.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:35 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:35.622 INFO:teuthology.orchestra.run.smithi122.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.c/config 2024-04-14T16:10:35.775 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:35 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:35.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:35 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:35.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:35 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:35.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:35 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:35.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:35 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:35.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:35 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:36.725 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:36 smithi122 ceph-mon[33752]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:36.725 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:36 smithi122 ceph-mon[33752]: Reconfiguring mon.b (monmap changed)... 2024-04-14T16:10:36.725 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:36 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:36.725 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:36 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T16:10:36.725 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:36 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:36.725 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:36 smithi122 ceph-mon[33752]: Reconfiguring daemon mon.b on smithi027 2024-04-14T16:10:36.726 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:36 smithi027 ceph-mon[33435]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:36.726 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:36 smithi027 ceph-mon[33435]: Reconfiguring mon.b (monmap changed)... 2024-04-14T16:10:36.726 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:36 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:36.726 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:36 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T16:10:36.726 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:36 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:36.726 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:36 smithi027 ceph-mon[33435]: Reconfiguring daemon mon.b on smithi027 2024-04-14T16:10:36.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:36 smithi016 ceph-mon[30237]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:36.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:36 smithi016 ceph-mon[30237]: Reconfiguring mon.b (monmap changed)... 2024-04-14T16:10:36.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:36 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:36.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:36 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T16:10:36.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:36 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:36.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:36 smithi016 ceph-mon[30237]: Reconfiguring daemon mon.b on smithi027 2024-04-14T16:10:37.458 INFO:teuthology.orchestra.run.smithi122.stdout:Scheduled mgr update... 2024-04-14T16:10:38.051 DEBUG:teuthology.orchestra.run.smithi027:mgr.b> sudo journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mgr.b.service 2024-04-14T16:10:38.054 INFO:tasks.cephadm:Deploying OSDs... 2024-04-14T16:10:38.054 DEBUG:teuthology.orchestra.run.smithi016:> set -ex 2024-04-14T16:10:38.054 DEBUG:teuthology.orchestra.run.smithi016:> dd if=/scratch_devs of=/dev/stdout 2024-04-14T16:10:38.073 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-14T16:10:38.073 DEBUG:teuthology.orchestra.run.smithi016:> stat /dev/vg_nvme/lv_1 2024-04-14T16:10:38.131 INFO:teuthology.orchestra.run.smithi016.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-14T16:10:38.131 INFO:teuthology.orchestra.run.smithi016.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T16:10:38.131 INFO:teuthology.orchestra.run.smithi016.stdout:Device: 5h/5d Inode: 665 Links: 1 2024-04-14T16:10:38.131 INFO:teuthology.orchestra.run.smithi016.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T16:10:38.131 INFO:teuthology.orchestra.run.smithi016.stdout:Context: system_u:object_r:device_t:s0 2024-04-14T16:10:38.131 INFO:teuthology.orchestra.run.smithi016.stdout:Access: 2024-04-14 16:09:42.078487054 +0000 2024-04-14T16:10:38.131 INFO:teuthology.orchestra.run.smithi016.stdout:Modify: 2024-04-14 16:03:46.009544431 +0000 2024-04-14T16:10:38.132 INFO:teuthology.orchestra.run.smithi016.stdout:Change: 2024-04-14 16:03:46.009544431 +0000 2024-04-14T16:10:38.132 INFO:teuthology.orchestra.run.smithi016.stdout: Birth: 2024-04-14 16:03:46.009544431 +0000 2024-04-14T16:10:38.132 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-14T16:10:38.202 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records in 2024-04-14T16:10:38.202 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records out 2024-04-14T16:10:38.202 INFO:teuthology.orchestra.run.smithi016.stderr:512 bytes copied, 0.000126007 s, 4.1 MB/s 2024-04-14T16:10:38.203 DEBUG:teuthology.orchestra.run.smithi016:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-14T16:10:38.262 DEBUG:teuthology.orchestra.run.smithi016:> stat /dev/vg_nvme/lv_2 2024-04-14T16:10:38.297 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:38 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:38.297 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:38 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:38.297 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:38 smithi122 ceph-mon[33752]: Reconfiguring mon.c (monmap changed)... 2024-04-14T16:10:38.297 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:38 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:38.297 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:38 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T16:10:38.298 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:38 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:38.298 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:38 smithi122 ceph-mon[33752]: Reconfiguring daemon mon.c on smithi122 2024-04-14T16:10:38.298 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:38 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:38.319 INFO:teuthology.orchestra.run.smithi016.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-14T16:10:38.319 INFO:teuthology.orchestra.run.smithi016.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T16:10:38.319 INFO:teuthology.orchestra.run.smithi016.stdout:Device: 5h/5d Inode: 686 Links: 1 2024-04-14T16:10:38.319 INFO:teuthology.orchestra.run.smithi016.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T16:10:38.319 INFO:teuthology.orchestra.run.smithi016.stdout:Context: system_u:object_r:device_t:s0 2024-04-14T16:10:38.319 INFO:teuthology.orchestra.run.smithi016.stdout:Access: 2024-04-14 16:09:42.112486501 +0000 2024-04-14T16:10:38.319 INFO:teuthology.orchestra.run.smithi016.stdout:Modify: 2024-04-14 16:03:46.357538703 +0000 2024-04-14T16:10:38.319 INFO:teuthology.orchestra.run.smithi016.stdout:Change: 2024-04-14 16:03:46.357538703 +0000 2024-04-14T16:10:38.319 INFO:teuthology.orchestra.run.smithi016.stdout: Birth: 2024-04-14 16:03:46.357538703 +0000 2024-04-14T16:10:38.319 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-14T16:10:38.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:38 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:38.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:38 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:38.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:38 smithi016 ceph-mon[30237]: Reconfiguring mon.c (monmap changed)... 2024-04-14T16:10:38.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:38 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:38.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:38 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T16:10:38.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:38 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:38.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:38 smithi016 ceph-mon[30237]: Reconfiguring daemon mon.c on smithi122 2024-04-14T16:10:38.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:38 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:38.387 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records in 2024-04-14T16:10:38.387 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records out 2024-04-14T16:10:38.387 INFO:teuthology.orchestra.run.smithi016.stderr:512 bytes copied, 0.000116286 s, 4.4 MB/s 2024-04-14T16:10:38.388 DEBUG:teuthology.orchestra.run.smithi016:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-14T16:10:38.446 DEBUG:teuthology.orchestra.run.smithi016:> stat /dev/vg_nvme/lv_3 2024-04-14T16:10:38.502 INFO:teuthology.orchestra.run.smithi016.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-14T16:10:38.502 INFO:teuthology.orchestra.run.smithi016.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T16:10:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:Device: 5h/5d Inode: 704 Links: 1 2024-04-14T16:10:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T16:10:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:Context: system_u:object_r:device_t:s0 2024-04-14T16:10:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:Access: 2024-04-14 16:09:42.146485947 +0000 2024-04-14T16:10:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:Modify: 2024-04-14 16:03:46.683533336 +0000 2024-04-14T16:10:38.502 INFO:teuthology.orchestra.run.smithi016.stdout:Change: 2024-04-14 16:03:46.683533336 +0000 2024-04-14T16:10:38.502 INFO:teuthology.orchestra.run.smithi016.stdout: Birth: 2024-04-14 16:03:46.683533336 +0000 2024-04-14T16:10:38.503 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-14T16:10:38.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:38 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:38.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:38 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:38.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:38 smithi027 ceph-mon[33435]: Reconfiguring mon.c (monmap changed)... 2024-04-14T16:10:38.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:38 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:10:38.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:38 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T16:10:38.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:38 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:38.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:38 smithi027 ceph-mon[33435]: Reconfiguring daemon mon.c on smithi122 2024-04-14T16:10:38.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:38 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:38.569 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records in 2024-04-14T16:10:38.569 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records out 2024-04-14T16:10:38.569 INFO:teuthology.orchestra.run.smithi016.stderr:512 bytes copied, 0.000115985 s, 4.4 MB/s 2024-04-14T16:10:38.570 DEBUG:teuthology.orchestra.run.smithi016:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-14T16:10:38.627 DEBUG:teuthology.orchestra.run.smithi016:> stat /dev/vg_nvme/lv_4 2024-04-14T16:10:38.685 INFO:teuthology.orchestra.run.smithi016.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-14T16:10:38.685 INFO:teuthology.orchestra.run.smithi016.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T16:10:38.685 INFO:teuthology.orchestra.run.smithi016.stdout:Device: 5h/5d Inode: 723 Links: 1 2024-04-14T16:10:38.685 INFO:teuthology.orchestra.run.smithi016.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T16:10:38.685 INFO:teuthology.orchestra.run.smithi016.stdout:Context: system_u:object_r:device_t:s0 2024-04-14T16:10:38.685 INFO:teuthology.orchestra.run.smithi016.stdout:Access: 2024-04-14 16:09:42.182485361 +0000 2024-04-14T16:10:38.685 INFO:teuthology.orchestra.run.smithi016.stdout:Modify: 2024-04-14 16:03:47.016527855 +0000 2024-04-14T16:10:38.685 INFO:teuthology.orchestra.run.smithi016.stdout:Change: 2024-04-14 16:03:47.016527855 +0000 2024-04-14T16:10:38.685 INFO:teuthology.orchestra.run.smithi016.stdout: Birth: 2024-04-14 16:03:47.016527855 +0000 2024-04-14T16:10:38.686 DEBUG:teuthology.orchestra.run.smithi016:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-14T16:10:38.752 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records in 2024-04-14T16:10:38.752 INFO:teuthology.orchestra.run.smithi016.stderr:1+0 records out 2024-04-14T16:10:38.752 INFO:teuthology.orchestra.run.smithi016.stderr:512 bytes copied, 0.000108028 s, 4.7 MB/s 2024-04-14T16:10:38.753 DEBUG:teuthology.orchestra.run.smithi016:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-14T16:10:38.810 DEBUG:teuthology.orchestra.run.smithi027:> set -ex 2024-04-14T16:10:38.810 DEBUG:teuthology.orchestra.run.smithi027:> dd if=/scratch_devs of=/dev/stdout 2024-04-14T16:10:38.830 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-14T16:10:38.831 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/vg_nvme/lv_1 2024-04-14T16:10:38.889 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-14T16:10:38.889 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T16:10:38.889 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 665 Links: 1 2024-04-14T16:10:38.889 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T16:10:38.889 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:device_t:s0 2024-04-14T16:10:38.890 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-04-14 16:10:25.202399766 +0000 2024-04-14T16:10:38.890 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-04-14 16:03:56.624664336 +0000 2024-04-14T16:10:38.890 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-04-14 16:03:56.625664311 +0000 2024-04-14T16:10:38.890 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-04-14 16:03:56.624664336 +0000 2024-04-14T16:10:38.890 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-14T16:10:38.964 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-04-14T16:10:38.964 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-04-14T16:10:38.964 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.000283365 s, 1.8 MB/s 2024-04-14T16:10:38.965 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-14T16:10:39.024 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/vg_nvme/lv_2 2024-04-14T16:10:39.082 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-14T16:10:39.082 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T16:10:39.082 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 685 Links: 1 2024-04-14T16:10:39.082 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T16:10:39.082 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:device_t:s0 2024-04-14T16:10:39.082 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-04-14 16:10:25.203399742 +0000 2024-04-14T16:10:39.082 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-04-14 16:03:56.984655449 +0000 2024-04-14T16:10:39.083 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-04-14 16:03:56.984655449 +0000 2024-04-14T16:10:39.083 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-04-14 16:03:56.984655449 +0000 2024-04-14T16:10:39.083 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-14T16:10:39.145 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:39 smithi122 ceph-mon[33752]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:39.145 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:39 smithi122 ceph-mon[33752]: from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi016=a;smithi027=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:10:39.145 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:39 smithi122 ceph-mon[33752]: Saving service mgr spec with placement smithi016=a;smithi027=b;count:2 2024-04-14T16:10:39.154 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-04-14T16:10:39.154 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-04-14T16:10:39.154 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.000172705 s, 3.0 MB/s 2024-04-14T16:10:39.156 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-14T16:10:39.213 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/vg_nvme/lv_3 2024-04-14T16:10:39.269 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-14T16:10:39.269 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T16:10:39.269 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 704 Links: 1 2024-04-14T16:10:39.269 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T16:10:39.269 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:device_t:s0 2024-04-14T16:10:39.269 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-04-14 16:10:25.203399742 +0000 2024-04-14T16:10:39.269 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-04-14 16:03:57.349646440 +0000 2024-04-14T16:10:39.270 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-04-14 16:03:57.349646440 +0000 2024-04-14T16:10:39.270 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-04-14 16:03:57.349646440 +0000 2024-04-14T16:10:39.270 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-14T16:10:39.275 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:39 smithi027 ceph-mon[33435]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:39.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:39 smithi027 ceph-mon[33435]: from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi016=a;smithi027=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:10:39.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:39 smithi027 ceph-mon[33435]: Saving service mgr spec with placement smithi016=a;smithi027=b;count:2 2024-04-14T16:10:39.304 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-04-14T16:10:39.305 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-04-14T16:10:39.305 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.000188745 s, 2.7 MB/s 2024-04-14T16:10:39.306 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-14T16:10:39.362 DEBUG:teuthology.orchestra.run.smithi027:> stat /dev/vg_nvme/lv_4 2024-04-14T16:10:39.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:39 smithi016 ceph-mon[30237]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:39.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:39 smithi016 ceph-mon[30237]: from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi016=a;smithi027=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:10:39.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:39 smithi016 ceph-mon[30237]: Saving service mgr spec with placement smithi016=a;smithi027=b;count:2 2024-04-14T16:10:39.418 INFO:teuthology.orchestra.run.smithi027.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-14T16:10:39.418 INFO:teuthology.orchestra.run.smithi027.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T16:10:39.419 INFO:teuthology.orchestra.run.smithi027.stdout:Device: 5h/5d Inode: 724 Links: 1 2024-04-14T16:10:39.419 INFO:teuthology.orchestra.run.smithi027.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T16:10:39.419 INFO:teuthology.orchestra.run.smithi027.stdout:Context: system_u:object_r:device_t:s0 2024-04-14T16:10:39.419 INFO:teuthology.orchestra.run.smithi027.stdout:Access: 2024-04-14 16:10:25.204399717 +0000 2024-04-14T16:10:39.419 INFO:teuthology.orchestra.run.smithi027.stdout:Modify: 2024-04-14 16:03:57.697637850 +0000 2024-04-14T16:10:39.419 INFO:teuthology.orchestra.run.smithi027.stdout:Change: 2024-04-14 16:03:57.697637850 +0000 2024-04-14T16:10:39.419 INFO:teuthology.orchestra.run.smithi027.stdout: Birth: 2024-04-14 16:03:57.697637850 +0000 2024-04-14T16:10:39.419 DEBUG:teuthology.orchestra.run.smithi027:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-14T16:10:39.487 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records in 2024-04-14T16:10:39.487 INFO:teuthology.orchestra.run.smithi027.stderr:1+0 records out 2024-04-14T16:10:39.487 INFO:teuthology.orchestra.run.smithi027.stderr:512 bytes copied, 0.000192686 s, 2.7 MB/s 2024-04-14T16:10:39.489 DEBUG:teuthology.orchestra.run.smithi027:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-14T16:10:39.545 DEBUG:teuthology.orchestra.run.smithi122:> set -ex 2024-04-14T16:10:39.545 DEBUG:teuthology.orchestra.run.smithi122:> dd if=/scratch_devs of=/dev/stdout 2024-04-14T16:10:39.564 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-14T16:10:39.564 DEBUG:teuthology.orchestra.run.smithi122:> stat /dev/vg_nvme/lv_1 2024-04-14T16:10:39.621 INFO:teuthology.orchestra.run.smithi122.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-14T16:10:39.621 INFO:teuthology.orchestra.run.smithi122.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T16:10:39.621 INFO:teuthology.orchestra.run.smithi122.stdout:Device: 5h/5d Inode: 666 Links: 1 2024-04-14T16:10:39.622 INFO:teuthology.orchestra.run.smithi122.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T16:10:39.622 INFO:teuthology.orchestra.run.smithi122.stdout:Context: system_u:object_r:device_t:s0 2024-04-14T16:10:39.622 INFO:teuthology.orchestra.run.smithi122.stdout:Access: 2024-04-14 16:10:16.230011073 +0000 2024-04-14T16:10:39.622 INFO:teuthology.orchestra.run.smithi122.stdout:Modify: 2024-04-14 16:03:44.492293551 +0000 2024-04-14T16:10:39.622 INFO:teuthology.orchestra.run.smithi122.stdout:Change: 2024-04-14 16:03:44.492293551 +0000 2024-04-14T16:10:39.622 INFO:teuthology.orchestra.run.smithi122.stdout: Birth: 2024-04-14 16:03:44.492293551 +0000 2024-04-14T16:10:39.622 DEBUG:teuthology.orchestra.run.smithi122:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-14T16:10:39.692 INFO:teuthology.orchestra.run.smithi122.stderr:1+0 records in 2024-04-14T16:10:39.692 INFO:teuthology.orchestra.run.smithi122.stderr:1+0 records out 2024-04-14T16:10:39.692 INFO:teuthology.orchestra.run.smithi122.stderr:512 bytes copied, 0.000229557 s, 2.2 MB/s 2024-04-14T16:10:39.694 DEBUG:teuthology.orchestra.run.smithi122:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-14T16:10:39.752 DEBUG:teuthology.orchestra.run.smithi122:> stat /dev/vg_nvme/lv_2 2024-04-14T16:10:39.808 INFO:teuthology.orchestra.run.smithi122.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-14T16:10:39.809 INFO:teuthology.orchestra.run.smithi122.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T16:10:39.809 INFO:teuthology.orchestra.run.smithi122.stdout:Device: 5h/5d Inode: 684 Links: 1 2024-04-14T16:10:39.809 INFO:teuthology.orchestra.run.smithi122.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T16:10:39.809 INFO:teuthology.orchestra.run.smithi122.stdout:Context: system_u:object_r:device_t:s0 2024-04-14T16:10:39.809 INFO:teuthology.orchestra.run.smithi122.stdout:Access: 2024-04-14 16:10:16.230011073 +0000 2024-04-14T16:10:39.809 INFO:teuthology.orchestra.run.smithi122.stdout:Modify: 2024-04-14 16:03:44.832286111 +0000 2024-04-14T16:10:39.809 INFO:teuthology.orchestra.run.smithi122.stdout:Change: 2024-04-14 16:03:44.832286111 +0000 2024-04-14T16:10:39.809 INFO:teuthology.orchestra.run.smithi122.stdout: Birth: 2024-04-14 16:03:44.832286111 +0000 2024-04-14T16:10:39.809 DEBUG:teuthology.orchestra.run.smithi122:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-14T16:10:39.877 INFO:teuthology.orchestra.run.smithi122.stderr:1+0 records in 2024-04-14T16:10:39.877 INFO:teuthology.orchestra.run.smithi122.stderr:1+0 records out 2024-04-14T16:10:39.877 INFO:teuthology.orchestra.run.smithi122.stderr:512 bytes copied, 0.000199303 s, 2.6 MB/s 2024-04-14T16:10:39.879 DEBUG:teuthology.orchestra.run.smithi122:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-14T16:10:39.936 DEBUG:teuthology.orchestra.run.smithi122:> stat /dev/vg_nvme/lv_3 2024-04-14T16:10:39.992 INFO:teuthology.orchestra.run.smithi122.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-14T16:10:39.992 INFO:teuthology.orchestra.run.smithi122.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T16:10:39.992 INFO:teuthology.orchestra.run.smithi122.stdout:Device: 5h/5d Inode: 706 Links: 1 2024-04-14T16:10:39.992 INFO:teuthology.orchestra.run.smithi122.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T16:10:39.992 INFO:teuthology.orchestra.run.smithi122.stdout:Context: system_u:object_r:device_t:s0 2024-04-14T16:10:39.992 INFO:teuthology.orchestra.run.smithi122.stdout:Access: 2024-04-14 16:10:16.230011073 +0000 2024-04-14T16:10:39.992 INFO:teuthology.orchestra.run.smithi122.stdout:Modify: 2024-04-14 16:03:45.184278410 +0000 2024-04-14T16:10:39.993 INFO:teuthology.orchestra.run.smithi122.stdout:Change: 2024-04-14 16:03:45.184278410 +0000 2024-04-14T16:10:39.993 INFO:teuthology.orchestra.run.smithi122.stdout: Birth: 2024-04-14 16:03:45.184278410 +0000 2024-04-14T16:10:39.993 DEBUG:teuthology.orchestra.run.smithi122:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-14T16:10:40.060 INFO:teuthology.orchestra.run.smithi122.stderr:1+0 records in 2024-04-14T16:10:40.060 INFO:teuthology.orchestra.run.smithi122.stderr:1+0 records out 2024-04-14T16:10:40.060 INFO:teuthology.orchestra.run.smithi122.stderr:512 bytes copied, 0.000179817 s, 2.8 MB/s 2024-04-14T16:10:40.062 DEBUG:teuthology.orchestra.run.smithi122:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-14T16:10:40.118 DEBUG:teuthology.orchestra.run.smithi122:> stat /dev/vg_nvme/lv_4 2024-04-14T16:10:40.173 INFO:teuthology.orchestra.run.smithi122.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-14T16:10:40.173 INFO:teuthology.orchestra.run.smithi122.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-14T16:10:40.173 INFO:teuthology.orchestra.run.smithi122.stdout:Device: 5h/5d Inode: 725 Links: 1 2024-04-14T16:10:40.173 INFO:teuthology.orchestra.run.smithi122.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-14T16:10:40.173 INFO:teuthology.orchestra.run.smithi122.stdout:Context: system_u:object_r:device_t:s0 2024-04-14T16:10:40.173 INFO:teuthology.orchestra.run.smithi122.stdout:Access: 2024-04-14 16:10:16.231011051 +0000 2024-04-14T16:10:40.173 INFO:teuthology.orchestra.run.smithi122.stdout:Modify: 2024-04-14 16:03:45.523270993 +0000 2024-04-14T16:10:40.173 INFO:teuthology.orchestra.run.smithi122.stdout:Change: 2024-04-14 16:03:45.523270993 +0000 2024-04-14T16:10:40.173 INFO:teuthology.orchestra.run.smithi122.stdout: Birth: 2024-04-14 16:03:45.523270993 +0000 2024-04-14T16:10:40.173 DEBUG:teuthology.orchestra.run.smithi122:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-14T16:10:40.239 INFO:teuthology.orchestra.run.smithi122.stderr:1+0 records in 2024-04-14T16:10:40.239 INFO:teuthology.orchestra.run.smithi122.stderr:1+0 records out 2024-04-14T16:10:40.239 INFO:teuthology.orchestra.run.smithi122.stderr:512 bytes copied, 0.00021804 s, 2.3 MB/s 2024-04-14T16:10:40.241 DEBUG:teuthology.orchestra.run.smithi122:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-14T16:10:40.297 INFO:tasks.cephadm:Deploying osd.0 on smithi016 with /dev/vg_nvme/lv_4... 2024-04-14T16:10:40.297 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-14T16:10:40.310 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:40 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:40.310 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:40 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:40.310 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:40 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:40.310 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:40 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:40.310 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:40 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:40.310 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:40 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:40.311 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:40 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T16:10:40.311 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:40 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-14T16:10:40.311 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:40 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T16:10:40.311 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:40 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:40.507 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:40.507 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:40.507 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:40.507 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:40.507 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:40.507 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:40.507 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T16:10:40.507 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-14T16:10:40.507 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T16:10:40.507 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:40.536 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:10:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T16:10:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-14T16:10:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T16:10:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:41.344 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:41 smithi016 ceph-mon[30237]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:41.344 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:41 smithi016 ceph-mon[30237]: Deploying daemon mgr.b on smithi027 2024-04-14T16:10:41.456 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:41 smithi027 ceph-mon[33435]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:41.456 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:41 smithi027 ceph-mon[33435]: Deploying daemon mgr.b on smithi027 2024-04-14T16:10:41.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:41 smithi122 ceph-mon[33752]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:41.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:41 smithi122 ceph-mon[33752]: Deploying daemon mgr.b on smithi027 2024-04-14T16:10:42.026 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:41 smithi027 systemd[1]: Starting Ceph mgr.b for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:10:42.285 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:42 smithi027 podman[34873]: 2024-04-14 16:10:42.033606796 +0000 UTC m=+0.018084344 image pull b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608 2024-04-14T16:10:42.285 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:42 smithi027 podman[34873]: 2024-04-14 16:10:42.166443742 +0000 UTC m=+0.150921282 container create 0bb97361c8eed731c6881f36d8759f500df86708acf8b56be99803c359b9a8ac (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b, RELEASE=main-a971fd5, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240403, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, ceph=True, GIT_CLEAN=True, org.label-schema.vendor=CentOS) 2024-04-14T16:10:42.554 INFO:teuthology.orchestra.run.smithi016.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-14T16:10:42.554 INFO:teuthology.orchestra.run.smithi016.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-14T16:10:42.554 INFO:teuthology.orchestra.run.smithi016.stderr: stderr: 10+0 records in 2024-04-14T16:10:42.554 INFO:teuthology.orchestra.run.smithi016.stderr:10+0 records out 2024-04-14T16:10:42.554 INFO:teuthology.orchestra.run.smithi016.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.00848405 s, 1.2 GB/s 2024-04-14T16:10:42.554 INFO:teuthology.orchestra.run.smithi016.stderr:--> Zapping successful for: 2024-04-14T16:10:42.776 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:42 smithi027 podman[34873]: 2024-04-14 16:10:42.385572464 +0000 UTC m=+0.370050007 container init 0bb97361c8eed731c6881f36d8759f500df86708acf8b56be99803c359b9a8ac (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, RELEASE=main-a971fd5, org.label-schema.license=GPLv2, org.label-schema.build-date=20240403, GIT_BRANCH=HEAD, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS) 2024-04-14T16:10:42.776 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:42 smithi027 podman[34873]: 2024-04-14 16:10:42.391272503 +0000 UTC m=+0.375750043 container start 0bb97361c8eed731c6881f36d8759f500df86708acf8b56be99803c359b9a8ac (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b, org.label-schema.build-date=20240403, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, ceph=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, RELEASE=main-a971fd5) 2024-04-14T16:10:42.776 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:42 smithi027 ceph-mgr[34911]: -- 172.21.15.27:0/1672108741 <== mon.2 v2:172.21.15.27:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x560f5a5d65a0 con 0x560f5a5aac00 2024-04-14T16:10:42.776 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:42 smithi027 bash[34873]: 0bb97361c8eed731c6881f36d8759f500df86708acf8b56be99803c359b9a8ac 2024-04-14T16:10:42.776 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:42 smithi027 systemd[1]: Started Ceph mgr.b for 0c4012e2-fa79-11ee-bc8e-c7b262605968. 2024-04-14T16:10:43.144 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph orch daemon add osd smithi016:vg_nvme/lv_4 2024-04-14T16:10:43.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:43 smithi027 ceph-mon[33435]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:43.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:43 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:43.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:43 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:43.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:43 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:43.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:43 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:43.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:43 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:43.276 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:42 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:42.964+0000 7f61cf2f7200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-14T16:10:43.277 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:43 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:43.063+0000 7f61cf2f7200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-14T16:10:43.386 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:10:43.509 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:43 smithi016 ceph-mon[30237]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:43.509 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:43 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:43.509 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:43 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:43.509 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:43 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:43.509 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:43 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:43.509 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:43 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:43.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:43 smithi122 ceph-mon[33752]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:43.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:43 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:43.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:43 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:43.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:43 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:43.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:43 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:43.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:43 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:43.873 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:43 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:43.773+0000 7f61cf2f7200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-14T16:10:43.873 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:43 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:43.871+0000 7f61cf2f7200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-14T16:10:44.125 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:44 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:44.023+0000 7f61cf2f7200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-14T16:10:44.506 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:44 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:44.131+0000 7f61cf2f7200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-14T16:10:44.506 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:44 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:44.222+0000 7f61cf2f7200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-14T16:10:44.506 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:44 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:44.504+0000 7f61cf2f7200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-14T16:10:44.776 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:44 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:44.620+0000 7f61cf2f7200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-14T16:10:44.776 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:44 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:44.710+0000 7f61cf2f7200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-14T16:10:45.104 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:44 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:44.809+0000 7f61cf2f7200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-14T16:10:45.104 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:44 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:44.993+0000 7f61cf2f7200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-14T16:10:45.116 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:45 smithi016 ceph-mon[30237]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:45.116 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:45 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:45.116 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:45 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:45.116 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:45 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:45.117 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:45 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:45.117 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:45 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:45.117 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:45 smithi016 ceph-mon[30237]: Reconfiguring mgr.a (unknown last config time)... 2024-04-14T16:10:45.117 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:45 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T16:10:45.117 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:45 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T16:10:45.117 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:45 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:45.117 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:45 smithi016 ceph-mon[30237]: Reconfiguring daemon mgr.a on smithi016 2024-04-14T16:10:45.117 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:45 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:45.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:45 smithi027 ceph-mon[33435]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:45.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:45 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:45.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:45 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:45.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:45 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:45.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:45 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:45.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:45 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:45.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:45 smithi027 ceph-mon[33435]: Reconfiguring mgr.a (unknown last config time)... 2024-04-14T16:10:45.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:45 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T16:10:45.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:45 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T16:10:45.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:45 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:45.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:45 smithi027 ceph-mon[33435]: Reconfiguring daemon mgr.a on smithi016 2024-04-14T16:10:45.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:45 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:45.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:45 smithi122 ceph-mon[33752]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:45.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:45 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:45.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:45 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:45.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:45 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:45.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:45 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:45.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:45 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:45.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:45 smithi122 ceph-mon[33752]: Reconfiguring mgr.a (unknown last config time)... 2024-04-14T16:10:45.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:45 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T16:10:45.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:45 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T16:10:45.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:45 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:45.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:45 smithi122 ceph-mon[33752]: Reconfiguring daemon mgr.a on smithi016 2024-04-14T16:10:45.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:45 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:46.307 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:46 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:10:46.308 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:46 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:10:46.308 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:46 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:46.512 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:46 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:10:46.512 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:46 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:10:46.512 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:46 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:46.512 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:46 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:46.027+0000 7f61cf2f7200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-14T16:10:46.513 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:46 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:46.163+0000 7f61cf2f7200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-14T16:10:46.513 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:46 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:46.510+0000 7f61cf2f7200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-14T16:10:46.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:46 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:10:46.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:46 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:10:46.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:46 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:46.776 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:46 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:46.603+0000 7f61cf2f7200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-14T16:10:47.276 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:46 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:46.806+0000 7f61cf2f7200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-14T16:10:47.276 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:46 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:46.997+0000 7f61cf2f7200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-14T16:10:47.502 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:47 smithi016 ceph-mon[30237]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:47.503 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:47 smithi016 ceph-mon[30237]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi016:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:10:47.503 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:47.503 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:47.503 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:47.503 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:47.503 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:47.503 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:47.563 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:47 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:47.291+0000 7f61cf2f7200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-14T16:10:47.563 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:47 smithi027 ceph-mon[33435]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:47.563 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:47 smithi027 ceph-mon[33435]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi016:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:10:47.563 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:47.563 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:47.563 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:47.563 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:47.564 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:47.564 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:47.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:47 smithi122 ceph-mon[33752]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:47.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:47 smithi122 ceph-mon[33752]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi016:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:10:47.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:47.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:47.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:10:47.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:47.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:10:47.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:10:48.026 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:47 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:47.561+0000 7f61cf2f7200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-14T16:10:48.026 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:47 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:47.807+0000 7f61cf2f7200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-14T16:10:49.026 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:48 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:48.645+0000 7f61cf2f7200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-14T16:10:49.526 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:49 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:49.240+0000 7f61cf2f7200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-14T16:10:49.526 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:49 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:49.341+0000 7f61cf2f7200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-14T16:10:49.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:49 smithi027 ceph-mon[33435]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:49.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:49 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/354555373' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9bf0a155-4dd2-4a8e-8f8c-6705f6c447b8"}]: dispatch 2024-04-14T16:10:49.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:49 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/354555373' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9bf0a155-4dd2-4a8e-8f8c-6705f6c447b8"}]': finished 2024-04-14T16:10:49.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:49 smithi027 ceph-mon[33435]: osdmap e5: 1 total, 0 up, 1 in 2024-04-14T16:10:49.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:49 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:10:49.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:49 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/2339012130' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:10:49.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:49 smithi122 ceph-mon[33752]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:49.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:49 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/354555373' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9bf0a155-4dd2-4a8e-8f8c-6705f6c447b8"}]: dispatch 2024-04-14T16:10:49.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:49 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/354555373' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9bf0a155-4dd2-4a8e-8f8c-6705f6c447b8"}]': finished 2024-04-14T16:10:49.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:49 smithi122 ceph-mon[33752]: osdmap e5: 1 total, 0 up, 1 in 2024-04-14T16:10:49.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:49 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:10:49.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:49 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/2339012130' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:10:49.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:49 smithi016 ceph-mon[30237]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:49.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:49 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/354555373' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "9bf0a155-4dd2-4a8e-8f8c-6705f6c447b8"}]: dispatch 2024-04-14T16:10:49.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:49 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/354555373' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "9bf0a155-4dd2-4a8e-8f8c-6705f6c447b8"}]': finished 2024-04-14T16:10:49.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:49 smithi016 ceph-mon[30237]: osdmap e5: 1 total, 0 up, 1 in 2024-04-14T16:10:49.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:49 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:10:49.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:49 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/2339012130' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:10:50.026 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:10:49 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b[34888]: 2024-04-14T16:10:49.565+0000 7f61cf2f7200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-14T16:10:50.744 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:50 smithi122 ceph-mon[33752]: Standby manager daemon b started 2024-04-14T16:10:50.744 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:50 smithi122 ceph-mon[33752]: from='mgr.? 172.21.15.27:0/3665679188' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-14T16:10:50.744 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:50 smithi122 ceph-mon[33752]: from='mgr.? 172.21.15.27:0/3665679188' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-14T16:10:50.744 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:50 smithi122 ceph-mon[33752]: from='mgr.? 172.21.15.27:0/3665679188' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-14T16:10:50.744 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:50 smithi122 ceph-mon[33752]: from='mgr.? 172.21.15.27:0/3665679188' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-14T16:10:50.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:50 smithi027 ceph-mon[33435]: Standby manager daemon b started 2024-04-14T16:10:50.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:50 smithi027 ceph-mon[33435]: from='mgr.? 172.21.15.27:0/3665679188' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-14T16:10:50.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:50 smithi027 ceph-mon[33435]: from='mgr.? 172.21.15.27:0/3665679188' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-14T16:10:50.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:50 smithi027 ceph-mon[33435]: from='mgr.? 172.21.15.27:0/3665679188' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-14T16:10:50.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:50 smithi027 ceph-mon[33435]: from='mgr.? 172.21.15.27:0/3665679188' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-14T16:10:50.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:50 smithi016 ceph-mon[30237]: Standby manager daemon b started 2024-04-14T16:10:50.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:50 smithi016 ceph-mon[30237]: from='mgr.? 172.21.15.27:0/3665679188' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-14T16:10:50.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:50 smithi016 ceph-mon[30237]: from='mgr.? 172.21.15.27:0/3665679188' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-14T16:10:50.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:50 smithi016 ceph-mon[30237]: from='mgr.? 172.21.15.27:0/3665679188' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-14T16:10:50.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:50 smithi016 ceph-mon[30237]: from='mgr.? 172.21.15.27:0/3665679188' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-14T16:10:51.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:51 smithi122 ceph-mon[33752]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:51.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:51 smithi122 ceph-mon[33752]: mgrmap e14: a(active, since 80s), standbys: b 2024-04-14T16:10:51.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:51 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-14T16:10:51.713 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:51 smithi016 ceph-mon[30237]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:51.713 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:51 smithi016 ceph-mon[30237]: mgrmap e14: a(active, since 80s), standbys: b 2024-04-14T16:10:51.713 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:51 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-14T16:10:51.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:51 smithi027 ceph-mon[33435]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:51.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:51 smithi027 ceph-mon[33435]: mgrmap e14: a(active, since 80s), standbys: b 2024-04-14T16:10:51.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:51 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-14T16:10:53.469 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:53 smithi016 ceph-mon[30237]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:53.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:53 smithi027 ceph-mon[33435]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:53.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:53 smithi122 ceph-mon[33752]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:55.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:55 smithi027 ceph-mon[33435]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:55.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:55 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-14T16:10:55.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:55 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:55.654 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:55 smithi016 ceph-mon[30237]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:55.654 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:55 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-14T16:10:55.654 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:55 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:55.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:55 smithi122 ceph-mon[33752]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:55.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:55 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-14T16:10:55.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:55 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:10:56.668 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:56 smithi016 ceph-mon[30237]: Deploying daemon osd.0 on smithi016 2024-04-14T16:10:56.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:56 smithi027 ceph-mon[33435]: Deploying daemon osd.0 on smithi016 2024-04-14T16:10:56.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:56 smithi122 ceph-mon[33752]: Deploying daemon osd.0 on smithi016 2024-04-14T16:10:57.604 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:57 smithi016 ceph-mon[30237]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:57.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:57 smithi027 ceph-mon[33435]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:57.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:57 smithi122 ceph-mon[33752]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:59.588 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:10:59 smithi016 ceph-mon[30237]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:59.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:10:59 smithi027 ceph-mon[33435]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:10:59.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:10:59 smithi122 ceph-mon[33752]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:11:01.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:01 smithi016 ceph-mon[30237]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:11:01.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:01 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:01.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:01 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:01.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:01 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:01.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:01 smithi027 ceph-mon[33435]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:11:01.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:01 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:01.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:01 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:01.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:01 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:01.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:01 smithi122 ceph-mon[33752]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:11:01.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:01 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:01.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:01 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:01.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:01 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:03.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:03 smithi027 ceph-mon[33435]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:11:03.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:03 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:03.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:03 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:03.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:03 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:03.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:03 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:03.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:03 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:03.564 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:03 smithi016 ceph-mon[30237]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:11:03.564 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:03 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:03.564 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:03 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:03.564 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:03 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:03.564 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:03 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:03.564 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:03 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:03.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:03 smithi122 ceph-mon[33752]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:11:03.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:03 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:03.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:03 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:03.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:03 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:03.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:03 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:03.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:03 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:03.901 INFO:teuthology.orchestra.run.smithi016.stdout:Created osd(s) 0 on host 'smithi016' 2024-04-14T16:11:04.393 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:04 smithi016 ceph-mon[30237]: from='osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-14T16:11:04.393 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:04.393 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:04.393 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:04.421 DEBUG:teuthology.orchestra.run.smithi016:osd.0> sudo journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.0.service 2024-04-14T16:11:04.423 INFO:tasks.cephadm:Deploying osd.1 on smithi016 with /dev/vg_nvme/lv_3... 2024-04-14T16:11:04.423 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-14T16:11:04.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:04 smithi027 ceph-mon[33435]: from='osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-14T16:11:04.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:04.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:04.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:04.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:04 smithi122 ceph-mon[33752]: from='osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-14T16:11:04.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:04.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:04.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:05.433 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:05 smithi016 ceph-mon[30237]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:11:05.433 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:05 smithi016 ceph-mon[30237]: from='osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-14T16:11:05.433 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:05 smithi016 ceph-mon[30237]: osdmap e6: 1 total, 0 up, 1 in 2024-04-14T16:11:05.433 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:05 smithi016 ceph-mon[30237]: from='osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]: dispatch 2024-04-14T16:11:05.433 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:05 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:05.433 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:11:05 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0[46370]: 2024-04-14T16:11:05.133+0000 7f9a648f4700 -1 osd.0 0 waiting for initial osdmap 2024-04-14T16:11:05.433 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:11:05 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0[46370]: 2024-04-14T16:11:05.137+0000 7f9a606e7700 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-14T16:11:05.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:05 smithi027 ceph-mon[33435]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:11:05.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:05 smithi027 ceph-mon[33435]: from='osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-14T16:11:05.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:05 smithi027 ceph-mon[33435]: osdmap e6: 1 total, 0 up, 1 in 2024-04-14T16:11:05.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:05 smithi027 ceph-mon[33435]: from='osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]: dispatch 2024-04-14T16:11:05.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:05 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:05.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:05 smithi122 ceph-mon[33752]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:11:05.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:05 smithi122 ceph-mon[33752]: from='osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-14T16:11:05.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:05 smithi122 ceph-mon[33752]: osdmap e6: 1 total, 0 up, 1 in 2024-04-14T16:11:05.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:05 smithi122 ceph-mon[33752]: from='osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]: dispatch 2024-04-14T16:11:05.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:05 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:05.935 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:11:06.289 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:06 smithi016 ceph-mon[30237]: from='osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]': finished 2024-04-14T16:11:06.289 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:06 smithi016 ceph-mon[30237]: osdmap e7: 1 total, 0 up, 1 in 2024-04-14T16:11:06.289 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:06 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:06.289 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:06 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:06.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:06 smithi027 ceph-mon[33435]: from='osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]': finished 2024-04-14T16:11:06.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:06 smithi027 ceph-mon[33435]: osdmap e7: 1 total, 0 up, 1 in 2024-04-14T16:11:06.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:06 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:06.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:06 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:06.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:06 smithi122 ceph-mon[33752]: from='osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]': finished 2024-04-14T16:11:06.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:06 smithi122 ceph-mon[33752]: osdmap e7: 1 total, 0 up, 1 in 2024-04-14T16:11:06.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:06 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:06.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:06 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:07.506 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:07 smithi016 ceph-mon[30237]: purged_snaps scrub starts 2024-04-14T16:11:07.506 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:07 smithi016 ceph-mon[30237]: purged_snaps scrub ok 2024-04-14T16:11:07.506 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:07 smithi016 ceph-mon[30237]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:11:07.506 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:07 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:07.506 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:07 smithi016 ceph-mon[30237]: osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363] boot 2024-04-14T16:11:07.506 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:07 smithi016 ceph-mon[30237]: osdmap e8: 1 total, 1 up, 1 in 2024-04-14T16:11:07.506 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:07 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:07.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:07 smithi027 ceph-mon[33435]: purged_snaps scrub starts 2024-04-14T16:11:07.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:07 smithi027 ceph-mon[33435]: purged_snaps scrub ok 2024-04-14T16:11:07.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:07 smithi027 ceph-mon[33435]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:11:07.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:07 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:07.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:07 smithi027 ceph-mon[33435]: osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363] boot 2024-04-14T16:11:07.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:07 smithi027 ceph-mon[33435]: osdmap e8: 1 total, 1 up, 1 in 2024-04-14T16:11:07.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:07 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:07.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:07 smithi122 ceph-mon[33752]: purged_snaps scrub starts 2024-04-14T16:11:07.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:07 smithi122 ceph-mon[33752]: purged_snaps scrub ok 2024-04-14T16:11:07.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:07 smithi122 ceph-mon[33752]: pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-14T16:11:07.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:07 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:07.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:07 smithi122 ceph-mon[33752]: osd.0 [v2:172.21.15.16:6802/324536363,v1:172.21.15.16:6803/324536363] boot 2024-04-14T16:11:07.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:07 smithi122 ceph-mon[33752]: osdmap e8: 1 total, 1 up, 1 in 2024-04-14T16:11:07.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:07 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-14T16:11:08.294 INFO:teuthology.orchestra.run.smithi016.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-14T16:11:08.322 INFO:teuthology.orchestra.run.smithi016.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-14T16:11:08.322 INFO:teuthology.orchestra.run.smithi016.stderr: stderr: 10+0 records in 2024-04-14T16:11:08.322 INFO:teuthology.orchestra.run.smithi016.stderr:10+0 records out 2024-04-14T16:11:08.322 INFO:teuthology.orchestra.run.smithi016.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.00827756 s, 1.3 GB/s 2024-04-14T16:11:08.322 INFO:teuthology.orchestra.run.smithi016.stderr:--> Zapping successful for: 2024-04-14T16:11:08.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:08 smithi027 ceph-mon[33435]: Detected new or changed devices on smithi016 2024-04-14T16:11:08.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:08 smithi027 ceph-mon[33435]: osdmap e9: 1 total, 1 up, 1 in 2024-04-14T16:11:08.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:08 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:08.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:08 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:08.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:08 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:11:08.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:08 smithi027 ceph-mon[33435]: Adjusting osd_memory_target on smithi016 to 17093M 2024-04-14T16:11:08.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:08 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:08.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:08 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:08.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:08 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:08.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:08 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:08.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:08 smithi122 ceph-mon[33752]: Detected new or changed devices on smithi016 2024-04-14T16:11:08.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:08 smithi122 ceph-mon[33752]: osdmap e9: 1 total, 1 up, 1 in 2024-04-14T16:11:08.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:08 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:08.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:08 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:08.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:08 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:11:08.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:08 smithi122 ceph-mon[33752]: Adjusting osd_memory_target on smithi016 to 17093M 2024-04-14T16:11:08.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:08 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:08.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:08 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:08.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:08 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:08.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:08 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:08.603 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:08 smithi016 ceph-mon[30237]: Detected new or changed devices on smithi016 2024-04-14T16:11:08.604 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:08 smithi016 ceph-mon[30237]: osdmap e9: 1 total, 1 up, 1 in 2024-04-14T16:11:08.604 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:08 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:08.604 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:08 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:08.604 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:08 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:11:08.604 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:08 smithi016 ceph-mon[30237]: Adjusting osd_memory_target on smithi016 to 17093M 2024-04-14T16:11:08.604 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:08 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:08.604 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:08 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:08.604 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:08 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:08.604 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:08 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:08.883 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph orch daemon add osd smithi016:vg_nvme/lv_3 2024-04-14T16:11:09.125 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:11:09.477 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:09 smithi122 ceph-mon[33752]: pgmap v48: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:09.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:09 smithi027 ceph-mon[33435]: pgmap v48: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:09.532 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:09 smithi016 ceph-mon[30237]: pgmap v48: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:11.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:11 smithi027 ceph-mon[33435]: pgmap v49: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:11.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:11 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:11:11.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:11 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:11:11.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:11 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:11.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:11 smithi122 ceph-mon[33752]: pgmap v49: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:11.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:11 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:11:11.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:11 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:11:11.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:11 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:11.605 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:11 smithi016 ceph-mon[30237]: pgmap v49: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:11.606 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:11 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:11:11.606 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:11 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:11:11.606 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:11 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:12.443 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:12 smithi027 ceph-mon[33435]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi016:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:11:12.452 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:12 smithi016 ceph-mon[30237]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi016:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:11:12.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:12 smithi122 ceph-mon[33752]: from='client.14244 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi016:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:11:13.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:13 smithi016 ceph-mon[30237]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:13.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:13 smithi027 ceph-mon[33435]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:13.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:13 smithi122 ceph-mon[33752]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:14.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:14 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/1200065090' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "12aa7d4e-952e-419a-832b-f71136f4116c"}]: dispatch 2024-04-14T16:11:14.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:14 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/1200065090' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "12aa7d4e-952e-419a-832b-f71136f4116c"}]': finished 2024-04-14T16:11:14.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:14 smithi027 ceph-mon[33435]: osdmap e10: 2 total, 1 up, 2 in 2024-04-14T16:11:14.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:14 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:14.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:14 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/1200065090' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "12aa7d4e-952e-419a-832b-f71136f4116c"}]: dispatch 2024-04-14T16:11:14.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:14 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/1200065090' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "12aa7d4e-952e-419a-832b-f71136f4116c"}]': finished 2024-04-14T16:11:14.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:14 smithi122 ceph-mon[33752]: osdmap e10: 2 total, 1 up, 2 in 2024-04-14T16:11:14.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:14 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:14.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:14 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1200065090' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "12aa7d4e-952e-419a-832b-f71136f4116c"}]: dispatch 2024-04-14T16:11:14.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:14 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1200065090' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "12aa7d4e-952e-419a-832b-f71136f4116c"}]': finished 2024-04-14T16:11:14.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:14 smithi016 ceph-mon[30237]: osdmap e10: 2 total, 1 up, 2 in 2024-04-14T16:11:14.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:14 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:15.522 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:15 smithi016 ceph-mon[30237]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:15.522 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:15 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/2566653452' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:11:15.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:15 smithi027 ceph-mon[33435]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:15.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:15 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/2566653452' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:11:15.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:15 smithi122 ceph-mon[33752]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:15.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:15 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/2566653452' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:11:17.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:17 smithi027 ceph-mon[33435]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:17.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:17 smithi122 ceph-mon[33752]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:17.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:17 smithi016 ceph-mon[30237]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:19.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:19 smithi027 ceph-mon[33435]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:19.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:19 smithi122 ceph-mon[33752]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:19.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:19 smithi016 ceph-mon[30237]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:20.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:20 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-14T16:11:20.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:20 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:20.575 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:20 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-14T16:11:20.575 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:20 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:20.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:20 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-14T16:11:20.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:20 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:21.463 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:21 smithi016 ceph-mon[30237]: pgmap v55: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:21.463 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:21 smithi016 ceph-mon[30237]: Deploying daemon osd.1 on smithi016 2024-04-14T16:11:21.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:21 smithi027 ceph-mon[33435]: pgmap v55: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:21.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:21 smithi027 ceph-mon[33435]: Deploying daemon osd.1 on smithi016 2024-04-14T16:11:21.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:21 smithi122 ceph-mon[33752]: pgmap v55: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:21.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:21 smithi122 ceph-mon[33752]: Deploying daemon osd.1 on smithi016 2024-04-14T16:11:23.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:23 smithi027 ceph-mon[33435]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:23.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:23 smithi122 ceph-mon[33752]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:23.617 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:23 smithi016 ceph-mon[30237]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:25.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:25 smithi027 ceph-mon[33435]: pgmap v57: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:25.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:25 smithi122 ceph-mon[33752]: pgmap v57: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:25.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:25 smithi016 ceph-mon[30237]: pgmap v57: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:26.530 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:26 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:26.530 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:26 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:26.530 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:26 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:26.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:26 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:26.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:26 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:26.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:26 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:26.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:26 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:26.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:26 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:26.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:26 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:27.364 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:27 smithi016 ceph-mon[30237]: pgmap v58: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:27.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:27 smithi122 ceph-mon[33752]: pgmap v58: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:27.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:27 smithi027 ceph-mon[33435]: pgmap v58: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:29.004 INFO:teuthology.orchestra.run.smithi016.stdout:Created osd(s) 1 on host 'smithi016' 2024-04-14T16:11:29.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:29 smithi016 ceph-mon[30237]: pgmap v59: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:29.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:29.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:29.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:29 smithi016 ceph-mon[30237]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-14T16:11:29.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:29.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:29 smithi027 ceph-mon[33435]: pgmap v59: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:29.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:29 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:29 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:29 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:29.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:29 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:29.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:29 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:29 smithi027 ceph-mon[33435]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-14T16:11:29.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:29 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:29 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:29 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:29.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:29 smithi122 ceph-mon[33752]: pgmap v59: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:29.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:29 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:29 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:29 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:29.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:29 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:29.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:29 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:29 smithi122 ceph-mon[33752]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-14T16:11:29.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:29 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:29 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:29.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:29 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:29.786 DEBUG:teuthology.orchestra.run.smithi016:osd.1> sudo journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.1.service 2024-04-14T16:11:29.788 INFO:tasks.cephadm:Deploying osd.2 on smithi027 with /dev/vg_nvme/lv_4... 2024-04-14T16:11:29.789 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-14T16:11:30.048 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.b/config 2024-04-14T16:11:30.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:30 smithi027 ceph-mon[33435]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-14T16:11:30.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:30 smithi027 ceph-mon[33435]: osdmap e11: 2 total, 1 up, 2 in 2024-04-14T16:11:30.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:30 smithi027 ceph-mon[33435]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]: dispatch 2024-04-14T16:11:30.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:30 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:30.560 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:30 smithi016 ceph-mon[30237]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-14T16:11:30.561 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:30 smithi016 ceph-mon[30237]: osdmap e11: 2 total, 1 up, 2 in 2024-04-14T16:11:30.561 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:30 smithi016 ceph-mon[30237]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]: dispatch 2024-04-14T16:11:30.561 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:30 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:30.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:30 smithi122 ceph-mon[33752]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-14T16:11:30.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:30 smithi122 ceph-mon[33752]: osdmap e11: 2 total, 1 up, 2 in 2024-04-14T16:11:30.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:30 smithi122 ceph-mon[33752]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]: dispatch 2024-04-14T16:11:30.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:30 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:30.871 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:11:30 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1[52439]: 2024-04-14T16:11:30.558+0000 7f9cc96c7700 -1 osd.1 0 waiting for initial osdmap 2024-04-14T16:11:30.872 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:11:30 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1[52439]: 2024-04-14T16:11:30.561+0000 7f9cc14b2700 -1 osd.1 12 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-14T16:11:31.478 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:31 smithi027 ceph-mon[33435]: pgmap v61: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:31.478 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:31 smithi027 ceph-mon[33435]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]': finished 2024-04-14T16:11:31.478 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:31 smithi027 ceph-mon[33435]: osdmap e12: 2 total, 1 up, 2 in 2024-04-14T16:11:31.478 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:31 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:31.478 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:31 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:31.478 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:31 smithi027 ceph-mon[33435]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' 2024-04-14T16:11:31.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:31 smithi122 ceph-mon[33752]: pgmap v61: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:31.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:31 smithi122 ceph-mon[33752]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]': finished 2024-04-14T16:11:31.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:31 smithi122 ceph-mon[33752]: osdmap e12: 2 total, 1 up, 2 in 2024-04-14T16:11:31.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:31 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:31.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:31 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:31.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:31 smithi122 ceph-mon[33752]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' 2024-04-14T16:11:31.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:31 smithi016 ceph-mon[30237]: pgmap v61: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:31.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:31 smithi016 ceph-mon[30237]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi016", "root=default"]}]': finished 2024-04-14T16:11:31.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:31 smithi016 ceph-mon[30237]: osdmap e12: 2 total, 1 up, 2 in 2024-04-14T16:11:31.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:31 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:31.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:31 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:31.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:31 smithi016 ceph-mon[30237]: from='osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655]' entity='osd.1' 2024-04-14T16:11:32.059 INFO:teuthology.orchestra.run.smithi027.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-14T16:11:32.060 INFO:teuthology.orchestra.run.smithi027.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-14T16:11:32.060 INFO:teuthology.orchestra.run.smithi027.stderr: stderr: 10+0 records in 2024-04-14T16:11:32.060 INFO:teuthology.orchestra.run.smithi027.stderr:10+0 records out 2024-04-14T16:11:32.060 INFO:teuthology.orchestra.run.smithi027.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0128924 s, 813 MB/s 2024-04-14T16:11:32.060 INFO:teuthology.orchestra.run.smithi027.stderr: stderr: 2024-04-14T16:11:32.060 INFO:teuthology.orchestra.run.smithi027.stderr:--> Zapping successful for: 2024-04-14T16:11:32.323 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:32 smithi027 ceph-mon[33435]: purged_snaps scrub starts 2024-04-14T16:11:32.323 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:32 smithi027 ceph-mon[33435]: purged_snaps scrub ok 2024-04-14T16:11:32.323 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:32.323 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:32 smithi027 ceph-mon[33435]: osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655] boot 2024-04-14T16:11:32.323 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:32 smithi027 ceph-mon[33435]: osdmap e13: 2 total, 2 up, 2 in 2024-04-14T16:11:32.323 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:32.489 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:32 smithi016 ceph-mon[30237]: purged_snaps scrub starts 2024-04-14T16:11:32.489 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:32 smithi016 ceph-mon[30237]: purged_snaps scrub ok 2024-04-14T16:11:32.489 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:32 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:32.489 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:32 smithi016 ceph-mon[30237]: osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655] boot 2024-04-14T16:11:32.489 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:32 smithi016 ceph-mon[30237]: osdmap e13: 2 total, 2 up, 2 in 2024-04-14T16:11:32.489 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:32 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:32.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:32 smithi122 ceph-mon[33752]: purged_snaps scrub starts 2024-04-14T16:11:32.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:32 smithi122 ceph-mon[33752]: purged_snaps scrub ok 2024-04-14T16:11:32.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:32 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:32.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:32 smithi122 ceph-mon[33752]: osd.1 [v2:172.21.15.16:6810/456487655,v1:172.21.15.16:6811/456487655] boot 2024-04-14T16:11:32.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:32 smithi122 ceph-mon[33752]: osdmap e13: 2 total, 2 up, 2 in 2024-04-14T16:11:32.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:32 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-14T16:11:32.635 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph orch daemon add osd smithi027:vg_nvme/lv_4 2024-04-14T16:11:32.883 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.b/config 2024-04-14T16:11:33.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:33 smithi027 ceph-mon[33435]: pgmap v63: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:33.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:33.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:33.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:11:33.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:11:33.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:33.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:33.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:33.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:33 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:33.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:33 smithi122 ceph-mon[33752]: pgmap v63: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:33.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:33.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:33.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:11:33.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:11:33.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:33.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:33.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:33.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:33 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:33.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:33 smithi016 ceph-mon[30237]: pgmap v63: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-04-14T16:11:33.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:33.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:33.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:11:33.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:11:33.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:33.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:33.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:33.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:33 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:34.416 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:34 smithi027 ceph-mon[33435]: Detected new or changed devices on smithi016 2024-04-14T16:11:34.416 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:34 smithi027 ceph-mon[33435]: Adjusting osd_memory_target on smithi016 to 8546M 2024-04-14T16:11:34.416 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:34 smithi027 ceph-mon[33435]: osdmap e14: 2 total, 2 up, 2 in 2024-04-14T16:11:34.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:34 smithi122 ceph-mon[33752]: Detected new or changed devices on smithi016 2024-04-14T16:11:34.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:34 smithi122 ceph-mon[33752]: Adjusting osd_memory_target on smithi016 to 8546M 2024-04-14T16:11:34.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:34 smithi122 ceph-mon[33752]: osdmap e14: 2 total, 2 up, 2 in 2024-04-14T16:11:34.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:34 smithi016 ceph-mon[30237]: Detected new or changed devices on smithi016 2024-04-14T16:11:34.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:34 smithi016 ceph-mon[30237]: Adjusting osd_memory_target on smithi016 to 8546M 2024-04-14T16:11:34.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:34 smithi016 ceph-mon[30237]: osdmap e14: 2 total, 2 up, 2 in 2024-04-14T16:11:35.543 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:35 smithi027 ceph-mon[33435]: pgmap v66: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:35.543 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:35 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:11:35.543 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:35 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:11:35.544 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:35 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:35.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:35 smithi122 ceph-mon[33752]: pgmap v66: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:35.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:35 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:11:35.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:35 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:11:35.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:35 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:35.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:35 smithi016 ceph-mon[30237]: pgmap v66: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:35.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:35 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:11:35.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:35 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:11:35.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:35 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:36.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:36 smithi122 ceph-mon[33752]: from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi027:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:11:36.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:36 smithi016 ceph-mon[30237]: from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi027:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:11:36.624 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:36 smithi027 ceph-mon[33435]: from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi027:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:11:37.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:37 smithi122 ceph-mon[33752]: pgmap v67: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:37.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:37 smithi016 ceph-mon[30237]: pgmap v67: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:37.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:37 smithi027 ceph-mon[33435]: pgmap v67: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:38.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:38 smithi122 ceph-mon[33752]: from='client.? 172.21.15.27:0/1724815707' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b97be978-d307-4233-b371-5c7fa2ec75fa"}]: dispatch 2024-04-14T16:11:38.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:38 smithi122 ceph-mon[33752]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b97be978-d307-4233-b371-5c7fa2ec75fa"}]: dispatch 2024-04-14T16:11:38.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:38 smithi122 ceph-mon[33752]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b97be978-d307-4233-b371-5c7fa2ec75fa"}]': finished 2024-04-14T16:11:38.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:38 smithi122 ceph-mon[33752]: osdmap e15: 3 total, 2 up, 3 in 2024-04-14T16:11:38.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:38 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:38.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:38 smithi122 ceph-mon[33752]: from='client.? 172.21.15.27:0/74667965' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:11:38.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:38 smithi016 ceph-mon[30237]: from='client.? 172.21.15.27:0/1724815707' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b97be978-d307-4233-b371-5c7fa2ec75fa"}]: dispatch 2024-04-14T16:11:38.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:38 smithi016 ceph-mon[30237]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b97be978-d307-4233-b371-5c7fa2ec75fa"}]: dispatch 2024-04-14T16:11:38.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:38 smithi016 ceph-mon[30237]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b97be978-d307-4233-b371-5c7fa2ec75fa"}]': finished 2024-04-14T16:11:38.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:38 smithi016 ceph-mon[30237]: osdmap e15: 3 total, 2 up, 3 in 2024-04-14T16:11:38.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:38 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:38.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:38 smithi016 ceph-mon[30237]: from='client.? 172.21.15.27:0/74667965' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:11:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:38 smithi027 ceph-mon[33435]: from='client.? 172.21.15.27:0/1724815707' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b97be978-d307-4233-b371-5c7fa2ec75fa"}]: dispatch 2024-04-14T16:11:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:38 smithi027 ceph-mon[33435]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b97be978-d307-4233-b371-5c7fa2ec75fa"}]: dispatch 2024-04-14T16:11:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:38 smithi027 ceph-mon[33435]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b97be978-d307-4233-b371-5c7fa2ec75fa"}]': finished 2024-04-14T16:11:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:38 smithi027 ceph-mon[33435]: osdmap e15: 3 total, 2 up, 3 in 2024-04-14T16:11:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:38 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:38 smithi027 ceph-mon[33435]: from='client.? 172.21.15.27:0/74667965' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:11:39.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:39 smithi027 ceph-mon[33435]: pgmap v69: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:39.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:39 smithi122 ceph-mon[33752]: pgmap v69: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:39.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:39 smithi016 ceph-mon[30237]: pgmap v69: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:41.697 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:41 smithi027 ceph-mon[33435]: pgmap v70: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:41.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:41 smithi122 ceph-mon[33752]: pgmap v70: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:41.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:41 smithi016 ceph-mon[30237]: pgmap v70: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:43.603 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:43 smithi027 ceph-mon[33435]: pgmap v71: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:43.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:43 smithi122 ceph-mon[33752]: pgmap v71: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:43.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:43 smithi016 ceph-mon[30237]: pgmap v71: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:44.677 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:44 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-14T16:11:44.677 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:44 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:44.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:44 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-14T16:11:44.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:44 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:44.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:44 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-14T16:11:44.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:44 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:45.424 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:45 smithi027 ceph-mon[33435]: pgmap v72: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:45.425 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:45 smithi027 ceph-mon[33435]: Deploying daemon osd.2 on smithi027 2024-04-14T16:11:45.773 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:45 smithi016 ceph-mon[30237]: pgmap v72: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:45.773 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:45 smithi016 ceph-mon[30237]: Deploying daemon osd.2 on smithi027 2024-04-14T16:11:45.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:45 smithi122 ceph-mon[33752]: pgmap v72: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:45.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:45 smithi122 ceph-mon[33752]: Deploying daemon osd.2 on smithi027 2024-04-14T16:11:47.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:47 smithi027 ceph-mon[33435]: pgmap v73: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:47.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:47 smithi122 ceph-mon[33752]: pgmap v73: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:47.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:47 smithi016 ceph-mon[30237]: pgmap v73: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:49.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:49 smithi027 ceph-mon[33435]: pgmap v74: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:49.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:49 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:49.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:49 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:49.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:49 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:49.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:49 smithi122 ceph-mon[33752]: pgmap v74: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:49.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:49 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:49.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:49 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:49.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:49 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:49.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:49 smithi016 ceph-mon[30237]: pgmap v74: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:49.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:49 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:49.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:49 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:49.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:49 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:51.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:51 smithi027 ceph-mon[33435]: pgmap v75: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:51.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:51 smithi122 ceph-mon[33752]: pgmap v75: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:51.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:51 smithi016 ceph-mon[30237]: pgmap v75: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:53.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:52 smithi027 ceph-mon[33435]: pgmap v76: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:53.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:52 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:53.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:52 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:53.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:52 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:53.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:52 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:53.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:52 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:53.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:52 smithi027 ceph-mon[33435]: from='osd.2 [v2:172.21.15.27:6800/422516969,v1:172.21.15.27:6801/422516969]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-14T16:11:53.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:52 smithi027 ceph-mon[33435]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-14T16:11:53.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:52 smithi122 ceph-mon[33752]: pgmap v76: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:53.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:52 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:53.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:52 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:53.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:52 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:53.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:52 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:53.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:52 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:53.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:52 smithi122 ceph-mon[33752]: from='osd.2 [v2:172.21.15.27:6800/422516969,v1:172.21.15.27:6801/422516969]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-14T16:11:53.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:52 smithi122 ceph-mon[33752]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-14T16:11:53.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:52 smithi016 ceph-mon[30237]: pgmap v76: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:53.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:52 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:53.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:52 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:53.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:52 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:53.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:52 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:53.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:52 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:53.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:52 smithi016 ceph-mon[30237]: from='osd.2 [v2:172.21.15.27:6800/422516969,v1:172.21.15.27:6801/422516969]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-14T16:11:53.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:52 smithi016 ceph-mon[30237]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-14T16:11:53.127 INFO:teuthology.orchestra.run.smithi027.stdout:Created osd(s) 2 on host 'smithi027' 2024-04-14T16:11:53.835 DEBUG:teuthology.orchestra.run.smithi027:osd.2> sudo journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.2.service 2024-04-14T16:11:53.837 INFO:tasks.cephadm:Deploying osd.3 on smithi027 with /dev/vg_nvme/lv_3... 2024-04-14T16:11:53.837 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-14T16:11:54.220 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:54 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:54.221 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:54 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:54.221 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:54 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:54.221 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:54 smithi027 ceph-mon[33435]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-14T16:11:54.221 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:54 smithi027 ceph-mon[33435]: osdmap e16: 3 total, 2 up, 3 in 2024-04-14T16:11:54.221 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:54 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:54.221 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:54 smithi027 ceph-mon[33435]: from='osd.2 [v2:172.21.15.27:6800/422516969,v1:172.21.15.27:6801/422516969]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-04-14T16:11:54.221 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:54 smithi027 ceph-mon[33435]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-04-14T16:11:54.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:54 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:54.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:54 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:54.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:54 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:54.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:54 smithi016 ceph-mon[30237]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-14T16:11:54.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:54 smithi016 ceph-mon[30237]: osdmap e16: 3 total, 2 up, 3 in 2024-04-14T16:11:54.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:54 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:54.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:54 smithi016 ceph-mon[30237]: from='osd.2 [v2:172.21.15.27:6800/422516969,v1:172.21.15.27:6801/422516969]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-04-14T16:11:54.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:54 smithi016 ceph-mon[30237]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-04-14T16:11:54.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:54 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:54.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:54 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:54.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:54 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:11:54.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:54 smithi122 ceph-mon[33752]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-14T16:11:54.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:54 smithi122 ceph-mon[33752]: osdmap e16: 3 total, 2 up, 3 in 2024-04-14T16:11:54.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:54 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:54.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:54 smithi122 ceph-mon[33752]: from='osd.2 [v2:172.21.15.27:6800/422516969,v1:172.21.15.27:6801/422516969]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-04-14T16:11:54.576 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:54 smithi122 ceph-mon[33752]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-04-14T16:11:54.658 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.b/config 2024-04-14T16:11:54.913 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:11:54 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2[38090]: 2024-04-14T16:11:54.819+0000 7fb7cfbf2700 -1 osd.2 0 waiting for initial osdmap 2024-04-14T16:11:54.913 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:11:54 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2[38090]: 2024-04-14T16:11:54.822+0000 7fb7c79dd700 -1 osd.2 17 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-14T16:11:55.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:55 smithi027 ceph-mon[33435]: pgmap v78: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:55.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:55 smithi027 ceph-mon[33435]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-04-14T16:11:55.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:55 smithi027 ceph-mon[33435]: osdmap e17: 3 total, 2 up, 3 in 2024-04-14T16:11:55.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:55 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:55.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:55 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:55.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:55 smithi027 ceph-mon[33435]: from='osd.2 ' entity='osd.2' 2024-04-14T16:11:55.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:55 smithi122 ceph-mon[33752]: pgmap v78: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:55.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:55 smithi122 ceph-mon[33752]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-04-14T16:11:55.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:55 smithi122 ceph-mon[33752]: osdmap e17: 3 total, 2 up, 3 in 2024-04-14T16:11:55.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:55 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:55.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:55 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:55.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:55 smithi122 ceph-mon[33752]: from='osd.2 ' entity='osd.2' 2024-04-14T16:11:55.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:55 smithi016 ceph-mon[30237]: pgmap v78: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:55.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:55 smithi016 ceph-mon[30237]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-04-14T16:11:55.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:55 smithi016 ceph-mon[30237]: osdmap e17: 3 total, 2 up, 3 in 2024-04-14T16:11:55.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:55 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:55.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:55 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:55.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:55 smithi016 ceph-mon[30237]: from='osd.2 ' entity='osd.2' 2024-04-14T16:11:56.682 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:56 smithi027 ceph-mon[33435]: purged_snaps scrub starts 2024-04-14T16:11:56.682 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:56 smithi027 ceph-mon[33435]: purged_snaps scrub ok 2024-04-14T16:11:56.682 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:56 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:56.682 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:56 smithi027 ceph-mon[33435]: osd.2 [v2:172.21.15.27:6800/422516969,v1:172.21.15.27:6801/422516969] boot 2024-04-14T16:11:56.682 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:56 smithi027 ceph-mon[33435]: osdmap e18: 3 total, 3 up, 3 in 2024-04-14T16:11:56.682 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:56 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:56.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:56 smithi122 ceph-mon[33752]: purged_snaps scrub starts 2024-04-14T16:11:56.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:56 smithi122 ceph-mon[33752]: purged_snaps scrub ok 2024-04-14T16:11:56.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:56 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:56.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:56 smithi122 ceph-mon[33752]: osd.2 [v2:172.21.15.27:6800/422516969,v1:172.21.15.27:6801/422516969] boot 2024-04-14T16:11:56.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:56 smithi122 ceph-mon[33752]: osdmap e18: 3 total, 3 up, 3 in 2024-04-14T16:11:56.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:56 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:56.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:56 smithi016 ceph-mon[30237]: purged_snaps scrub starts 2024-04-14T16:11:56.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:56 smithi016 ceph-mon[30237]: purged_snaps scrub ok 2024-04-14T16:11:56.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:56 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:56.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:56 smithi016 ceph-mon[30237]: osd.2 [v2:172.21.15.27:6800/422516969,v1:172.21.15.27:6801/422516969] boot 2024-04-14T16:11:56.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:56 smithi016 ceph-mon[30237]: osdmap e18: 3 total, 3 up, 3 in 2024-04-14T16:11:56.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:56 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-14T16:11:57.498 INFO:teuthology.orchestra.run.smithi027.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-14T16:11:57.498 INFO:teuthology.orchestra.run.smithi027.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-14T16:11:57.498 INFO:teuthology.orchestra.run.smithi027.stderr: stderr: 10+0 records in 2024-04-14T16:11:57.498 INFO:teuthology.orchestra.run.smithi027.stderr:10+0 records out 2024-04-14T16:11:57.498 INFO:teuthology.orchestra.run.smithi027.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0123534 s, 849 MB/s 2024-04-14T16:11:57.498 INFO:teuthology.orchestra.run.smithi027.stderr: stderr: 2024-04-14T16:11:57.498 INFO:teuthology.orchestra.run.smithi027.stderr:--> Zapping successful for: 2024-04-14T16:11:57.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:57 smithi027 ceph-mon[33435]: pgmap v80: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:57.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:57 smithi122 ceph-mon[33752]: pgmap v80: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:57.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:57 smithi016 ceph-mon[30237]: pgmap v80: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-14T16:11:58.158 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph orch daemon add osd smithi027:vg_nvme/lv_3 2024-04-14T16:11:58.691 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:58 smithi027 ceph-mon[33435]: osdmap e19: 3 total, 3 up, 3 in 2024-04-14T16:11:58.692 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:58 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-04-14T16:11:58.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:58 smithi122 ceph-mon[33752]: osdmap e19: 3 total, 3 up, 3 in 2024-04-14T16:11:58.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:58 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-04-14T16:11:58.837 INFO:teuthology.orchestra.run.smithi027.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.b/config 2024-04-14T16:11:58.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:58 smithi016 ceph-mon[30237]: osdmap e19: 3 total, 3 up, 3 in 2024-04-14T16:11:58.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:58 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-04-14T16:11:59.623 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 ceph-mon[33435]: pgmap v83: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:11:59.623 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-04-14T16:11:59.623 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 ceph-mon[33435]: osdmap e20: 3 total, 3 up, 3 in 2024-04-14T16:11:59.623 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-14T16:11:59.623 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:59.623 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:59.623 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:11:59.623 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:59.623 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:59.623 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:59.623 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:59.676 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56053]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-14T16:11:59.676 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56053]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-14T16:11:59.676 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56053]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-14T16:11:59.676 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56053]: pam_unix(sudo:session): session closed for user root 2024-04-14T16:11:59.676 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 ceph-mon[30237]: pgmap v83: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:11:59.676 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-04-14T16:11:59.677 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 ceph-mon[30237]: osdmap e20: 3 total, 3 up, 3 in 2024-04-14T16:11:59.677 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-14T16:11:59.677 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:59.677 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:59.677 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:11:59.677 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:59.677 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:59.677 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:59.677 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:59.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 ceph-mon[33752]: pgmap v83: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:11:59.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-04-14T16:11:59.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 ceph-mon[33752]: osdmap e20: 3 total, 3 up, 3 in 2024-04-14T16:11:59.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-14T16:11:59.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:59.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:59.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:11:59.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:59.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:11:59.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:11:59.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:11:59.919 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42308]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-14T16:11:59.919 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42308]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-14T16:11:59.919 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42308]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-14T16:11:59.919 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42308]: pam_unix(sudo:session): session closed for user root 2024-04-14T16:11:59.920 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42311]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-14T16:11:59.920 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42311]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-14T16:11:59.920 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42311]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-14T16:11:59.920 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42311]: pam_unix(sudo:session): session closed for user root 2024-04-14T16:12:00.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56065]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-14T16:12:00.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56065]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-14T16:12:00.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56065]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-14T16:12:00.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56065]: pam_unix(sudo:session): session closed for user root 2024-04-14T16:12:00.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56068]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-14T16:12:00.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56068]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-14T16:12:00.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56068]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-14T16:12:00.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56068]: pam_unix(sudo:session): session closed for user root 2024-04-14T16:12:00.122 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56056]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-14T16:12:00.122 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56056]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-14T16:12:00.122 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56056]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-14T16:12:00.123 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56056]: pam_unix(sudo:session): session closed for user root 2024-04-14T16:12:00.123 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56059]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-14T16:12:00.123 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56059]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-14T16:12:00.123 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56059]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-14T16:12:00.123 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56059]: pam_unix(sudo:session): session closed for user root 2024-04-14T16:12:00.123 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56062]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-14T16:12:00.123 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56062]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-14T16:12:00.123 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56062]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-14T16:12:00.123 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:11:59 smithi016 sudo[56062]: pam_unix(sudo:session): session closed for user root 2024-04-14T16:12:00.254 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42314]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-14T16:12:00.255 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42314]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-14T16:12:00.255 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42314]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-14T16:12:00.255 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42314]: pam_unix(sudo:session): session closed for user root 2024-04-14T16:12:00.255 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42317]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-14T16:12:00.255 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42317]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-14T16:12:00.255 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42317]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-14T16:12:00.255 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:11:59 smithi027 sudo[42317]: pam_unix(sudo:session): session closed for user root 2024-04-14T16:12:00.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 sudo[35904]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-14T16:12:00.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 sudo[35904]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-14T16:12:00.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 sudo[35904]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-14T16:12:00.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 sudo[35904]: pam_unix(sudo:session): session closed for user root 2024-04-14T16:12:00.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 sudo[35907]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-14T16:12:00.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 sudo[35907]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-14T16:12:00.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 sudo[35907]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-14T16:12:00.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:11:59 smithi122 sudo[35907]: pam_unix(sudo:session): session closed for user root 2024-04-14T16:12:00.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: Detected new or changed devices on smithi027 2024-04-14T16:12:00.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: Adjusting osd_memory_target on smithi027 to 17088M 2024-04-14T16:12:00.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-14T16:12:00.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: osdmap e21: 3 total, 3 up, 3 in 2024-04-14T16:12:00.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: pgmap v86: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:00.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:12:00.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:12:00.528 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:12:00.528 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:00 smithi027 ceph-mon[33435]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T16:12:00.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: Detected new or changed devices on smithi027 2024-04-14T16:12:00.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: Adjusting osd_memory_target on smithi027 to 17088M 2024-04-14T16:12:00.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-14T16:12:00.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: osdmap e21: 3 total, 3 up, 3 in 2024-04-14T16:12:00.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: pgmap v86: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:00.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:00.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:12:00.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:12:00.828 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:00 smithi122 ceph-mon[33752]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T16:12:00.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: Detected new or changed devices on smithi027 2024-04-14T16:12:00.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: Adjusting osd_memory_target on smithi027 to 17088M 2024-04-14T16:12:00.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-14T16:12:00.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: osdmap e21: 3 total, 3 up, 3 in 2024-04-14T16:12:00.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: pgmap v86: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:00.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:00.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:00.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T16:12:00.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T16:12:00.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:12:00.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:12:00.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:12:00.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T16:12:00.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:12:00.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:12:00.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:12:00.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T16:12:00.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:00.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-14T16:12:00.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:12:00.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:12:00.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-14T16:12:00.873 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:00 smithi016 ceph-mon[30237]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-14T16:12:01.592 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:01 smithi027 ceph-mon[33435]: osdmap e22: 3 total, 3 up, 3 in 2024-04-14T16:12:01.592 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:01 smithi027 ceph-mon[33435]: from='client.24191 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi027:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:12:01.592 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:01 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:12:01.592 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:01 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:12:01.593 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:01 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:01.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:01 smithi122 ceph-mon[33752]: osdmap e22: 3 total, 3 up, 3 in 2024-04-14T16:12:01.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:01 smithi122 ceph-mon[33752]: from='client.24191 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi027:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:12:01.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:01 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:12:01.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:01 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:12:01.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:01 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:01.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:01 smithi016 ceph-mon[30237]: osdmap e22: 3 total, 3 up, 3 in 2024-04-14T16:12:01.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:01 smithi016 ceph-mon[30237]: from='client.24191 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi027:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:12:01.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:01 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:12:01.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:01 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:12:01.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:01 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:02.566 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:02 smithi027 ceph-mon[33435]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:02.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:02 smithi122 ceph-mon[33752]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:02.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:02 smithi016 ceph-mon[30237]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:03.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:03 smithi027 ceph-mon[33435]: mgrmap e15: a(active, since 2m), standbys: b 2024-04-14T16:12:03.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:03 smithi122 ceph-mon[33752]: mgrmap e15: a(active, since 2m), standbys: b 2024-04-14T16:12:03.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:03 smithi016 ceph-mon[30237]: mgrmap e15: a(active, since 2m), standbys: b 2024-04-14T16:12:04.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:04 smithi027 ceph-mon[33435]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:04.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:04 smithi027 ceph-mon[33435]: from='client.? 172.21.15.27:0/1472693160' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "aff755fe-44fb-445a-9df7-beb595970433"}]: dispatch 2024-04-14T16:12:04.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:04 smithi027 ceph-mon[33435]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "aff755fe-44fb-445a-9df7-beb595970433"}]: dispatch 2024-04-14T16:12:04.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:04 smithi027 ceph-mon[33435]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "aff755fe-44fb-445a-9df7-beb595970433"}]': finished 2024-04-14T16:12:04.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:04 smithi027 ceph-mon[33435]: osdmap e23: 4 total, 3 up, 4 in 2024-04-14T16:12:04.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:04.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:04 smithi027 ceph-mon[33435]: from='client.? 172.21.15.27:0/3604597543' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:12:04.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:04 smithi122 ceph-mon[33752]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:04.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:04 smithi122 ceph-mon[33752]: from='client.? 172.21.15.27:0/1472693160' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "aff755fe-44fb-445a-9df7-beb595970433"}]: dispatch 2024-04-14T16:12:04.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:04 smithi122 ceph-mon[33752]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "aff755fe-44fb-445a-9df7-beb595970433"}]: dispatch 2024-04-14T16:12:04.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:04 smithi122 ceph-mon[33752]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "aff755fe-44fb-445a-9df7-beb595970433"}]': finished 2024-04-14T16:12:04.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:04 smithi122 ceph-mon[33752]: osdmap e23: 4 total, 3 up, 4 in 2024-04-14T16:12:04.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:04.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:04 smithi122 ceph-mon[33752]: from='client.? 172.21.15.27:0/3604597543' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:12:04.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:04 smithi016 ceph-mon[30237]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:04.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:04 smithi016 ceph-mon[30237]: from='client.? 172.21.15.27:0/1472693160' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "aff755fe-44fb-445a-9df7-beb595970433"}]: dispatch 2024-04-14T16:12:04.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:04 smithi016 ceph-mon[30237]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "aff755fe-44fb-445a-9df7-beb595970433"}]: dispatch 2024-04-14T16:12:04.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:04 smithi016 ceph-mon[30237]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "aff755fe-44fb-445a-9df7-beb595970433"}]': finished 2024-04-14T16:12:04.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:04 smithi016 ceph-mon[30237]: osdmap e23: 4 total, 3 up, 4 in 2024-04-14T16:12:04.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:04.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:04 smithi016 ceph-mon[30237]: from='client.? 172.21.15.27:0/3604597543' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:12:06.706 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:06 smithi027 ceph-mon[33435]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:06.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:06 smithi122 ceph-mon[33752]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:06.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:06 smithi016 ceph-mon[30237]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:08.603 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:08 smithi027 ceph-mon[33435]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:08.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:08 smithi122 ceph-mon[33752]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:08.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:08 smithi016 ceph-mon[30237]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:10.711 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:10 smithi027 ceph-mon[33435]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:10.711 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:10 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-14T16:12:10.712 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:10 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:10.712 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:10 smithi027 ceph-mon[33435]: Deploying daemon osd.3 on smithi027 2024-04-14T16:12:10.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:10 smithi122 ceph-mon[33752]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:10.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:10 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-14T16:12:10.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:10 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:10.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:10 smithi122 ceph-mon[33752]: Deploying daemon osd.3 on smithi027 2024-04-14T16:12:10.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:10 smithi016 ceph-mon[30237]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:10.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:10 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-14T16:12:10.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:10 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:10.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:10 smithi016 ceph-mon[30237]: Deploying daemon osd.3 on smithi027 2024-04-14T16:12:12.604 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:12 smithi027 ceph-mon[33435]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:12.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:12 smithi122 ceph-mon[33752]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:12.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:12 smithi016 ceph-mon[30237]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:14.737 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:14 smithi027 ceph-mon[33435]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:14.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:14 smithi122 ceph-mon[33752]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:14.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:14 smithi016 ceph-mon[30237]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:16.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:16 smithi027 ceph-mon[33435]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:16.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:16 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:16.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:16 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:16.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:16 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:12:16.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:16 smithi122 ceph-mon[33752]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:16.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:16.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:16.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:16 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:12:16.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:16 smithi016 ceph-mon[30237]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:16.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:16 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:16.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:16 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:16.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:16 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:12:18.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:18 smithi027 ceph-mon[33435]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:18.818 INFO:teuthology.orchestra.run.smithi027.stdout:Created osd(s) 3 on host 'smithi027' 2024-04-14T16:12:18.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:18 smithi016 ceph-mon[30237]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:19.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:18 smithi122 ceph-mon[33752]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:19.419 DEBUG:teuthology.orchestra.run.smithi027:osd.3> sudo journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.3.service 2024-04-14T16:12:19.421 INFO:tasks.cephadm:Deploying osd.4 on smithi122 with /dev/vg_nvme/lv_4... 2024-04-14T16:12:19.421 DEBUG:teuthology.orchestra.run.smithi122:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-14T16:12:19.662 INFO:teuthology.orchestra.run.smithi122.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.c/config 2024-04-14T16:12:19.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:19 smithi027 ceph-mon[33435]: from='osd.3 [v2:172.21.15.27:6808/3639786909,v1:172.21.15.27:6809/3639786909]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-14T16:12:19.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:19 smithi027 ceph-mon[33435]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-14T16:12:19.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:19 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:19.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:19 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:19.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:19 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:19.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:19 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:19.784 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:19 smithi122 ceph-mon[33752]: from='osd.3 [v2:172.21.15.27:6808/3639786909,v1:172.21.15.27:6809/3639786909]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-14T16:12:19.784 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:19 smithi122 ceph-mon[33752]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-14T16:12:19.784 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:19 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:19.784 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:19 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:19.784 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:19 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:19.784 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:19 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:19.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:19 smithi016 ceph-mon[30237]: from='osd.3 [v2:172.21.15.27:6808/3639786909,v1:172.21.15.27:6809/3639786909]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-14T16:12:19.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:19 smithi016 ceph-mon[30237]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-14T16:12:19.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:19 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:19.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:19 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:19.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:19 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:19.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:19 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:20.747 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:20 smithi122 ceph-mon[33752]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:20.748 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:20 smithi122 ceph-mon[33752]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-14T16:12:20.748 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:20 smithi122 ceph-mon[33752]: osdmap e24: 4 total, 3 up, 4 in 2024-04-14T16:12:20.748 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:20 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:20.748 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:20 smithi122 ceph-mon[33752]: from='osd.3 [v2:172.21.15.27:6808/3639786909,v1:172.21.15.27:6809/3639786909]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-04-14T16:12:20.748 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:20 smithi122 ceph-mon[33752]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-04-14T16:12:20.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:20 smithi027 ceph-mon[33435]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:20.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:20 smithi027 ceph-mon[33435]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-14T16:12:20.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:20 smithi027 ceph-mon[33435]: osdmap e24: 4 total, 3 up, 4 in 2024-04-14T16:12:20.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:20 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:20.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:20 smithi027 ceph-mon[33435]: from='osd.3 [v2:172.21.15.27:6808/3639786909,v1:172.21.15.27:6809/3639786909]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-04-14T16:12:20.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:20 smithi027 ceph-mon[33435]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-04-14T16:12:20.777 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:12:20 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3[44471]: 2024-04-14T16:12:20.587+0000 7f4e9d62a700 -1 osd.3 0 waiting for initial osdmap 2024-04-14T16:12:20.777 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:12:20 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3[44471]: 2024-04-14T16:12:20.592+0000 7f4e9941d700 -1 osd.3 25 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-14T16:12:20.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:20 smithi016 ceph-mon[30237]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:20.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:20 smithi016 ceph-mon[30237]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-14T16:12:20.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:20 smithi016 ceph-mon[30237]: osdmap e24: 4 total, 3 up, 4 in 2024-04-14T16:12:20.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:20 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:20.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:20 smithi016 ceph-mon[30237]: from='osd.3 [v2:172.21.15.27:6808/3639786909,v1:172.21.15.27:6809/3639786909]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-04-14T16:12:20.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:20 smithi016 ceph-mon[30237]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]: dispatch 2024-04-14T16:12:21.572 INFO:teuthology.orchestra.run.smithi122.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-14T16:12:21.572 INFO:teuthology.orchestra.run.smithi122.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-14T16:12:21.572 INFO:teuthology.orchestra.run.smithi122.stderr: stderr: 10+0 records in 2024-04-14T16:12:21.572 INFO:teuthology.orchestra.run.smithi122.stderr:10+0 records out 2024-04-14T16:12:21.572 INFO:teuthology.orchestra.run.smithi122.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0135198 s, 776 MB/s 2024-04-14T16:12:21.573 INFO:teuthology.orchestra.run.smithi122.stderr:--> Zapping successful for: 2024-04-14T16:12:21.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:21 smithi122 ceph-mon[33752]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-04-14T16:12:21.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:21 smithi122 ceph-mon[33752]: osdmap e25: 4 total, 3 up, 4 in 2024-04-14T16:12:21.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:21.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:21.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:21 smithi122 ceph-mon[33752]: osd.3 [v2:172.21.15.27:6808/3639786909,v1:172.21.15.27:6809/3639786909] boot 2024-04-14T16:12:21.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:21 smithi122 ceph-mon[33752]: osdmap e26: 4 total, 4 up, 4 in 2024-04-14T16:12:21.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:21 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:21.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:21 smithi016 ceph-mon[30237]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-04-14T16:12:21.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:21 smithi016 ceph-mon[30237]: osdmap e25: 4 total, 3 up, 4 in 2024-04-14T16:12:21.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:21.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:21.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:21 smithi016 ceph-mon[30237]: osd.3 [v2:172.21.15.27:6808/3639786909,v1:172.21.15.27:6809/3639786909] boot 2024-04-14T16:12:21.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:21 smithi016 ceph-mon[30237]: osdmap e26: 4 total, 4 up, 4 in 2024-04-14T16:12:21.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:22.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:21 smithi027 ceph-mon[33435]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi027", "root=default"]}]': finished 2024-04-14T16:12:22.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:21 smithi027 ceph-mon[33435]: osdmap e25: 4 total, 3 up, 4 in 2024-04-14T16:12:22.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:22.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:22.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:21 smithi027 ceph-mon[33435]: osd.3 [v2:172.21.15.27:6808/3639786909,v1:172.21.15.27:6809/3639786909] boot 2024-04-14T16:12:22.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:21 smithi027 ceph-mon[33435]: osdmap e26: 4 total, 4 up, 4 in 2024-04-14T16:12:22.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-14T16:12:22.223 DEBUG:teuthology.orchestra.run.smithi122:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph orch daemon add osd smithi122:vg_nvme/lv_4 2024-04-14T16:12:22.455 INFO:teuthology.orchestra.run.smithi122.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.c/config 2024-04-14T16:12:22.858 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:22 smithi027 ceph-mon[33435]: purged_snaps scrub starts 2024-04-14T16:12:22.858 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:22 smithi027 ceph-mon[33435]: purged_snaps scrub ok 2024-04-14T16:12:22.858 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:22 smithi027 ceph-mon[33435]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:22.858 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:22 smithi027 ceph-mon[33435]: osdmap e27: 4 total, 4 up, 4 in 2024-04-14T16:12:22.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:22 smithi016 ceph-mon[30237]: purged_snaps scrub starts 2024-04-14T16:12:22.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:22 smithi016 ceph-mon[30237]: purged_snaps scrub ok 2024-04-14T16:12:22.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:22 smithi016 ceph-mon[30237]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:22.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:22 smithi016 ceph-mon[30237]: osdmap e27: 4 total, 4 up, 4 in 2024-04-14T16:12:22.882 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:22 smithi122 ceph-mon[33752]: purged_snaps scrub starts 2024-04-14T16:12:22.882 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:22 smithi122 ceph-mon[33752]: purged_snaps scrub ok 2024-04-14T16:12:22.882 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:22 smithi122 ceph-mon[33752]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 85 MiB used, 268 GiB / 268 GiB avail 2024-04-14T16:12:22.882 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:22 smithi122 ceph-mon[33752]: osdmap e27: 4 total, 4 up, 4 in 2024-04-14T16:12:23.981 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: osdmap e28: 4 total, 4 up, 4 in 2024-04-14T16:12:23.981 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: Detected new or changed devices on smithi027 2024-04-14T16:12:23.981 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:23.981 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:23.981 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:12:23.981 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:12:23.981 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: Adjusting osd_memory_target on smithi027 to 8544M 2024-04-14T16:12:23.981 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:23.981 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:23.981 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:12:23.982 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:23.982 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:12:23.982 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:23.982 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:12:23.982 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:23 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:24.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: osdmap e28: 4 total, 4 up, 4 in 2024-04-14T16:12:24.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: Detected new or changed devices on smithi027 2024-04-14T16:12:24.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:24.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:24.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:12:24.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:12:24.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: Adjusting osd_memory_target on smithi027 to 8544M 2024-04-14T16:12:24.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:24.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:24.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:12:24.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:24.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:12:24.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:24.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:12:24.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:23 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:24.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: osdmap e28: 4 total, 4 up, 4 in 2024-04-14T16:12:24.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: Detected new or changed devices on smithi027 2024-04-14T16:12:24.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:24.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:24.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:12:24.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:12:24.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: Adjusting osd_memory_target on smithi027 to 8544M 2024-04-14T16:12:24.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:24.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:24.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:12:24.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:24.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:12:24.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:24.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:12:24.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:23 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:25.266 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:24 smithi122 ceph-mon[33752]: pgmap v105: 1 pgs: 1 remapped+peering; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:25.266 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:24 smithi122 ceph-mon[33752]: osdmap e29: 4 total, 4 up, 4 in 2024-04-14T16:12:25.266 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:24 smithi122 ceph-mon[33752]: from='client.24166 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi122:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:12:25.266 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:24 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:12:25.266 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:24 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:12:25.267 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:24 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:25.275 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:24 smithi027 ceph-mon[33435]: pgmap v105: 1 pgs: 1 remapped+peering; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:25.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:24 smithi027 ceph-mon[33435]: osdmap e29: 4 total, 4 up, 4 in 2024-04-14T16:12:25.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:24 smithi027 ceph-mon[33435]: from='client.24166 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi122:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:12:25.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:24 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:12:25.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:24 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:12:25.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:24 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:25.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:24 smithi016 ceph-mon[30237]: pgmap v105: 1 pgs: 1 remapped+peering; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:25.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:24 smithi016 ceph-mon[30237]: osdmap e29: 4 total, 4 up, 4 in 2024-04-14T16:12:25.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:24 smithi016 ceph-mon[30237]: from='client.24166 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi122:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:12:25.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:24 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:12:25.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:24 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:12:25.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:24 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:26.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:25 smithi122 ceph-mon[33752]: osdmap e30: 4 total, 4 up, 4 in 2024-04-14T16:12:26.275 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:25 smithi027 ceph-mon[33435]: osdmap e30: 4 total, 4 up, 4 in 2024-04-14T16:12:26.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:25 smithi016 ceph-mon[30237]: osdmap e30: 4 total, 4 up, 4 in 2024-04-14T16:12:27.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:26 smithi027 ceph-mon[33435]: pgmap v108: 1 pgs: 1 remapped+peering; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:27.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:26 smithi122 ceph-mon[33752]: pgmap v108: 1 pgs: 1 remapped+peering; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:27.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:26 smithi016 ceph-mon[30237]: pgmap v108: 1 pgs: 1 remapped+peering; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:28.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:27 smithi027 ceph-mon[33435]: from='client.? 172.21.15.122:0/3411379282' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc0de671-86d4-4510-96f6-a4825b65b6a0"}]: dispatch 2024-04-14T16:12:28.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:27 smithi027 ceph-mon[33435]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc0de671-86d4-4510-96f6-a4825b65b6a0"}]: dispatch 2024-04-14T16:12:28.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:27 smithi027 ceph-mon[33435]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cc0de671-86d4-4510-96f6-a4825b65b6a0"}]': finished 2024-04-14T16:12:28.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:27 smithi027 ceph-mon[33435]: osdmap e31: 5 total, 4 up, 5 in 2024-04-14T16:12:28.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:27 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:28.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:27 smithi027 ceph-mon[33435]: from='client.? 172.21.15.122:0/4246102203' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:12:28.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:27 smithi122 ceph-mon[33752]: from='client.? 172.21.15.122:0/3411379282' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc0de671-86d4-4510-96f6-a4825b65b6a0"}]: dispatch 2024-04-14T16:12:28.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:27 smithi122 ceph-mon[33752]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc0de671-86d4-4510-96f6-a4825b65b6a0"}]: dispatch 2024-04-14T16:12:28.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:27 smithi122 ceph-mon[33752]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cc0de671-86d4-4510-96f6-a4825b65b6a0"}]': finished 2024-04-14T16:12:28.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:27 smithi122 ceph-mon[33752]: osdmap e31: 5 total, 4 up, 5 in 2024-04-14T16:12:28.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:27 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:28.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:27 smithi122 ceph-mon[33752]: from='client.? 172.21.15.122:0/4246102203' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:12:28.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:27 smithi016 ceph-mon[30237]: from='client.? 172.21.15.122:0/3411379282' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc0de671-86d4-4510-96f6-a4825b65b6a0"}]: dispatch 2024-04-14T16:12:28.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:27 smithi016 ceph-mon[30237]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "cc0de671-86d4-4510-96f6-a4825b65b6a0"}]: dispatch 2024-04-14T16:12:28.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:27 smithi016 ceph-mon[30237]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "cc0de671-86d4-4510-96f6-a4825b65b6a0"}]': finished 2024-04-14T16:12:28.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:27 smithi016 ceph-mon[30237]: osdmap e31: 5 total, 4 up, 5 in 2024-04-14T16:12:28.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:27 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:28.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:27 smithi016 ceph-mon[30237]: from='client.? 172.21.15.122:0/4246102203' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:12:29.325 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:29 smithi122 ceph-mon[33752]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 128 KiB/s, 0 objects/s recovering 2024-04-14T16:12:29.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:29 smithi016 ceph-mon[30237]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 128 KiB/s, 0 objects/s recovering 2024-04-14T16:12:29.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:29 smithi027 ceph-mon[33435]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 128 KiB/s, 0 objects/s recovering 2024-04-14T16:12:31.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:31 smithi122 ceph-mon[33752]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T16:12:31.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:31 smithi016 ceph-mon[30237]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T16:12:31.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:31 smithi027 ceph-mon[33435]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T16:12:33.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:33 smithi122 ceph-mon[33752]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-04-14T16:12:33.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:33 smithi016 ceph-mon[30237]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-04-14T16:12:33.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:33 smithi027 ceph-mon[33435]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-04-14T16:12:34.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:34 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-14T16:12:34.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:34 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:34.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:34 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-14T16:12:34.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:34 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:34.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:34 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-14T16:12:34.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:34 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:35.311 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:35 smithi122 ceph-mon[33752]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-04-14T16:12:35.312 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:35 smithi122 ceph-mon[33752]: Deploying daemon osd.4 on smithi122 2024-04-14T16:12:35.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:35 smithi016 ceph-mon[30237]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-04-14T16:12:35.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:35 smithi016 ceph-mon[30237]: Deploying daemon osd.4 on smithi122 2024-04-14T16:12:35.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:35 smithi027 ceph-mon[33435]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-04-14T16:12:35.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:35 smithi027 ceph-mon[33435]: Deploying daemon osd.4 on smithi122 2024-04-14T16:12:37.297 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:37 smithi122 ceph-mon[33752]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T16:12:37.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:37 smithi016 ceph-mon[30237]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T16:12:37.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:37 smithi027 ceph-mon[33435]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T16:12:39.325 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:39 smithi122 ceph-mon[33752]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:39.325 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:39 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:39.325 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:39 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:39.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:39 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:12:39.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:39 smithi016 ceph-mon[30237]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:39.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:39 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:39.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:39 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:39.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:39 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:12:39.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:39 smithi027 ceph-mon[33435]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:39.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:39 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:39.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:39 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:39.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:39 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:12:41.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:41 smithi122 ceph-mon[33752]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:41.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:41 smithi016 ceph-mon[30237]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:41.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:41 smithi027 ceph-mon[33435]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:42.308 INFO:teuthology.orchestra.run.smithi122.stdout:Created osd(s) 4 on host 'smithi122' 2024-04-14T16:12:42.855 DEBUG:teuthology.orchestra.run.smithi122:osd.4> sudo journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.4.service 2024-04-14T16:12:42.857 INFO:tasks.cephadm:Deploying osd.5 on smithi122 with /dev/vg_nvme/lv_3... 2024-04-14T16:12:42.857 DEBUG:teuthology.orchestra.run.smithi122:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-14T16:12:42.872 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:42 smithi122 ceph-mon[33752]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:42.872 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:42 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:42.872 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:42 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:42.872 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:42 smithi122 ceph-mon[33752]: from='osd.4 [v2:172.21.15.122:6800/2012131029,v1:172.21.15.122:6801/2012131029]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-14T16:12:42.872 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:42 smithi122 ceph-mon[33752]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-14T16:12:42.872 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:42 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:42.872 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:42 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:43.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:42 smithi016 ceph-mon[30237]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:43.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:42 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:43.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:42 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:43.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:42 smithi016 ceph-mon[30237]: from='osd.4 [v2:172.21.15.122:6800/2012131029,v1:172.21.15.122:6801/2012131029]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-14T16:12:43.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:42 smithi016 ceph-mon[30237]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-14T16:12:43.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:42 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:43.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:42 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:43.275 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:42 smithi027 ceph-mon[33435]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:43.275 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:42 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:43.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:42 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:43.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:42 smithi027 ceph-mon[33435]: from='osd.4 [v2:172.21.15.122:6800/2012131029,v1:172.21.15.122:6801/2012131029]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-14T16:12:43.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:42 smithi027 ceph-mon[33435]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-14T16:12:43.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:42 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:43.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:42 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:43.674 INFO:teuthology.orchestra.run.smithi122.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.c/config 2024-04-14T16:12:44.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:43 smithi122 ceph-mon[33752]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-14T16:12:44.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:43 smithi122 ceph-mon[33752]: osdmap e32: 5 total, 4 up, 5 in 2024-04-14T16:12:44.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:43 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:44.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:43 smithi122 ceph-mon[33752]: from='osd.4 [v2:172.21.15.122:6800/2012131029,v1:172.21.15.122:6801/2012131029]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]: dispatch 2024-04-14T16:12:44.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:43 smithi122 ceph-mon[33752]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]: dispatch 2024-04-14T16:12:44.076 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:12:43 smithi122 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4[38495]: 2024-04-14T16:12:43.864+0000 7fbb8bfe6700 -1 osd.4 0 waiting for initial osdmap 2024-04-14T16:12:44.076 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:12:43 smithi122 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4[38495]: 2024-04-14T16:12:43.868+0000 7fbb87dd9700 -1 osd.4 33 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-14T16:12:44.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:43 smithi016 ceph-mon[30237]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-14T16:12:44.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:43 smithi016 ceph-mon[30237]: osdmap e32: 5 total, 4 up, 5 in 2024-04-14T16:12:44.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:43 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:44.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:43 smithi016 ceph-mon[30237]: from='osd.4 [v2:172.21.15.122:6800/2012131029,v1:172.21.15.122:6801/2012131029]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]: dispatch 2024-04-14T16:12:44.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:43 smithi016 ceph-mon[30237]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]: dispatch 2024-04-14T16:12:44.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:43 smithi027 ceph-mon[33435]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-14T16:12:44.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:43 smithi027 ceph-mon[33435]: osdmap e32: 5 total, 4 up, 5 in 2024-04-14T16:12:44.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:43 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:44.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:43 smithi027 ceph-mon[33435]: from='osd.4 [v2:172.21.15.122:6800/2012131029,v1:172.21.15.122:6801/2012131029]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]: dispatch 2024-04-14T16:12:44.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:43 smithi027 ceph-mon[33435]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]: dispatch 2024-04-14T16:12:45.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:44 smithi016 ceph-mon[30237]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:45.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:44 smithi016 ceph-mon[30237]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]': finished 2024-04-14T16:12:45.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:44 smithi016 ceph-mon[30237]: osdmap e33: 5 total, 4 up, 5 in 2024-04-14T16:12:45.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:44 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:45.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:44 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:45.146 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:44 smithi122 ceph-mon[33752]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:45.147 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:44 smithi122 ceph-mon[33752]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]': finished 2024-04-14T16:12:45.147 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:44 smithi122 ceph-mon[33752]: osdmap e33: 5 total, 4 up, 5 in 2024-04-14T16:12:45.147 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:44 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:45.147 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:44 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:45.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:44 smithi027 ceph-mon[33435]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:12:45.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:44 smithi027 ceph-mon[33435]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]': finished 2024-04-14T16:12:45.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:44 smithi027 ceph-mon[33435]: osdmap e33: 5 total, 4 up, 5 in 2024-04-14T16:12:45.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:44 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:45.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:44 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:46.109 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:45 smithi122 ceph-mon[33752]: purged_snaps scrub starts 2024-04-14T16:12:46.109 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:45 smithi122 ceph-mon[33752]: purged_snaps scrub ok 2024-04-14T16:12:46.109 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:45 smithi122 ceph-mon[33752]: osd.4 [v2:172.21.15.122:6800/2012131029,v1:172.21.15.122:6801/2012131029] boot 2024-04-14T16:12:46.109 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:45 smithi122 ceph-mon[33752]: osdmap e34: 5 total, 5 up, 5 in 2024-04-14T16:12:46.110 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:45 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:46.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:45 smithi016 ceph-mon[30237]: purged_snaps scrub starts 2024-04-14T16:12:46.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:45 smithi016 ceph-mon[30237]: purged_snaps scrub ok 2024-04-14T16:12:46.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:45 smithi016 ceph-mon[30237]: osd.4 [v2:172.21.15.122:6800/2012131029,v1:172.21.15.122:6801/2012131029] boot 2024-04-14T16:12:46.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:45 smithi016 ceph-mon[30237]: osdmap e34: 5 total, 5 up, 5 in 2024-04-14T16:12:46.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:45 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:46.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:45 smithi027 ceph-mon[33435]: purged_snaps scrub starts 2024-04-14T16:12:46.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:45 smithi027 ceph-mon[33435]: purged_snaps scrub ok 2024-04-14T16:12:46.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:45 smithi027 ceph-mon[33435]: osd.4 [v2:172.21.15.122:6800/2012131029,v1:172.21.15.122:6801/2012131029] boot 2024-04-14T16:12:46.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:45 smithi027 ceph-mon[33435]: osdmap e34: 5 total, 5 up, 5 in 2024-04-14T16:12:46.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:45 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-14T16:12:46.459 INFO:teuthology.orchestra.run.smithi122.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-14T16:12:46.459 INFO:teuthology.orchestra.run.smithi122.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-14T16:12:46.459 INFO:teuthology.orchestra.run.smithi122.stderr: stderr: 10+0 records in 2024-04-14T16:12:46.459 INFO:teuthology.orchestra.run.smithi122.stderr:10+0 records out 2024-04-14T16:12:46.459 INFO:teuthology.orchestra.run.smithi122.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0156948 s, 668 MB/s 2024-04-14T16:12:46.459 INFO:teuthology.orchestra.run.smithi122.stderr:--> Zapping successful for: 2024-04-14T16:12:47.222 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:46 smithi122 ceph-mon[33752]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:12:47.222 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:46 smithi122 ceph-mon[33752]: osdmap e35: 5 total, 5 up, 5 in 2024-04-14T16:12:47.275 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:46 smithi027 ceph-mon[33435]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:12:47.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:46 smithi027 ceph-mon[33435]: osdmap e35: 5 total, 5 up, 5 in 2024-04-14T16:12:47.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:46 smithi016 ceph-mon[30237]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:12:47.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:46 smithi016 ceph-mon[30237]: osdmap e35: 5 total, 5 up, 5 in 2024-04-14T16:12:47.629 DEBUG:teuthology.orchestra.run.smithi122:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph orch daemon add osd smithi122:vg_nvme/lv_3 2024-04-14T16:12:47.863 INFO:teuthology.orchestra.run.smithi122.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.c/config 2024-04-14T16:12:48.149 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: osdmap e36: 5 total, 5 up, 5 in 2024-04-14T16:12:48.149 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: Detected new or changed devices on smithi122 2024-04-14T16:12:48.149 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.149 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.149 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:12:48.149 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: Adjusting osd_memory_target on smithi122 to 21184M 2024-04-14T16:12:48.149 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.149 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:48.149 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:12:48.149 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.149 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:12:48.149 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:48.150 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:12:48.150 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:47 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: osdmap e36: 5 total, 5 up, 5 in 2024-04-14T16:12:48.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: Detected new or changed devices on smithi122 2024-04-14T16:12:48.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:12:48.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: Adjusting osd_memory_target on smithi122 to 21184M 2024-04-14T16:12:48.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:48.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:12:48.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:12:48.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:48.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:12:48.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:47 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: osdmap e36: 5 total, 5 up, 5 in 2024-04-14T16:12:48.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: Detected new or changed devices on smithi122 2024-04-14T16:12:48.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:12:48.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: Adjusting osd_memory_target on smithi122 to 21184M 2024-04-14T16:12:48.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:48.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:12:48.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:48.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:12:48.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:48.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:12:48.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:47 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:12:49.005 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:48 smithi122 ceph-mon[33752]: pgmap v125: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:12:49.005 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:48 smithi122 ceph-mon[33752]: osdmap e37: 5 total, 5 up, 5 in 2024-04-14T16:12:49.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:48 smithi027 ceph-mon[33435]: pgmap v125: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:12:49.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:48 smithi027 ceph-mon[33435]: osdmap e37: 5 total, 5 up, 5 in 2024-04-14T16:12:49.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:48 smithi016 ceph-mon[30237]: pgmap v125: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:12:49.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:48 smithi016 ceph-mon[30237]: osdmap e37: 5 total, 5 up, 5 in 2024-04-14T16:12:50.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:49 smithi027 ceph-mon[33435]: osdmap e38: 5 total, 5 up, 5 in 2024-04-14T16:12:50.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:49 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:12:50.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:49 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:12:50.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:49 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:50.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:49 smithi122 ceph-mon[33752]: osdmap e38: 5 total, 5 up, 5 in 2024-04-14T16:12:50.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:49 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:12:50.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:49 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:12:50.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:49 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:50.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:49 smithi016 ceph-mon[30237]: osdmap e38: 5 total, 5 up, 5 in 2024-04-14T16:12:50.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:49 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-14T16:12:50.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:49 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-14T16:12:50.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:49 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:12:51.041 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:50 smithi122 ceph-mon[33752]: pgmap v128: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:12:51.042 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:50 smithi122 ceph-mon[33752]: from='client.24193 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi122:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:12:51.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:50 smithi027 ceph-mon[33435]: pgmap v128: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:12:51.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:50 smithi027 ceph-mon[33435]: from='client.24193 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi122:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:12:51.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:50 smithi016 ceph-mon[30237]: pgmap v128: 1 pgs: 1 remapped+peering; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:12:51.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:50 smithi016 ceph-mon[30237]: from='client.24193 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi122:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:12:53.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:52 smithi027 ceph-mon[33435]: pgmap v129: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:12:53.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:52 smithi027 ceph-mon[33435]: from='client.? 172.21.15.122:0/2500942813' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "acf3ff67-b256-4c30-a34d-745f46f996ea"}]: dispatch 2024-04-14T16:12:53.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:52 smithi027 ceph-mon[33435]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "acf3ff67-b256-4c30-a34d-745f46f996ea"}]: dispatch 2024-04-14T16:12:53.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:52 smithi027 ceph-mon[33435]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "acf3ff67-b256-4c30-a34d-745f46f996ea"}]': finished 2024-04-14T16:12:53.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:52 smithi027 ceph-mon[33435]: osdmap e39: 6 total, 5 up, 6 in 2024-04-14T16:12:53.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:52 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:12:53.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:52 smithi122 ceph-mon[33752]: pgmap v129: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:12:53.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:52 smithi122 ceph-mon[33752]: from='client.? 172.21.15.122:0/2500942813' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "acf3ff67-b256-4c30-a34d-745f46f996ea"}]: dispatch 2024-04-14T16:12:53.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:52 smithi122 ceph-mon[33752]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "acf3ff67-b256-4c30-a34d-745f46f996ea"}]: dispatch 2024-04-14T16:12:53.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:52 smithi122 ceph-mon[33752]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "acf3ff67-b256-4c30-a34d-745f46f996ea"}]': finished 2024-04-14T16:12:53.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:52 smithi122 ceph-mon[33752]: osdmap e39: 6 total, 5 up, 6 in 2024-04-14T16:12:53.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:52 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:12:53.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:52 smithi016 ceph-mon[30237]: pgmap v129: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:12:53.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:52 smithi016 ceph-mon[30237]: from='client.? 172.21.15.122:0/2500942813' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "acf3ff67-b256-4c30-a34d-745f46f996ea"}]: dispatch 2024-04-14T16:12:53.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:52 smithi016 ceph-mon[30237]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "acf3ff67-b256-4c30-a34d-745f46f996ea"}]: dispatch 2024-04-14T16:12:53.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:52 smithi016 ceph-mon[30237]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "acf3ff67-b256-4c30-a34d-745f46f996ea"}]': finished 2024-04-14T16:12:53.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:52 smithi016 ceph-mon[30237]: osdmap e39: 6 total, 5 up, 6 in 2024-04-14T16:12:53.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:52 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:12:54.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:53 smithi027 ceph-mon[33435]: from='client.? 172.21.15.122:0/147709768' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:12:54.325 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:53 smithi122 ceph-mon[33752]: from='client.? 172.21.15.122:0/147709768' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:12:54.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:53 smithi016 ceph-mon[30237]: from='client.? 172.21.15.122:0/147709768' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-14T16:12:55.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:54 smithi027 ceph-mon[33435]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T16:12:55.325 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:54 smithi122 ceph-mon[33752]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T16:12:55.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:54 smithi016 ceph-mon[30237]: pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T16:12:57.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:56 smithi027 ceph-mon[33435]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-04-14T16:12:57.325 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:56 smithi122 ceph-mon[33752]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-04-14T16:12:57.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:56 smithi016 ceph-mon[30237]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-04-14T16:12:58.991 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:58 smithi122 ceph-mon[33752]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-04-14T16:12:59.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:58 smithi027 ceph-mon[33435]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-04-14T16:12:59.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:58 smithi016 ceph-mon[30237]: pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-04-14T16:13:00.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:59 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-14T16:13:00.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:59 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:13:00.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:12:59 smithi027 ceph-mon[33435]: Deploying daemon osd.5 on smithi122 2024-04-14T16:13:00.323 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:59 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-14T16:13:00.323 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:59 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:13:00.324 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:12:59 smithi122 ceph-mon[33752]: Deploying daemon osd.5 on smithi122 2024-04-14T16:13:00.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-14T16:13:00.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:59 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:13:00.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:12:59 smithi016 ceph-mon[30237]: Deploying daemon osd.5 on smithi122 2024-04-14T16:13:01.247 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:00 smithi122 ceph-mon[33752]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T16:13:01.275 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:00 smithi027 ceph-mon[33435]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T16:13:01.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:00 smithi016 ceph-mon[30237]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T16:13:03.252 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:02 smithi122 ceph-mon[33752]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T16:13:03.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:02 smithi027 ceph-mon[33435]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T16:13:03.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:02 smithi016 ceph-mon[30237]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T16:13:05.119 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:04 smithi122 ceph-mon[33752]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:13:05.119 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:05.120 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:05.120 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:13:05.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:04 smithi027 ceph-mon[33435]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:13:05.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:05.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:05.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:13:05.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:04 smithi016 ceph-mon[30237]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:13:05.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:05.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:05.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:13:07.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:06 smithi122 ceph-mon[33752]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:13:07.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:06 smithi027 ceph-mon[33435]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:13:07.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:06 smithi016 ceph-mon[30237]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:13:07.811 INFO:teuthology.orchestra.run.smithi122.stdout:Created osd(s) 5 on host 'smithi122' 2024-04-14T16:13:08.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:07 smithi122 ceph-mon[33752]: from='osd.5 [v2:172.21.15.122:6808/2789270647,v1:172.21.15.122:6809/2789270647]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-14T16:13:08.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:07 smithi122 ceph-mon[33752]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-14T16:13:08.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:07 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:08.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:07 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:08.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:07 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:08.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:07 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:08.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:07 smithi027 ceph-mon[33435]: from='osd.5 [v2:172.21.15.122:6808/2789270647,v1:172.21.15.122:6809/2789270647]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-14T16:13:08.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:07 smithi027 ceph-mon[33435]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-14T16:13:08.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:07 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:08.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:07 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:08.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:07 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:08.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:07 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:08.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:07 smithi016 ceph-mon[30237]: from='osd.5 [v2:172.21.15.122:6808/2789270647,v1:172.21.15.122:6809/2789270647]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-14T16:13:08.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:07 smithi016 ceph-mon[30237]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-14T16:13:08.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:07 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:08.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:07 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:08.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:07 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:08.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:07 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:08.482 DEBUG:teuthology.orchestra.run.smithi122:osd.5> sudo journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.5.service 2024-04-14T16:13:08.484 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-04-14T16:13:08.485 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph osd stat -f json 2024-04-14T16:13:08.748 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:09.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:08 smithi122 ceph-mon[33752]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:13:09.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:08 smithi122 ceph-mon[33752]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-14T16:13:09.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:08 smithi122 ceph-mon[33752]: osdmap e40: 6 total, 5 up, 6 in 2024-04-14T16:13:09.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:08 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:09.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:08 smithi122 ceph-mon[33752]: from='osd.5 [v2:172.21.15.122:6808/2789270647,v1:172.21.15.122:6809/2789270647]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]: dispatch 2024-04-14T16:13:09.077 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:08 smithi122 ceph-mon[33752]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]: dispatch 2024-04-14T16:13:09.077 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:13:08 smithi122 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5[44698]: 2024-04-14T16:13:08.938+0000 7f7c1cb9a700 -1 osd.5 0 waiting for initial osdmap 2024-04-14T16:13:09.078 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:13:08 smithi122 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5[44698]: 2024-04-14T16:13:08.943+0000 7f7c1898d700 -1 osd.5 41 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-14T16:13:09.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:08 smithi016 ceph-mon[30237]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:13:09.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:08 smithi016 ceph-mon[30237]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-14T16:13:09.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:08 smithi016 ceph-mon[30237]: osdmap e40: 6 total, 5 up, 6 in 2024-04-14T16:13:09.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:08 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:09.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:08 smithi016 ceph-mon[30237]: from='osd.5 [v2:172.21.15.122:6808/2789270647,v1:172.21.15.122:6809/2789270647]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]: dispatch 2024-04-14T16:13:09.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:08 smithi016 ceph-mon[30237]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]: dispatch 2024-04-14T16:13:09.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:08 smithi027 ceph-mon[33435]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:13:09.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:08 smithi027 ceph-mon[33435]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-14T16:13:09.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:08 smithi027 ceph-mon[33435]: osdmap e40: 6 total, 5 up, 6 in 2024-04-14T16:13:09.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:08 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:09.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:08 smithi027 ceph-mon[33435]: from='osd.5 [v2:172.21.15.122:6808/2789270647,v1:172.21.15.122:6809/2789270647]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]: dispatch 2024-04-14T16:13:09.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:08 smithi027 ceph-mon[33435]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]: dispatch 2024-04-14T16:13:09.966 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:09 smithi016 ceph-mon[30237]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]': finished 2024-04-14T16:13:09.966 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:09 smithi016 ceph-mon[30237]: osdmap e41: 6 total, 5 up, 6 in 2024-04-14T16:13:09.966 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:09 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:09.966 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:09 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:10.226 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:09 smithi122 ceph-mon[33752]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]': finished 2024-04-14T16:13:10.226 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:09 smithi122 ceph-mon[33752]: osdmap e41: 6 total, 5 up, 6 in 2024-04-14T16:13:10.226 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:09 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:10.227 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:09 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:10.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:09 smithi027 ceph-mon[33435]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi122", "root=default"]}]': finished 2024-04-14T16:13:10.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:09 smithi027 ceph-mon[33435]: osdmap e41: 6 total, 5 up, 6 in 2024-04-14T16:13:10.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:09 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:10.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:09 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:10.634 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:13:11.076 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:10 smithi122 ceph-mon[33752]: purged_snaps scrub starts 2024-04-14T16:13:11.157 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:10 smithi122 ceph-mon[33752]: purged_snaps scrub ok 2024-04-14T16:13:11.157 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:10 smithi122 ceph-mon[33752]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:13:11.157 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:10 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:11.157 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:10 smithi122 ceph-mon[33752]: osd.5 [v2:172.21.15.122:6808/2789270647,v1:172.21.15.122:6809/2789270647] boot 2024-04-14T16:13:11.157 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:10 smithi122 ceph-mon[33752]: osdmap e42: 6 total, 6 up, 6 in 2024-04-14T16:13:11.157 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:10 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:11.157 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:10 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/1571364801' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-14T16:13:11.157 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:10 smithi122 ceph-mon[33752]: osdmap e43: 6 total, 6 up, 6 in 2024-04-14T16:13:11.181 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:10 smithi016 ceph-mon[30237]: purged_snaps scrub starts 2024-04-14T16:13:11.181 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:10 smithi016 ceph-mon[30237]: purged_snaps scrub ok 2024-04-14T16:13:11.181 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:10 smithi016 ceph-mon[30237]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:13:11.181 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:10 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:11.181 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:10 smithi016 ceph-mon[30237]: osd.5 [v2:172.21.15.122:6808/2789270647,v1:172.21.15.122:6809/2789270647] boot 2024-04-14T16:13:11.181 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:10 smithi016 ceph-mon[30237]: osdmap e42: 6 total, 6 up, 6 in 2024-04-14T16:13:11.181 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:10 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:11.181 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:10 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1571364801' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-14T16:13:11.181 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:10 smithi016 ceph-mon[30237]: osdmap e43: 6 total, 6 up, 6 in 2024-04-14T16:13:11.208 INFO:teuthology.orchestra.run.smithi016.stdout:{"epoch":42,"num_osds":6,"num_up_osds":6,"osd_up_since":1713111189,"num_in_osds":6,"osd_in_since":1713111172,"num_remapped_pgs":1} 2024-04-14T16:13:11.208 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph osd dump --format=json 2024-04-14T16:13:11.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:10 smithi027 ceph-mon[33435]: purged_snaps scrub starts 2024-04-14T16:13:11.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:10 smithi027 ceph-mon[33435]: purged_snaps scrub ok 2024-04-14T16:13:11.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:10 smithi027 ceph-mon[33435]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 143 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:13:11.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:10 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:11.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:10 smithi027 ceph-mon[33435]: osd.5 [v2:172.21.15.122:6808/2789270647,v1:172.21.15.122:6809/2789270647] boot 2024-04-14T16:13:11.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:10 smithi027 ceph-mon[33435]: osdmap e42: 6 total, 6 up, 6 in 2024-04-14T16:13:11.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:10 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-14T16:13:11.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:10 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/1571364801' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-14T16:13:11.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:10 smithi027 ceph-mon[33435]: osdmap e43: 6 total, 6 up, 6 in 2024-04-14T16:13:11.453 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:12.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: Detected new or changed devices on smithi122 2024-04-14T16:13:12.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:13:12.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:13:12.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: Adjusting osd_memory_target on smithi122 to 10592M 2024-04-14T16:13:12.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.671 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:13:12.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:13:12.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:13:12.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:13:12.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:13:12.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.672 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:12 smithi016 ceph-mon[30237]: osdmap e44: 6 total, 6 up, 6 in 2024-04-14T16:13:12.769 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: Detected new or changed devices on smithi122 2024-04-14T16:13:12.769 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.769 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.769 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:13:12.770 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:13:12.770 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: Adjusting osd_memory_target on smithi122 to 10592M 2024-04-14T16:13:12.770 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.770 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:13:12.770 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:13:12.770 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.770 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:13:12.770 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:13:12.770 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:13:12.770 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.770 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:12 smithi122 ceph-mon[33752]: osdmap e44: 6 total, 6 up, 6 in 2024-04-14T16:13:12.775 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: Detected new or changed devices on smithi122 2024-04-14T16:13:12.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:13:12.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-14T16:13:12.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: Adjusting osd_memory_target on smithi122 to 10592M 2024-04-14T16:13:12.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:13:12.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:13:12.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:13:12.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:13:12.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:13:12.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:13:12.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:12 smithi027 ceph-mon[33435]: osdmap e44: 6 total, 6 up, 6 in 2024-04-14T16:13:13.543 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:13:13.543 INFO:teuthology.orchestra.run.smithi016.stdout:{"epoch":45,"fsid":"0c4012e2-fa79-11ee-bc8e-c7b262605968","created":"2024-04-14T16:08:25.987592+0000","modified":"2024-04-14T16:13:13.422259+0000","last_up_change":"2024-04-14T16:13:09.936063+0000","last_in_change":"2024-04-14T16:12:52.453634+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-14T16:11:57.486226+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"22","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"9bf0a155-4dd2-4a8e-8f8c-6705f6c447b8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6802","nonce":324536363},{"type":"v1","addr":"172.21.15.16:6803","nonce":324536363}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6804","nonce":324536363},{"type":"v1","addr":"172.21.15.16:6805","nonce":324536363}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6808","nonce":324536363},{"type":"v1","addr":"172.21.15.16:6809","nonce":324536363}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6806","nonce":324536363},{"type":"v1","addr":"172.21.15.16:6807","nonce":324536363}]},"public_addr":"172.21.15.16:6803/324536363","cluster_addr":"172.21.15.16:6805/324536363","heartbeat_back_addr":"172.21.15.16:6809/324536363","heartbeat_front_addr":"172.21.15.16:6807/324536363","state":["exists","up"]},{"osd":1,"uuid":"12aa7d4e-952e-419a-832b-f71136f4116c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6810","nonce":456487655},{"type":"v1","addr":"172.21.15.16:6811","nonce":456487655}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6812","nonce":456487655},{"type":"v1","addr":"172.21.15.16:6813","nonce":456487655}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6816","nonce":456487655},{"type":"v1","addr":"172.21.15.16:6817","nonce":456487655}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6814","nonce":456487655},{"type":"v1","addr":"172.21.15.16:6815","nonce":456487655}]},"public_addr":"172.21.15.16:6811/456487655","cluster_addr":"172.21.15.16:6813/456487655","heartbeat_back_addr":"172.21.15.16:6817/456487655","heartbeat_front_addr":"172.21.15.16:6815/456487655","state":["exists","up"]},{"osd":2,"uuid":"b97be978-d307-4233-b371-5c7fa2ec75fa","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6800","nonce":422516969},{"type":"v1","addr":"172.21.15.27:6801","nonce":422516969}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6802","nonce":422516969},{"type":"v1","addr":"172.21.15.27:6803","nonce":422516969}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6806","nonce":422516969},{"type":"v1","addr":"172.21.15.27:6807","nonce":422516969}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6804","nonce":422516969},{"type":"v1","addr":"172.21.15.27:6805","nonce":422516969}]},"public_addr":"172.21.15.27:6801/422516969","cluster_addr":"172.21.15.27:6803/422516969","heartbeat_back_addr":"172.21.15.27:6807/422516969","heartbeat_front_addr":"172.21.15.27:6805/422516969","state":["exists","up"]},{"osd":3,"uuid":"aff755fe-44fb-445a-9df7-beb595970433","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":44,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6808","nonce":3639786909},{"type":"v1","addr":"172.21.15.27:6809","nonce":3639786909}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6810","nonce":3639786909},{"type":"v1","addr":"172.21.15.27:6811","nonce":3639786909}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6814","nonce":3639786909},{"type":"v1","addr":"172.21.15.27:6815","nonce":3639786909}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6812","nonce":3639786909},{"type":"v1","addr":"172.21.15.27:6813","nonce":3639786909}]},"public_addr":"172.21.15.27:6809/3639786909","cluster_addr":"172.21.15.27:6811/3639786909","heartbeat_back_addr":"172.21.15.27:6815/3639786909","heartbeat_front_addr":"172.21.15.27:6813/3639786909","state":["exists","up"]},{"osd":4,"uuid":"cc0de671-86d4-4510-96f6-a4825b65b6a0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6800","nonce":2012131029},{"type":"v1","addr":"172.21.15.122:6801","nonce":2012131029}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6802","nonce":2012131029},{"type":"v1","addr":"172.21.15.122:6803","nonce":2012131029}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6806","nonce":2012131029},{"type":"v1","addr":"172.21.15.122:6807","nonce":2012131029}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6804","nonce":2012131029},{"type":"v1","addr":"172.21.15.122:6805","nonce":2012131029}]},"public_addr":"172.21.15.122:6801/2012131029","cluster_addr":"172.21.15.122:6803/2012131029","heartbeat_back_addr":"172.21.15.122:6807/2012131029","heartbeat_front_addr":"172.21.15.122:6805/2012131029","state":["exists","up"]},{"osd":5,"uuid":"acf3ff67-b256-4c30-a34d-745f46f996ea","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6808","nonce":2789270647},{"type":"v1","addr":"172.21.15.122:6809","nonce":2789270647}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6810","nonce":2789270647},{"type":"v1","addr":"172.21.15.122:6811","nonce":2789270647}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6814","nonce":2789270647},{"type":"v1","addr":"172.21.15.122:6815","nonce":2789270647}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6812","nonce":2789270647},{"type":"v1","addr":"172.21.15.122:6813","nonce":2789270647}]},"public_addr":"172.21.15.122:6809/2789270647","cluster_addr":"172.21.15.122:6811/2789270647","heartbeat_back_addr":"172.21.15.122:6815/2789270647","heartbeat_front_addr":"172.21.15.122:6813/2789270647","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:11:04.232909+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:11:29.433987+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:11:53.388850+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:12:19.702744+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:12:43.000818+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:13:08.573696+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.16:0/1662280132":"2024-04-15T16:09:29.396526+0000","172.21.15.16:6801/764646842":"2024-04-15T16:09:29.396526+0000","172.21.15.16:0/3888020301":"2024-04-15T16:09:29.396526+0000","172.21.15.16:0/1776745834":"2024-04-15T16:09:01.392080+0000","172.21.15.16:6800/764646842":"2024-04-15T16:09:29.396526+0000","172.21.15.16:0/2384243504":"2024-04-15T16:09:01.392080+0000","172.21.15.16:6800/2295548346":"2024-04-15T16:09:01.392080+0000","172.21.15.16:0/1270773410":"2024-04-15T16:09:01.392080+0000","172.21.15.16:6801/2295548346":"2024-04-15T16:09:01.392080+0000","172.21.15.16:0/3744179780":"2024-04-15T16:09:29.396526+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-04-14T16:13:13.543 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:13 smithi016 ceph-mon[30237]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:13.678 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:13 smithi027 ceph-mon[33435]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:13.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:13 smithi122 ceph-mon[33752]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:14.136 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-04-14T16:11:57.486226+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '22', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 6, 'score_stable': 6, 'optimal_score': 0.5, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-04-14T16:13:14.137 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-04-14T16:13:14.375 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:14.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:14 smithi027 ceph-mon[33435]: osdmap e45: 6 total, 6 up, 6 in 2024-04-14T16:13:14.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:14 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/958952088' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T16:13:14.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:14 smithi122 ceph-mon[33752]: osdmap e45: 6 total, 6 up, 6 in 2024-04-14T16:13:14.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:14 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/958952088' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T16:13:14.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:14 smithi016 ceph-mon[30237]: osdmap e45: 6 total, 6 up, 6 in 2024-04-14T16:13:14.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:14 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/958952088' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T16:13:15.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:15 smithi016 ceph-mon[30237]: pgmap v147: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:15.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:15 smithi016 ceph-mon[30237]: osdmap e46: 6 total, 6 up, 6 in 2024-04-14T16:13:15.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:15 smithi027 ceph-mon[33435]: pgmap v147: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:15.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:15 smithi027 ceph-mon[33435]: osdmap e46: 6 total, 6 up, 6 in 2024-04-14T16:13:15.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:15 smithi122 ceph-mon[33752]: pgmap v147: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:15.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:15 smithi122 ceph-mon[33752]: osdmap e46: 6 total, 6 up, 6 in 2024-04-14T16:13:16.451 INFO:teuthology.orchestra.run.smithi016.stdout:pg_num: 1 2024-04-14T16:13:16.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:16 smithi027 ceph-mon[33435]: pgmap v149: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:16.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:16 smithi122 ceph-mon[33752]: pgmap v149: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:16.831 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:16 smithi016 ceph-mon[30237]: pgmap v149: 1 pgs: 1 remapped+peering; 577 KiB data, 170 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:17.164 INFO:tasks.cephadm:Setting up client nodes... 2024-04-14T16:13:17.165 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-04-14T16:13:17.165 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-04-14T16:13:17.165 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph mgr dump --format=json 2024-04-14T16:13:17.408 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:17.690 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:17 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/2300856445' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-14T16:13:17.775 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:17 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/2300856445' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-14T16:13:17.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:17 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/2300856445' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-14T16:13:18.730 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:18 smithi016 ceph-mon[30237]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T16:13:18.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:18 smithi027 ceph-mon[33435]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T16:13:18.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:18 smithi122 ceph-mon[33752]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T16:13:19.253 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:13:19.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:19 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/2902360442' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-14T16:13:19.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:19 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/2902360442' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-14T16:13:19.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:19 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/2902360442' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-14T16:13:20.031 INFO:teuthology.orchestra.run.smithi016.stdout:{"epoch":15,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6800","nonce":2059633181},{"type":"v1","addr":"172.21.15.16:6801","nonce":2059633181}]},"active_addr":"172.21.15.16:6801/2059633181","active_change":"2024-04-14T16:09:29.396640+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":24104,"name":"b","mgr_features":4540701547738038271,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.0.0","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.0.0","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.16:8443/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":3,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.16:0","nonce":4064723237}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.16:0","nonce":2165045911}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.16:0","nonce":3493887314}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.16:0","nonce":326046528}]}]} 2024-04-14T16:13:20.037 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-04-14T16:13:20.037 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-04-14T16:13:20.037 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph osd dump --format=json 2024-04-14T16:13:20.278 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:20.657 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:20 smithi016 ceph-mon[30237]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-04-14T16:13:20.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:20 smithi027 ceph-mon[33435]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-04-14T16:13:20.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:20 smithi122 ceph-mon[33752]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 77 KiB/s, 0 objects/s recovering 2024-04-14T16:13:22.184 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:13:22.184 INFO:teuthology.orchestra.run.smithi016.stdout:{"epoch":46,"fsid":"0c4012e2-fa79-11ee-bc8e-c7b262605968","created":"2024-04-14T16:08:25.987592+0000","modified":"2024-04-14T16:13:14.427830+0000","last_up_change":"2024-04-14T16:13:09.936063+0000","last_in_change":"2024-04-14T16:12:52.453634+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-14T16:11:57.486226+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"22","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"9bf0a155-4dd2-4a8e-8f8c-6705f6c447b8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6802","nonce":324536363},{"type":"v1","addr":"172.21.15.16:6803","nonce":324536363}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6804","nonce":324536363},{"type":"v1","addr":"172.21.15.16:6805","nonce":324536363}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6808","nonce":324536363},{"type":"v1","addr":"172.21.15.16:6809","nonce":324536363}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6806","nonce":324536363},{"type":"v1","addr":"172.21.15.16:6807","nonce":324536363}]},"public_addr":"172.21.15.16:6803/324536363","cluster_addr":"172.21.15.16:6805/324536363","heartbeat_back_addr":"172.21.15.16:6809/324536363","heartbeat_front_addr":"172.21.15.16:6807/324536363","state":["exists","up"]},{"osd":1,"uuid":"12aa7d4e-952e-419a-832b-f71136f4116c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6810","nonce":456487655},{"type":"v1","addr":"172.21.15.16:6811","nonce":456487655}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6812","nonce":456487655},{"type":"v1","addr":"172.21.15.16:6813","nonce":456487655}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6816","nonce":456487655},{"type":"v1","addr":"172.21.15.16:6817","nonce":456487655}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6814","nonce":456487655},{"type":"v1","addr":"172.21.15.16:6815","nonce":456487655}]},"public_addr":"172.21.15.16:6811/456487655","cluster_addr":"172.21.15.16:6813/456487655","heartbeat_back_addr":"172.21.15.16:6817/456487655","heartbeat_front_addr":"172.21.15.16:6815/456487655","state":["exists","up"]},{"osd":2,"uuid":"b97be978-d307-4233-b371-5c7fa2ec75fa","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6800","nonce":422516969},{"type":"v1","addr":"172.21.15.27:6801","nonce":422516969}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6802","nonce":422516969},{"type":"v1","addr":"172.21.15.27:6803","nonce":422516969}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6806","nonce":422516969},{"type":"v1","addr":"172.21.15.27:6807","nonce":422516969}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6804","nonce":422516969},{"type":"v1","addr":"172.21.15.27:6805","nonce":422516969}]},"public_addr":"172.21.15.27:6801/422516969","cluster_addr":"172.21.15.27:6803/422516969","heartbeat_back_addr":"172.21.15.27:6807/422516969","heartbeat_front_addr":"172.21.15.27:6805/422516969","state":["exists","up"]},{"osd":3,"uuid":"aff755fe-44fb-445a-9df7-beb595970433","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6808","nonce":3639786909},{"type":"v1","addr":"172.21.15.27:6809","nonce":3639786909}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6810","nonce":3639786909},{"type":"v1","addr":"172.21.15.27:6811","nonce":3639786909}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6814","nonce":3639786909},{"type":"v1","addr":"172.21.15.27:6815","nonce":3639786909}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6812","nonce":3639786909},{"type":"v1","addr":"172.21.15.27:6813","nonce":3639786909}]},"public_addr":"172.21.15.27:6809/3639786909","cluster_addr":"172.21.15.27:6811/3639786909","heartbeat_back_addr":"172.21.15.27:6815/3639786909","heartbeat_front_addr":"172.21.15.27:6813/3639786909","state":["exists","up"]},{"osd":4,"uuid":"cc0de671-86d4-4510-96f6-a4825b65b6a0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6800","nonce":2012131029},{"type":"v1","addr":"172.21.15.122:6801","nonce":2012131029}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6802","nonce":2012131029},{"type":"v1","addr":"172.21.15.122:6803","nonce":2012131029}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6806","nonce":2012131029},{"type":"v1","addr":"172.21.15.122:6807","nonce":2012131029}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6804","nonce":2012131029},{"type":"v1","addr":"172.21.15.122:6805","nonce":2012131029}]},"public_addr":"172.21.15.122:6801/2012131029","cluster_addr":"172.21.15.122:6803/2012131029","heartbeat_back_addr":"172.21.15.122:6807/2012131029","heartbeat_front_addr":"172.21.15.122:6805/2012131029","state":["exists","up"]},{"osd":5,"uuid":"acf3ff67-b256-4c30-a34d-745f46f996ea","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6808","nonce":2789270647},{"type":"v1","addr":"172.21.15.122:6809","nonce":2789270647}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6810","nonce":2789270647},{"type":"v1","addr":"172.21.15.122:6811","nonce":2789270647}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6814","nonce":2789270647},{"type":"v1","addr":"172.21.15.122:6815","nonce":2789270647}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6812","nonce":2789270647},{"type":"v1","addr":"172.21.15.122:6813","nonce":2789270647}]},"public_addr":"172.21.15.122:6809/2789270647","cluster_addr":"172.21.15.122:6811/2789270647","heartbeat_back_addr":"172.21.15.122:6815/2789270647","heartbeat_front_addr":"172.21.15.122:6813/2789270647","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:11:04.232909+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:11:29.433987+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:11:53.388850+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:12:19.702744+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:12:43.000818+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:13:08.573696+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.16:0/1662280132":"2024-04-15T16:09:29.396526+0000","172.21.15.16:6801/764646842":"2024-04-15T16:09:29.396526+0000","172.21.15.16:0/3888020301":"2024-04-15T16:09:29.396526+0000","172.21.15.16:0/1776745834":"2024-04-15T16:09:01.392080+0000","172.21.15.16:6800/764646842":"2024-04-15T16:09:29.396526+0000","172.21.15.16:0/2384243504":"2024-04-15T16:09:01.392080+0000","172.21.15.16:6800/2295548346":"2024-04-15T16:09:01.392080+0000","172.21.15.16:0/1270773410":"2024-04-15T16:09:01.392080+0000","172.21.15.16:6801/2295548346":"2024-04-15T16:09:01.392080+0000","172.21.15.16:0/3744179780":"2024-04-15T16:09:29.396526+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-04-14T16:13:22.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:22 smithi027 ceph-mon[33435]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-14T16:13:22.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:22 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/3164489581' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T16:13:22.808 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:22 smithi016 ceph-mon[30237]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-14T16:13:22.808 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:22 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/3164489581' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T16:13:22.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:22 smithi122 ceph-mon[33752]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-14T16:13:22.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:22 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/3164489581' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T16:13:22.837 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-04-14T16:13:22.838 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph osd dump --format=json 2024-04-14T16:13:23.078 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:24.568 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:24 smithi016 ceph-mon[30237]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T16:13:24.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:24 smithi027 ceph-mon[33435]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T16:13:24.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:24 smithi122 ceph-mon[33752]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-14T16:13:25.006 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:13:25.007 INFO:teuthology.orchestra.run.smithi016.stdout:{"epoch":46,"fsid":"0c4012e2-fa79-11ee-bc8e-c7b262605968","created":"2024-04-14T16:08:25.987592+0000","modified":"2024-04-14T16:13:14.427830+0000","last_up_change":"2024-04-14T16:13:09.936063+0000","last_in_change":"2024-04-14T16:12:52.453634+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-14T16:11:57.486226+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"22","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"9bf0a155-4dd2-4a8e-8f8c-6705f6c447b8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6802","nonce":324536363},{"type":"v1","addr":"172.21.15.16:6803","nonce":324536363}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6804","nonce":324536363},{"type":"v1","addr":"172.21.15.16:6805","nonce":324536363}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6808","nonce":324536363},{"type":"v1","addr":"172.21.15.16:6809","nonce":324536363}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6806","nonce":324536363},{"type":"v1","addr":"172.21.15.16:6807","nonce":324536363}]},"public_addr":"172.21.15.16:6803/324536363","cluster_addr":"172.21.15.16:6805/324536363","heartbeat_back_addr":"172.21.15.16:6809/324536363","heartbeat_front_addr":"172.21.15.16:6807/324536363","state":["exists","up"]},{"osd":1,"uuid":"12aa7d4e-952e-419a-832b-f71136f4116c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6810","nonce":456487655},{"type":"v1","addr":"172.21.15.16:6811","nonce":456487655}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6812","nonce":456487655},{"type":"v1","addr":"172.21.15.16:6813","nonce":456487655}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6816","nonce":456487655},{"type":"v1","addr":"172.21.15.16:6817","nonce":456487655}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.16:6814","nonce":456487655},{"type":"v1","addr":"172.21.15.16:6815","nonce":456487655}]},"public_addr":"172.21.15.16:6811/456487655","cluster_addr":"172.21.15.16:6813/456487655","heartbeat_back_addr":"172.21.15.16:6817/456487655","heartbeat_front_addr":"172.21.15.16:6815/456487655","state":["exists","up"]},{"osd":2,"uuid":"b97be978-d307-4233-b371-5c7fa2ec75fa","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":18,"up_thru":20,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6800","nonce":422516969},{"type":"v1","addr":"172.21.15.27:6801","nonce":422516969}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6802","nonce":422516969},{"type":"v1","addr":"172.21.15.27:6803","nonce":422516969}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6806","nonce":422516969},{"type":"v1","addr":"172.21.15.27:6807","nonce":422516969}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6804","nonce":422516969},{"type":"v1","addr":"172.21.15.27:6805","nonce":422516969}]},"public_addr":"172.21.15.27:6801/422516969","cluster_addr":"172.21.15.27:6803/422516969","heartbeat_back_addr":"172.21.15.27:6807/422516969","heartbeat_front_addr":"172.21.15.27:6805/422516969","state":["exists","up"]},{"osd":3,"uuid":"aff755fe-44fb-445a-9df7-beb595970433","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6808","nonce":3639786909},{"type":"v1","addr":"172.21.15.27:6809","nonce":3639786909}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6810","nonce":3639786909},{"type":"v1","addr":"172.21.15.27:6811","nonce":3639786909}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6814","nonce":3639786909},{"type":"v1","addr":"172.21.15.27:6815","nonce":3639786909}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.27:6812","nonce":3639786909},{"type":"v1","addr":"172.21.15.27:6813","nonce":3639786909}]},"public_addr":"172.21.15.27:6809/3639786909","cluster_addr":"172.21.15.27:6811/3639786909","heartbeat_back_addr":"172.21.15.27:6815/3639786909","heartbeat_front_addr":"172.21.15.27:6813/3639786909","state":["exists","up"]},{"osd":4,"uuid":"cc0de671-86d4-4510-96f6-a4825b65b6a0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6800","nonce":2012131029},{"type":"v1","addr":"172.21.15.122:6801","nonce":2012131029}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6802","nonce":2012131029},{"type":"v1","addr":"172.21.15.122:6803","nonce":2012131029}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6806","nonce":2012131029},{"type":"v1","addr":"172.21.15.122:6807","nonce":2012131029}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6804","nonce":2012131029},{"type":"v1","addr":"172.21.15.122:6805","nonce":2012131029}]},"public_addr":"172.21.15.122:6801/2012131029","cluster_addr":"172.21.15.122:6803/2012131029","heartbeat_back_addr":"172.21.15.122:6807/2012131029","heartbeat_front_addr":"172.21.15.122:6805/2012131029","state":["exists","up"]},{"osd":5,"uuid":"acf3ff67-b256-4c30-a34d-745f46f996ea","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6808","nonce":2789270647},{"type":"v1","addr":"172.21.15.122:6809","nonce":2789270647}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6810","nonce":2789270647},{"type":"v1","addr":"172.21.15.122:6811","nonce":2789270647}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6814","nonce":2789270647},{"type":"v1","addr":"172.21.15.122:6815","nonce":2789270647}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.122:6812","nonce":2789270647},{"type":"v1","addr":"172.21.15.122:6813","nonce":2789270647}]},"public_addr":"172.21.15.122:6809/2789270647","cluster_addr":"172.21.15.122:6811/2789270647","heartbeat_back_addr":"172.21.15.122:6815/2789270647","heartbeat_front_addr":"172.21.15.122:6813/2789270647","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:11:04.232909+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:11:29.433987+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:11:53.388850+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:12:19.702744+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:12:43.000818+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-14T16:13:08.573696+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.16:0/1662280132":"2024-04-15T16:09:29.396526+0000","172.21.15.16:6801/764646842":"2024-04-15T16:09:29.396526+0000","172.21.15.16:0/3888020301":"2024-04-15T16:09:29.396526+0000","172.21.15.16:0/1776745834":"2024-04-15T16:09:01.392080+0000","172.21.15.16:6800/764646842":"2024-04-15T16:09:29.396526+0000","172.21.15.16:0/2384243504":"2024-04-15T16:09:01.392080+0000","172.21.15.16:6800/2295548346":"2024-04-15T16:09:01.392080+0000","172.21.15.16:0/1270773410":"2024-04-15T16:09:01.392080+0000","172.21.15.16:6801/2295548346":"2024-04-15T16:09:01.392080+0000","172.21.15.16:0/3744179780":"2024-04-15T16:09:29.396526+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-04-14T16:13:25.605 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:25 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1524442235' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T16:13:25.633 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-04-14T16:13:25.634 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-04-14T16:13:25.634 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-04-14T16:13:25.635 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-04-14T16:13:25.635 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-04-14T16:13:25.635 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-04-14T16:13:25.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:25 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/1524442235' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T16:13:25.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:25 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/1524442235' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-14T16:13:25.928 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:25.929 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:26.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:26 smithi016 ceph-mon[30237]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-04-14T16:13:26.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:26 smithi027 ceph-mon[33435]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-04-14T16:13:26.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:26 smithi122 ceph-mon[33752]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 52 KiB/s, 0 objects/s recovering 2024-04-14T16:13:28.383 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:28.383 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:28.384 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:28.384 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:28.516 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:28 smithi016 ceph-mon[30237]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-14T16:13:28.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:28 smithi027 ceph-mon[33435]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-14T16:13:28.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:28 smithi122 ceph-mon[33752]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-14T16:13:30.524 INFO:teuthology.orchestra.run.smithi016.stdout:55834574875 2024-04-14T16:13:30.525 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-04-14T16:13:30.734 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:30 smithi016 ceph-mon[30237]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:30.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:30 smithi027 ceph-mon[33435]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:30.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:30 smithi122 ceph-mon[33752]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:32.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:32 smithi027 ceph-mon[33435]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:32.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:32 smithi122 ceph-mon[33752]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:32.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:32 smithi016 ceph-mon[30237]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:33.279 INFO:teuthology.orchestra.run.smithi016.stdout:111669149713 2024-04-14T16:13:33.279 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-04-14T16:13:34.759 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:34 smithi016 ceph-mon[30237]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:34.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:34 smithi027 ceph-mon[33435]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:34.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:34 smithi122 ceph-mon[33752]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:35.566 INFO:teuthology.orchestra.run.smithi016.stdout:180388626440 2024-04-14T16:13:35.567 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-04-14T16:13:36.067 INFO:teuthology.orchestra.run.smithi016.stdout:146028888077 2024-04-14T16:13:36.067 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-04-14T16:13:36.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:36 smithi016 ceph-mon[30237]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:36.771 INFO:teuthology.orchestra.run.smithi016.stdout:34359738401 2024-04-14T16:13:36.777 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-04-14T16:13:36.778 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:36 smithi027 ceph-mon[33435]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:36.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:36 smithi122 ceph-mon[33752]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:37.444 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:37.469 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:38.591 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:38 smithi016 ceph-mon[30237]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:38 smithi027 ceph-mon[33435]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:38.779 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:38.780 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:38.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:38 smithi122 ceph-mon[33752]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:40.591 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:40 smithi016 ceph-mon[30237]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:40.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:40 smithi027 ceph-mon[33435]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:40.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:40 smithi122 ceph-mon[33752]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:41.163 INFO:teuthology.orchestra.run.smithi016.stdout:146028888077 2024-04-14T16:13:41.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:41 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/973532186' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-14T16:13:41.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:41 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/973532186' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-14T16:13:41.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:41 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/973532186' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-14T16:13:41.931 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888077 got 146028888077 for osd.4 2024-04-14T16:13:41.931 DEBUG:teuthology.parallel:result is None 2024-04-14T16:13:42.240 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:42.597 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:42 smithi016 ceph-mon[30237]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:42.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:42 smithi027 ceph-mon[33435]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:42.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:42 smithi122 ceph-mon[33752]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:43.008 INFO:teuthology.orchestra.run.smithi016.stdout:77309411352 2024-04-14T16:13:43.008 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-04-14T16:13:44.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:44 smithi016 ceph-mon[30237]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:44.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:44 smithi027 ceph-mon[33435]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:44.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:44 smithi122 ceph-mon[33752]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:45.109 INFO:teuthology.orchestra.run.smithi016.stdout:111669149715 2024-04-14T16:13:45.352 INFO:teuthology.orchestra.run.smithi016.stdout:55834574878 2024-04-14T16:13:45.556 INFO:teuthology.orchestra.run.smithi016.stdout:180388626442 2024-04-14T16:13:45.569 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:45 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1706597617' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-14T16:13:45.569 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:45 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1020435948' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-14T16:13:45.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:45 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/1706597617' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-14T16:13:45.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:45 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/1020435948' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-14T16:13:45.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:45 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/1706597617' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-14T16:13:45.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:45 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/1020435948' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-14T16:13:46.080 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149713 got 111669149715 for osd.3 2024-04-14T16:13:46.081 DEBUG:teuthology.parallel:result is None 2024-04-14T16:13:46.699 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:46 smithi016 ceph-mon[30237]: pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:46.699 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:46 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/3934940627' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-14T16:13:46.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:46 smithi027 ceph-mon[33435]: pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:46.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:46 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/3934940627' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-14T16:13:46.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:46 smithi122 ceph-mon[33752]: pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:46.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:46 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/3934940627' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-14T16:13:46.905 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:47.268 INFO:tasks.cephadm.ceph_manager.ceph:need seq 180388626440 got 180388626442 for osd.5 2024-04-14T16:13:47.269 DEBUG:teuthology.parallel:result is None 2024-04-14T16:13:48.647 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574875 got 55834574878 for osd.1 2024-04-14T16:13:48.647 DEBUG:teuthology.parallel:result is None 2024-04-14T16:13:48.745 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:48 smithi016 ceph-mon[30237]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:48.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:48 smithi027 ceph-mon[33435]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:48.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:48 smithi122 ceph-mon[33752]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:49.584 INFO:teuthology.orchestra.run.smithi016.stdout:34359738404 2024-04-14T16:13:49.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:49 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/1790263721' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-14T16:13:49.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:49 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/1790263721' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-14T16:13:49.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:49 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/1790263721' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-14T16:13:50.136 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738401 got 34359738404 for osd.0 2024-04-14T16:13:50.137 DEBUG:teuthology.parallel:result is None 2024-04-14T16:13:50.570 INFO:teuthology.orchestra.run.smithi016.stdout:77309411354 2024-04-14T16:13:50.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:50 smithi027 ceph-mon[33435]: pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:50.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:50 smithi122 ceph-mon[33752]: pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:50.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:50 smithi016 ceph-mon[30237]: pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:51.144 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411352 got 77309411354 for osd.2 2024-04-14T16:13:51.144 DEBUG:teuthology.parallel:result is None 2024-04-14T16:13:51.144 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-04-14T16:13:51.144 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph pg dump --format=json 2024-04-14T16:13:51.386 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:51.760 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:51 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/2905658059' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-14T16:13:51.775 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:51 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/2905658059' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-14T16:13:51.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:51 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/2905658059' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-14T16:13:52.651 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:52 smithi016 ceph-mon[30237]: pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:52.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:52 smithi027 ceph-mon[33435]: pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:52.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:52 smithi122 ceph-mon[33752]: pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:53.085 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:13:53.087 INFO:teuthology.orchestra.run.smithi016.stderr:dumped all 2024-04-14T16:13:53.713 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:53 smithi016 ceph-mon[30237]: from='client.14463 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:13:53.740 INFO:teuthology.orchestra.run.smithi016.stdout:{"pg_ready":true,"pg_map":{"version":167,"stamp":"2024-04-14T16:13:51.446275+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":174644,"kb_used_data":4188,"kb_used_omap":9,"kb_used_meta":170358,"kb_avail":562296268,"statfs":{"total":575970213888,"available":575791378432,"internally_reserved":0,"allocated":4288512,"data_stored":2750106,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":174447264},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.002388"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":258,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-04-14T16:13:14.435779+0000","last_change":"2024-04-14T16:13:14.435779+0000","last_active":"2024-04-14T16:13:14.435779+0000","last_peered":"2024-04-14T16:13:14.435779+0000","last_clean":"2024-04-14T16:13:14.435779+0000","last_became_active":"2024-04-14T16:13:14.435340+0000","last_became_peered":"2024-04-14T16:13:14.435340+0000","last_unstale":"2024-04-14T16:13:14.435779+0000","last_undegraded":"2024-04-14T16:13:14.435779+0000","last_fullsized":"2024-04-14T16:13:14.435779+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-14T16:11:58.411977+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-14T16:11:58.411977+0000","last_clean_scrub_stamp":"2024-04-14T16:11:58.411977+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-04-15T20:16:15.486396+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":42,"seq":180388626444,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":34,"seq":146028888080,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27432,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717720,"statfs":{"total":95995035648,"available":95966945280,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":26,"seq":111669149716,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28012,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717140,"statfs":{"total":95995035648,"available":95966351360,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411355,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32172,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712980,"statfs":{"total":95995035648,"available":95962091520,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738404,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574879,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31592,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713560,"statfs":{"total":95995035648,"available":95962685440,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-04-14T16:13:53.741 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph pg dump --format=json 2024-04-14T16:13:53.775 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:53 smithi027 ceph-mon[33435]: from='client.14463 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:13:53.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:53 smithi122 ceph-mon[33752]: from='client.14463 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:13:53.981 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:54.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:54 smithi016 ceph-mon[30237]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:54.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:54 smithi027 ceph-mon[33435]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:54.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:54 smithi122 ceph-mon[33752]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:55.900 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:13:55.903 INFO:teuthology.orchestra.run.smithi016.stderr:dumped all 2024-04-14T16:13:56.561 INFO:teuthology.orchestra.run.smithi016.stdout:{"pg_ready":true,"pg_map":{"version":169,"stamp":"2024-04-14T16:13:55.447010+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":174644,"kb_used_data":4188,"kb_used_omap":9,"kb_used_meta":170358,"kb_avail":562296268,"statfs":{"total":575970213888,"available":575791378432,"internally_reserved":0,"allocated":4288512,"data_stored":2750106,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":174447264},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.002305"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":258,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-04-14T16:13:14.435779+0000","last_change":"2024-04-14T16:13:14.435779+0000","last_active":"2024-04-14T16:13:14.435779+0000","last_peered":"2024-04-14T16:13:14.435779+0000","last_clean":"2024-04-14T16:13:14.435779+0000","last_became_active":"2024-04-14T16:13:14.435340+0000","last_became_peered":"2024-04-14T16:13:14.435340+0000","last_unstale":"2024-04-14T16:13:14.435779+0000","last_undegraded":"2024-04-14T16:13:14.435779+0000","last_fullsized":"2024-04-14T16:13:14.435779+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-14T16:11:58.411977+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-14T16:11:58.411977+0000","last_clean_scrub_stamp":"2024-04-14T16:11:58.411977+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-04-15T20:16:15.486396+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":42,"seq":180388626444,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":34,"seq":146028888081,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27432,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717720,"statfs":{"total":95995035648,"available":95966945280,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":26,"seq":111669149717,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28012,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717140,"statfs":{"total":95995035648,"available":95966351360,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411355,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":32172,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93712980,"statfs":{"total":95995035648,"available":95962091520,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738405,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27428,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717724,"statfs":{"total":95995035648,"available":95966949376,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574880,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31592,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713560,"statfs":{"total":95995035648,"available":95962685440,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-04-14T16:13:56.562 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-04-14T16:13:56.562 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-04-14T16:13:56.562 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-04-14T16:13:56.562 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- ceph health --format=json 2024-04-14T16:13:56.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:56 smithi027 ceph-mon[33435]: pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:56.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:56 smithi027 ceph-mon[33435]: from='client.14469 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:13:56.808 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:56.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:56 smithi122 ceph-mon[33752]: pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:56.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:56 smithi122 ceph-mon[33752]: from='client.14469 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:13:56.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:56 smithi016 ceph-mon[30237]: pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:56.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:56 smithi016 ceph-mon[30237]: from='client.14469 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:13:58.670 INFO:teuthology.orchestra.run.smithi016.stdout: 2024-04-14T16:13:58.670 INFO:teuthology.orchestra.run.smithi016.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-04-14T16:13:58.670 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:58 smithi016 ceph-mon[30237]: pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:58.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:58 smithi027 ceph-mon[33435]: pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:58.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:58 smithi122 ceph-mon[33752]: pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:13:59.245 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-04-14T16:13:59.246 INFO:tasks.cephadm:Setup complete, yielding 2024-04-14T16:13:59.246 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-14T16:13:59.256 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi016.front.sepia.ceph.com 2024-04-14T16:13:59.256 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 -- bash -c 'set -ex 2024-04-14T16:13:59.256 DEBUG:teuthology.orchestra.run.smithi016:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-04-14T16:13:59.256 DEBUG:teuthology.orchestra.run.smithi016:> for host in $HOSTNAMES; do 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> # find the hostname for "host.c" which will have no mgr 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> if [ "$HAS_MGRS" == "false" ]; then 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> HOST_C="${host}" 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> fi 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> done 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> # One last thing to worry about before draining the host 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> # is that the teuthology test tends to put the explicit 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> # hostnames in the placement for the mon service. 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> # We want to make sure we can drain without providing 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> # --force and there is a check for the host being removed 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> # being listed explicitly in the placements. Therefore, 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> # we should remove it from the mon placement. 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> ceph orch ls mon --export > mon.yaml 2024-04-14T16:13:59.257 DEBUG:teuthology.orchestra.run.smithi016:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> ceph orch apply -i mon_adjusted.yaml 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> # now drain that host 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> ceph orch host drain $HOST_C --zap-osd-devices 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> # wait for drain to complete 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> sleep 15 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> done 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> # we want to check the ability to remove the host from 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> # the CRUSH map, so we should first verify the host is in 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> # the CRUSH map. 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> ceph osd getcrushmap -o compiled-crushmap 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> crushtool -d compiled-crushmap -o crushmap.txt 2024-04-14T16:13:59.258 DEBUG:teuthology.orchestra.run.smithi016:> CRUSH_MAP=$(cat crushmap.txt) 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> exit 1 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> fi 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> # If the drain was successful, we should be able to remove the 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> # host without force with no issues. If there are still daemons 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> # we will get a response telling us to drain the host and a 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> # non-zero return code 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> ceph orch host rm $HOST_C --rm-crush-entry 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> sleep 30 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> ceph osd getcrushmap -o compiled-crushmap 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> crushtool -d compiled-crushmap -o crushmap.txt 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> CRUSH_MAP=$(cat crushmap.txt) 2024-04-14T16:13:59.259 DEBUG:teuthology.orchestra.run.smithi016:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-04-14T16:13:59.260 DEBUG:teuthology.orchestra.run.smithi016:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-04-14T16:13:59.260 DEBUG:teuthology.orchestra.run.smithi016:> exit 1 2024-04-14T16:13:59.260 DEBUG:teuthology.orchestra.run.smithi016:> fi 2024-04-14T16:13:59.260 DEBUG:teuthology.orchestra.run.smithi016:> ' 2024-04-14T16:13:59.500 INFO:teuthology.orchestra.run.smithi016.stderr:Inferring config /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/mon.a/config 2024-04-14T16:13:59.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:13:59 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/2581212731' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-14T16:13:59.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:13:59 smithi122 ceph-mon[33752]: from='client.? 172.21.15.16:0/2581212731' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-14T16:13:59.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:13:59 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/2581212731' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-14T16:14:00.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:00 smithi016 ceph-mon[30237]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:00.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:00 smithi027 ceph-mon[33435]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:00.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:00 smithi122 ceph-mon[33752]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:01.103 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch host ls --format json 2024-04-14T16:14:01.104 INFO:teuthology.orchestra.run.smithi016.stderr:++ jq -r '.[] | .hostname' 2024-04-14T16:14:01.373 INFO:teuthology.orchestra.run.smithi016.stderr:+ HOSTNAMES='smithi016 2024-04-14T16:14:01.374 INFO:teuthology.orchestra.run.smithi016.stderr:smithi027 2024-04-14T16:14:01.374 INFO:teuthology.orchestra.run.smithi016.stderr:smithi122' 2024-04-14T16:14:01.374 INFO:teuthology.orchestra.run.smithi016.stderr:+ for host in $HOSTNAMES 2024-04-14T16:14:01.374 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch ps --hostname smithi016 --format json 2024-04-14T16:14:01.374 INFO:teuthology.orchestra.run.smithi016.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-14T16:14:01.711 INFO:teuthology.orchestra.run.smithi016.stderr:+ HAS_MGRS=true 2024-04-14T16:14:01.711 INFO:teuthology.orchestra.run.smithi016.stderr:+ '[' true == false ']' 2024-04-14T16:14:01.711 INFO:teuthology.orchestra.run.smithi016.stderr:+ for host in $HOSTNAMES 2024-04-14T16:14:01.711 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:01 smithi016 ceph-mon[30237]: from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:14:01.712 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch ps --hostname smithi027 --format json 2024-04-14T16:14:01.712 INFO:teuthology.orchestra.run.smithi016.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-14T16:14:01.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:01 smithi122 ceph-mon[33752]: from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:14:02.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:01 smithi027 ceph-mon[33435]: from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:14:02.048 INFO:teuthology.orchestra.run.smithi016.stderr:+ HAS_MGRS=true 2024-04-14T16:14:02.048 INFO:teuthology.orchestra.run.smithi016.stderr:+ '[' true == false ']' 2024-04-14T16:14:02.048 INFO:teuthology.orchestra.run.smithi016.stderr:+ for host in $HOSTNAMES 2024-04-14T16:14:02.049 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch ps --hostname smithi122 --format json 2024-04-14T16:14:02.049 INFO:teuthology.orchestra.run.smithi016.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-14T16:14:02.385 INFO:teuthology.orchestra.run.smithi016.stderr:+ HAS_MGRS=false 2024-04-14T16:14:02.385 INFO:teuthology.orchestra.run.smithi016.stderr:+ '[' false == false ']' 2024-04-14T16:14:02.385 INFO:teuthology.orchestra.run.smithi016.stderr:+ HOST_C=smithi122 2024-04-14T16:14:02.385 INFO:teuthology.orchestra.run.smithi016.stderr:+ ceph orch ls mon --export 2024-04-14T16:14:02.723 INFO:teuthology.orchestra.run.smithi016.stderr:+ sed /smithi122/d mon.yaml 2024-04-14T16:14:02.724 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:02 smithi016 ceph-mon[30237]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:02.724 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:02 smithi016 ceph-mon[30237]: from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi016", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:14:02.724 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:02 smithi016 ceph-mon[30237]: from='client.14493 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi027", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:14:02.724 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:02 smithi016 ceph-mon[30237]: from='client.14499 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi122", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:14:02.724 INFO:teuthology.orchestra.run.smithi016.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-04-14T16:14:02.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:02 smithi122 ceph-mon[33752]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:02.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:02 smithi122 ceph-mon[33752]: from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi016", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:14:02.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:02 smithi122 ceph-mon[33752]: from='client.14493 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi027", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:14:02.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:02 smithi122 ceph-mon[33752]: from='client.14499 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi122", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:14:03.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:02 smithi027 ceph-mon[33435]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:03.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:02 smithi027 ceph-mon[33435]: from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi016", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:14:03.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:02 smithi027 ceph-mon[33435]: from='client.14493 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi027", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:14:03.026 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:02 smithi027 ceph-mon[33435]: from='client.14499 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi122", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-14T16:14:03.053 INFO:teuthology.orchestra.run.smithi016.stdout:Scheduled mon update... 2024-04-14T16:14:03.066 INFO:teuthology.orchestra.run.smithi016.stderr:+ ceph orch host drain smithi122 --zap-osd-devices 2024-04-14T16:14:03.411 INFO:teuthology.orchestra.run.smithi016.stdout:Scheduled to remove the following daemons from host 'smithi122' 2024-04-14T16:14:03.411 INFO:teuthology.orchestra.run.smithi016.stdout:type id 2024-04-14T16:14:03.411 INFO:teuthology.orchestra.run.smithi016.stdout:-------------------- --------------- 2024-04-14T16:14:03.412 INFO:teuthology.orchestra.run.smithi016.stdout:mon c 2024-04-14T16:14:03.412 INFO:teuthology.orchestra.run.smithi016.stdout:osd 4 2024-04-14T16:14:03.412 INFO:teuthology.orchestra.run.smithi016.stdout:osd 5 2024-04-14T16:14:03.424 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch ps --hostname smithi122 2024-04-14T16:14:03.786 INFO:teuthology.orchestra.run.smithi016.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-14T16:14:03.787 INFO:teuthology.orchestra.run.smithi016.stderr:mon.c smithi122 running (3m) 55s ago 3m 37.7M 2048M 19.0.0-2778-ga971fd5f b96c509eef84 e9037717fcf0 2024-04-14T16:14:03.787 INFO:teuthology.orchestra.run.smithi016.stderr:osd.4 smithi122 running (85s) 55s ago 84s 34.5M 10.3G 19.0.0-2778-ga971fd5f b96c509eef84 8654631ee853 2024-04-14T16:14:03.787 INFO:teuthology.orchestra.run.smithi016.stderr:osd.5 smithi122 running (59s) 55s ago 59s 12.6M 10.3G 19.0.0-2778-ga971fd5f b96c509eef84 17fc29fbb107 ' 2024-04-14T16:14:03.787 INFO:teuthology.orchestra.run.smithi016.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-14T16:14:03.787 INFO:teuthology.orchestra.run.smithi016.stderr:mon.c smithi122 running (3m) 55s ago 3m 37.7M 2048M 19.0.0-2778-ga971fd5f b96c509eef84 e9037717fcf0 2024-04-14T16:14:03.787 INFO:teuthology.orchestra.run.smithi016.stderr:osd.4 smithi122 running (85s) 55s ago 84s 34.5M 10.3G 19.0.0-2778-ga971fd5f b96c509eef84 8654631ee853 2024-04-14T16:14:03.787 INFO:teuthology.orchestra.run.smithi016.stderr:osd.5 smithi122 running (59s) 55s ago 59s 12.6M 10.3G 19.0.0-2778-ga971fd5f b96c509eef84 17fc29fbb107 ' '!=' 'No daemons reported' ']' 2024-04-14T16:14:03.787 INFO:teuthology.orchestra.run.smithi016.stderr:+ sleep 15 2024-04-14T16:14:04.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='client.14505 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:04.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:04.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: Saving service mon spec with placement smithi016:172.21.15.16=a;smithi027:172.21.15.27=b;count:3 2024-04-14T16:14:04.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:14:04.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='client.14517 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi122", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:04.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: Added label _no_schedule to host smithi122 2024-04-14T16:14:04.327 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.327 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: Added label _no_conf_keyring to host smithi122 2024-04-14T16:14:04.327 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-14T16:14:04.327 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: osd.4 crush weight is 0.0872955322265625 2024-04-14T16:14:04.327 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-14T16:14:04.327 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: osd.5 crush weight is 0.0872955322265625 2024-04-14T16:14:04.327 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:04.327 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:14:04.327 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.327 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.327 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:04.327 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:04.327 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-14T16:14:04.328 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:04 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-04-14T16:14:04.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='client.14505 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:04.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:04.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: Saving service mon spec with placement smithi016:172.21.15.16=a;smithi027:172.21.15.27=b;count:3 2024-04-14T16:14:04.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:14:04.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='client.14517 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi122", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:04.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: Added label _no_schedule to host smithi122 2024-04-14T16:14:04.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: Added label _no_conf_keyring to host smithi122 2024-04-14T16:14:04.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-14T16:14:04.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: osd.4 crush weight is 0.0872955322265625 2024-04-14T16:14:04.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-14T16:14:04.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: osd.5 crush weight is 0.0872955322265625 2024-04-14T16:14:04.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:04.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:14:04.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:04.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:04.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-14T16:14:04.374 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-04-14T16:14:04.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='client.14505 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:04.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:04.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: Saving service mon spec with placement smithi016:172.21.15.16=a;smithi027:172.21.15.27=b;count:3 2024-04-14T16:14:04.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:14:04.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='client.14517 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi122", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:04.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: Added label _no_schedule to host smithi122 2024-04-14T16:14:04.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: Added label _no_conf_keyring to host smithi122 2024-04-14T16:14:04.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-14T16:14:04.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: osd.4 crush weight is 0.0872955322265625 2024-04-14T16:14:04.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-14T16:14:04.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: osd.5 crush weight is 0.0872955322265625 2024-04-14T16:14:04.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:04.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:14:04.528 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.528 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:04.528 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:04.528 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:04.528 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-14T16:14:04.528 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:04 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-04-14T16:14:05.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:04 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a[30214]: 2024-04-14T16:14:04.882+0000 7f3a6a26c700 -1 mon.a@0(leader).osd e47 definitely_dead 0 2024-04-14T16:14:05.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:05 smithi027 ceph-mon[33435]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:05.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:05 smithi027 ceph-mon[33435]: Removing smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:14:05.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:05 smithi027 ceph-mon[33435]: from='client.14523 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi122", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:05.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:05 smithi027 ceph-mon[33435]: Removing smithi122:/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:14:05.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:05 smithi027 ceph-mon[33435]: Removing smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T16:14:05.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:05 smithi027 ceph-mon[33435]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:05.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:05 smithi027 ceph-mon[33435]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:05.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:05 smithi027 ceph-mon[33435]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-14T16:14:05.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:05 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-04-14T16:14:05.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:05 smithi027 ceph-mon[33435]: osdmap e47: 6 total, 6 up, 6 in 2024-04-14T16:14:05.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:05 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:05.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:05 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-14T16:14:05.777 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:05 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-04-14T16:14:05.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:05 smithi122 ceph-mon[33752]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:05.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:05 smithi122 ceph-mon[33752]: Removing smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:14:05.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:05 smithi122 ceph-mon[33752]: from='client.14523 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi122", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:05.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:05 smithi122 ceph-mon[33752]: Removing smithi122:/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:14:05.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:05 smithi122 ceph-mon[33752]: Removing smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T16:14:05.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:05 smithi122 ceph-mon[33752]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:05.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:05 smithi122 ceph-mon[33752]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:05.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:05 smithi122 ceph-mon[33752]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-14T16:14:05.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:05 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-04-14T16:14:05.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:05 smithi122 ceph-mon[33752]: osdmap e47: 6 total, 6 up, 6 in 2024-04-14T16:14:05.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:05 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:05.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:05 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-14T16:14:05.827 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:05 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-04-14T16:14:05.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:05 smithi016 ceph-mon[30237]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:05.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:05 smithi016 ceph-mon[30237]: Removing smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:14:05.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:05 smithi016 ceph-mon[30237]: from='client.14523 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi122", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:05.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:05 smithi016 ceph-mon[30237]: Removing smithi122:/etc/ceph/ceph.client.admin.keyring 2024-04-14T16:14:05.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:05 smithi016 ceph-mon[30237]: Removing smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.client.admin.keyring 2024-04-14T16:14:05.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:05 smithi016 ceph-mon[30237]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:05.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:05 smithi016 ceph-mon[30237]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:05.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:05 smithi016 ceph-mon[30237]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-14T16:14:05.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:05 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-04-14T16:14:05.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:05 smithi016 ceph-mon[30237]: osdmap e47: 6 total, 6 up, 6 in 2024-04-14T16:14:05.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:05 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:05.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:05 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-14T16:14:05.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:05 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-04-14T16:14:06.630 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:06 smithi122 systemd[1]: Stopping Ceph osd.4 for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:14:06.631 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:06 smithi122 ceph-mon[33752]: osd.5 weight is now 0.0 2024-04-14T16:14:06.631 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:06 smithi122 ceph-mon[33752]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:06.631 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:06 smithi122 ceph-mon[33752]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-14T16:14:06.631 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:06 smithi122 ceph-mon[33752]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-14T16:14:06.631 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:06 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-04-14T16:14:06.631 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:06 smithi122 ceph-mon[33752]: osdmap e48: 6 total, 5 up, 6 in 2024-04-14T16:14:06.631 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:06 smithi122 ceph-mon[33752]: osdmap e49: 6 total, 5 up, 6 in 2024-04-14T16:14:06.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:06 smithi027 ceph-mon[33435]: osd.5 weight is now 0.0 2024-04-14T16:14:06.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:06 smithi027 ceph-mon[33435]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:06.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:06 smithi027 ceph-mon[33435]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-14T16:14:06.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:06 smithi027 ceph-mon[33435]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-14T16:14:06.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:06 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-04-14T16:14:06.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:06 smithi027 ceph-mon[33435]: osdmap e48: 6 total, 5 up, 6 in 2024-04-14T16:14:06.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:06 smithi027 ceph-mon[33435]: osdmap e49: 6 total, 5 up, 6 in 2024-04-14T16:14:06.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:06 smithi016 ceph-mon[30237]: osd.5 weight is now 0.0 2024-04-14T16:14:06.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:06 smithi016 ceph-mon[30237]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:06.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:06 smithi016 ceph-mon[30237]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-14T16:14:06.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:06 smithi016 ceph-mon[30237]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-14T16:14:06.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:06 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-04-14T16:14:06.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:06 smithi016 ceph-mon[30237]: osdmap e48: 6 total, 5 up, 6 in 2024-04-14T16:14:06.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:06 smithi016 ceph-mon[30237]: osdmap e49: 6 total, 5 up, 6 in 2024-04-14T16:14:07.076 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:06 smithi122 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4[38495]: 2024-04-14T16:14:06.628+0000 7fbb8cfe8700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.4 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-14T16:14:07.076 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:06 smithi122 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4[38495]: 2024-04-14T16:14:06.628+0000 7fbb8cfe8700 -1 osd.4 47 *** Got signal Terminated *** 2024-04-14T16:14:07.076 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:06 smithi122 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4[38495]: 2024-04-14T16:14:06.628+0000 7fbb8cfe8700 -1 osd.4 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-14T16:14:07.416 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:07 smithi122 podman[48380]: 2024-04-14 16:14:07.14986278 +0000 UTC m=+0.656311649 container died 8654631ee853d4652d040960e644ae3cd6f527d23d895c0e448ba001f7479484 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240403, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, ceph=True, RELEASE=main-a971fd5, GIT_CLEAN=True) 2024-04-14T16:14:07.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:07 smithi027 ceph-mon[33435]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:07.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:07 smithi027 ceph-mon[33435]: osd.4 now down 2024-04-14T16:14:07.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:07 smithi027 ceph-mon[33435]: Removing daemon osd.4 from smithi122 -- ports [] 2024-04-14T16:14:07.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:07 smithi027 ceph-mon[33435]: osdmap e50: 6 total, 5 up, 6 in 2024-04-14T16:14:07.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:07 smithi122 ceph-mon[33752]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:07.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:07 smithi122 ceph-mon[33752]: osd.4 now down 2024-04-14T16:14:07.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:07 smithi122 ceph-mon[33752]: Removing daemon osd.4 from smithi122 -- ports [] 2024-04-14T16:14:07.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:07 smithi122 ceph-mon[33752]: osdmap e50: 6 total, 5 up, 6 in 2024-04-14T16:14:07.826 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:07 smithi122 podman[48380]: 2024-04-14 16:14:07.640381472 +0000 UTC m=+1.146830338 container cleanup 8654631ee853d4652d040960e644ae3cd6f527d23d895c0e448ba001f7479484 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4, GIT_BRANCH=HEAD, ceph=True, io.buildah.version=1.33.5, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240403, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, RELEASE=main-a971fd5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-14T16:14:07.826 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:07 smithi122 bash[48380]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4 2024-04-14T16:14:07.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:07 smithi016 ceph-mon[30237]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:07.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:07 smithi016 ceph-mon[30237]: osd.4 now down 2024-04-14T16:14:07.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:07 smithi016 ceph-mon[30237]: Removing daemon osd.4 from smithi122 -- ports [] 2024-04-14T16:14:07.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:07 smithi016 ceph-mon[30237]: osdmap e50: 6 total, 5 up, 6 in 2024-04-14T16:14:08.191 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:07 smithi122 podman[48401]: 2024-04-14 16:14:07.883489937 +0000 UTC m=+0.726515418 container remove 8654631ee853d4652d040960e644ae3cd6f527d23d895c0e448ba001f7479484 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4, org.label-schema.build-date=20240403, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, RELEASE=main-a971fd5, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, GIT_CLEAN=True) 2024-04-14T16:14:08.504 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:08 smithi122 podman[48499]: 2024-04-14 16:14:08.094024668 +0000 UTC m=+0.016996374 image pull b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608 2024-04-14T16:14:08.504 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:08 smithi122 podman[48499]: 2024-04-14 16:14:08.192781555 +0000 UTC m=+0.115753243 container create a486facc3c8347cb8a56b9aa4ce76d50e30f5e9fe01bdcbd47cceb0854f28371 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4-deactivate, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240403, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, ceph=True, RELEASE=main-a971fd5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0) 2024-04-14T16:14:08.504 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:08 smithi122 podman[48499]: 2024-04-14 16:14:08.395553305 +0000 UTC m=+0.318524994 container init a486facc3c8347cb8a56b9aa4ce76d50e30f5e9fe01bdcbd47cceb0854f28371 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4-deactivate, org.label-schema.build-date=20240403, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_CLEAN=True, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, ceph=True, RELEASE=main-a971fd5, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS) 2024-04-14T16:14:08.504 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:08 smithi122 podman[48499]: 2024-04-14 16:14:08.400578266 +0000 UTC m=+0.323549957 container start a486facc3c8347cb8a56b9aa4ce76d50e30f5e9fe01bdcbd47cceb0854f28371 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240403, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, RELEASE=main-a971fd5, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD) 2024-04-14T16:14:08.505 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:08 smithi122 podman[48499]: 2024-04-14 16:14:08.503775113 +0000 UTC m=+0.426746820 container attach a486facc3c8347cb8a56b9aa4ce76d50e30f5e9fe01bdcbd47cceb0854f28371 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4-deactivate, CEPH_POINT_RELEASE=, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, RELEASE=main-a971fd5, org.label-schema.build-date=20240403, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, org.label-schema.license=GPLv2) 2024-04-14T16:14:08.826 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:08 smithi122 podman[48499]: 2024-04-14 16:14:08.68761899 +0000 UTC m=+0.610590683 container died a486facc3c8347cb8a56b9aa4ce76d50e30f5e9fe01bdcbd47cceb0854f28371 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4-deactivate, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.build-date=20240403, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, RELEASE=main-a971fd5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5) 2024-04-14T16:14:09.575 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:09 smithi122 ceph-mon[33752]: pgmap v179: 1 pgs: 1 remapped+peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:09.576 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:09 smithi122 podman[48544]: 2024-04-14 16:14:09.274281609 +0000 UTC m=+0.576896459 container remove a486facc3c8347cb8a56b9aa4ce76d50e30f5e9fe01bdcbd47cceb0854f28371 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-4-deactivate, GIT_BRANCH=HEAD, RELEASE=main-a971fd5, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, org.label-schema.build-date=20240403, org.label-schema.schema-version=1.0, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux ) 2024-04-14T16:14:09.576 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:09 smithi122 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.4.service: Deactivated successfully. 2024-04-14T16:14:09.576 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:09 smithi122 systemd[1]: Stopped Ceph osd.4 for 0c4012e2-fa79-11ee-bc8e-c7b262605968. 2024-04-14T16:14:09.576 INFO:journalctl@ceph.osd.4.smithi122.stdout:Apr 14 16:14:09 smithi122 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.4.service: Consumed 1.597s CPU time. 2024-04-14T16:14:09.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:09 smithi027 ceph-mon[33435]: pgmap v179: 1 pgs: 1 remapped+peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:09.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:09 smithi016 ceph-mon[30237]: pgmap v179: 1 pgs: 1 remapped+peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:10.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:10 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-04-14T16:14:10.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:10 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-04-14T16:14:10.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:10 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-04-14T16:14:10.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:10 smithi027 ceph-mon[33435]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-14T16:14:10.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:10 smithi027 ceph-mon[33435]: Cluster is now healthy 2024-04-14T16:14:10.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:10 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-04-14T16:14:10.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:10 smithi027 ceph-mon[33435]: osdmap e51: 5 total, 5 up, 5 in 2024-04-14T16:14:10.807 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:10 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-04-14T16:14:10.807 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:10 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-04-14T16:14:10.807 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:10 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-04-14T16:14:10.807 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:10 smithi122 ceph-mon[33752]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-14T16:14:10.807 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:10 smithi122 ceph-mon[33752]: Cluster is now healthy 2024-04-14T16:14:10.807 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:10 smithi122 ceph-mon[33752]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-04-14T16:14:10.807 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:10 smithi122 ceph-mon[33752]: osdmap e51: 5 total, 5 up, 5 in 2024-04-14T16:14:10.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:10 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-04-14T16:14:10.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:10 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-04-14T16:14:10.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:10 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-04-14T16:14:10.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:10 smithi016 ceph-mon[30237]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-14T16:14:10.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:10 smithi016 ceph-mon[30237]: Cluster is now healthy 2024-04-14T16:14:10.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:10 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-04-14T16:14:10.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:10 smithi016 ceph-mon[30237]: osdmap e51: 5 total, 5 up, 5 in 2024-04-14T16:14:11.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:11 smithi027 ceph-mon[33435]: pgmap v180: 1 pgs: 1 remapped+peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:11.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:11 smithi027 ceph-mon[33435]: Removing key for osd.4 2024-04-14T16:14:11.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:11 smithi027 ceph-mon[33435]: Successfully removed osd.4 on smithi122 2024-04-14T16:14:11.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:11 smithi027 ceph-mon[33435]: Successfully purged osd.4 on smithi122 2024-04-14T16:14:11.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:11 smithi027 ceph-mon[33435]: Zapping devices for osd.4 on smithi122 2024-04-14T16:14:11.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:11 smithi027 ceph-mon[33435]: osdmap e52: 5 total, 5 up, 5 in 2024-04-14T16:14:11.825 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:11 smithi122 ceph-mon[33752]: pgmap v180: 1 pgs: 1 remapped+peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:11.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:11 smithi122 ceph-mon[33752]: Removing key for osd.4 2024-04-14T16:14:11.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:11 smithi122 ceph-mon[33752]: Successfully removed osd.4 on smithi122 2024-04-14T16:14:11.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:11 smithi122 ceph-mon[33752]: Successfully purged osd.4 on smithi122 2024-04-14T16:14:11.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:11 smithi122 ceph-mon[33752]: Zapping devices for osd.4 on smithi122 2024-04-14T16:14:11.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:11 smithi122 ceph-mon[33752]: osdmap e52: 5 total, 5 up, 5 in 2024-04-14T16:14:11.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:11 smithi016 ceph-mon[30237]: pgmap v180: 1 pgs: 1 remapped+peering; 577 KiB data, 171 MiB used, 536 GiB / 536 GiB avail 2024-04-14T16:14:11.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:11 smithi016 ceph-mon[30237]: Removing key for osd.4 2024-04-14T16:14:11.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:11 smithi016 ceph-mon[30237]: Successfully removed osd.4 on smithi122 2024-04-14T16:14:11.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:11 smithi016 ceph-mon[30237]: Successfully purged osd.4 on smithi122 2024-04-14T16:14:11.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:11 smithi016 ceph-mon[30237]: Zapping devices for osd.4 on smithi122 2024-04-14T16:14:11.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:11 smithi016 ceph-mon[30237]: osdmap e52: 5 total, 5 up, 5 in 2024-04-14T16:14:12.765 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:12 smithi122 ceph-mon[33752]: pgmap v183: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:14:12.765 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:12 smithi122 ceph-mon[33752]: osdmap e53: 5 total, 5 up, 5 in 2024-04-14T16:14:12.775 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:12 smithi027 ceph-mon[33435]: pgmap v183: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:14:12.775 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:12 smithi027 ceph-mon[33435]: osdmap e53: 5 total, 5 up, 5 in 2024-04-14T16:14:12.840 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:12 smithi016 ceph-mon[30237]: pgmap v183: 1 pgs: 1 remapped+peering; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail 2024-04-14T16:14:12.840 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:12 smithi016 ceph-mon[30237]: osdmap e53: 5 total, 5 up, 5 in 2024-04-14T16:14:13.075 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:12 smithi122 podman[48954]: 2024-04-14 16:14:12.883817963 +0000 UTC m=+0.019655126 container died e9037717fcf043dc8eebd65d65749788c5f39000e5ee42e09ad73f80c358a2d2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-c, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240403, CEPH_POINT_RELEASE=, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_CLEAN=True, RELEASE=main-a971fd5, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, GIT_BRANCH=HEAD) 2024-04-14T16:14:13.121 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:14:12 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:14:12.838+0000 7faaf19cc700 -1 mgr.server reply reply (16) Device or resource busy OSD(s) 5 last reported they still store some PG data, and not all PGs are active+clean; we cannot be sure they aren't still needed. 2024-04-14T16:14:13.826 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:13 smithi122 podman[48954]: 2024-04-14 16:14:13.418504626 +0000 UTC m=+0.554341795 container remove e9037717fcf043dc8eebd65d65749788c5f39000e5ee42e09ad73f80c358a2d2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-c, org.label-schema.build-date=20240403, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, ceph=True, io.buildah.version=1.33.5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, RELEASE=main-a971fd5, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True) 2024-04-14T16:14:14.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:13 smithi122 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.c.service: Deactivated successfully. 2024-04-14T16:14:14.326 INFO:journalctl@ceph.mon.c.smithi122.stdout:Apr 14 16:14:13 smithi122 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.c.service: Consumed 2.834s CPU time. 2024-04-14T16:14:15.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: Successfully zapped devices for osd.4 on smithi122 2024-04-14T16:14:15.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:15.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-14T16:14:15.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-04-14T16:14:15.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: Removing monitor c from monmap... 2024-04-14T16:14:15.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-04-14T16:14:15.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:14:15.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:14:15.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: mon.b calling monitor election 2024-04-14T16:14:15.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: pgmap v186: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 2/6 objects degraded (33.333%) 2024-04-14T16:14:15.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: mon.a calling monitor election 2024-04-14T16:14:15.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-04-14T16:14:15.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: monmap epoch 4 2024-04-14T16:14:15.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:14:15.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: last_changed 2024-04-14T16:14:12.848986+0000 2024-04-14T16:14:15.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: created 2024-04-14T16:08:23.046866+0000 2024-04-14T16:14:15.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: min_mon_release 19 (squid) 2024-04-14T16:14:15.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: election_strategy: 1 2024-04-14T16:14:15.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-14T16:14:15.278 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: 1: [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] mon.b 2024-04-14T16:14:15.278 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: fsmap 2024-04-14T16:14:15.278 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: osdmap e54: 5 total, 5 up, 5 in 2024-04-14T16:14:15.278 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: mgrmap e15: a(active, since 4m), standbys: b 2024-04-14T16:14:15.278 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:14 smithi027 ceph-mon[33435]: overall HEALTH_OK 2024-04-14T16:14:15.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: Successfully zapped devices for osd.4 on smithi122 2024-04-14T16:14:15.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:15.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-14T16:14:15.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-04-14T16:14:15.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: Removing monitor c from monmap... 2024-04-14T16:14:15.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-04-14T16:14:15.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-14T16:14:15.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-14T16:14:15.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: mon.b calling monitor election 2024-04-14T16:14:15.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: pgmap v186: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 2/6 objects degraded (33.333%) 2024-04-14T16:14:15.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: mon.a calling monitor election 2024-04-14T16:14:15.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-04-14T16:14:15.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: monmap epoch 4 2024-04-14T16:14:15.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:14:15.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: last_changed 2024-04-14T16:14:12.848986+0000 2024-04-14T16:14:15.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: created 2024-04-14T16:08:23.046866+0000 2024-04-14T16:14:15.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: min_mon_release 19 (squid) 2024-04-14T16:14:15.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: election_strategy: 1 2024-04-14T16:14:15.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: 0: [v2:172.21.15.16:3300/0,v1:172.21.15.16:6789/0] mon.a 2024-04-14T16:14:15.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: 1: [v2:172.21.15.27:3300/0,v1:172.21.15.27:6789/0] mon.b 2024-04-14T16:14:15.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: fsmap 2024-04-14T16:14:15.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: osdmap e54: 5 total, 5 up, 5 in 2024-04-14T16:14:15.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: mgrmap e15: a(active, since 4m), standbys: b 2024-04-14T16:14:15.373 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:14 smithi016 ceph-mon[30237]: overall HEALTH_OK 2024-04-14T16:14:16.273 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:15 smithi016 ceph-mon[30237]: Removing daemon mon.c from smithi122 -- ports [] 2024-04-14T16:14:16.273 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:15 smithi016 ceph-mon[30237]: Health check failed: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded (PG_DEGRADED) 2024-04-14T16:14:16.273 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:15 smithi016 ceph-mon[30237]: osdmap e55: 5 total, 5 up, 5 in 2024-04-14T16:14:16.273 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:15 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:16.273 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:15 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:16.273 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:15 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:14:16.275 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:15 smithi027 ceph-mon[33435]: Removing daemon mon.c from smithi122 -- ports [] 2024-04-14T16:14:16.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:15 smithi027 ceph-mon[33435]: Health check failed: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded (PG_DEGRADED) 2024-04-14T16:14:16.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:15 smithi027 ceph-mon[33435]: osdmap e55: 5 total, 5 up, 5 in 2024-04-14T16:14:16.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:15 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:16.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:15 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:16.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:15 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:14:17.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:16 smithi016 ceph-mon[30237]: pgmap v188: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 2/6 objects degraded (33.333%) 2024-04-14T16:14:17.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:16 smithi027 ceph-mon[33435]: pgmap v188: 1 pgs: 1 activating+undersized+degraded+remapped; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 2/6 objects degraded (33.333%) 2024-04-14T16:14:18.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:18 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:18.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:18 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:18.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:18 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:18.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:18 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:18.789 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch ps --hostname smithi122 2024-04-14T16:14:19.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:19 smithi016 ceph-mon[30237]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T16:14:19.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:19 smithi016 ceph-mon[30237]: Health check cleared: PG_DEGRADED (was: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded) 2024-04-14T16:14:19.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:19 smithi016 ceph-mon[30237]: Cluster is now healthy 2024-04-14T16:14:19.139 INFO:teuthology.orchestra.run.smithi016.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-14T16:14:19.139 INFO:teuthology.orchestra.run.smithi016.stderr:osd.5 smithi122 running (75s) 2s ago 74s 37.6M 10.3G 19.0.0-2778-ga971fd5f b96c509eef84 17fc29fbb107 ' 2024-04-14T16:14:19.139 INFO:teuthology.orchestra.run.smithi016.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-14T16:14:19.139 INFO:teuthology.orchestra.run.smithi016.stderr:osd.5 smithi122 running (75s) 2s ago 74s 37.6M 10.3G 19.0.0-2778-ga971fd5f b96c509eef84 17fc29fbb107 ' '!=' 'No daemons reported' ']' 2024-04-14T16:14:19.139 INFO:teuthology.orchestra.run.smithi016.stderr:+ sleep 15 2024-04-14T16:14:19.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:19 smithi027 ceph-mon[33435]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-14T16:14:19.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:19 smithi027 ceph-mon[33435]: Health check cleared: PG_DEGRADED (was: Degraded data redundancy: 2/6 objects degraded (33.333%), 1 pg degraded) 2024-04-14T16:14:19.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:19 smithi027 ceph-mon[33435]: Cluster is now healthy 2024-04-14T16:14:20.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:20 smithi027 ceph-mon[33435]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi122", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:20.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:20 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:20.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:20 smithi016 ceph-mon[30237]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi122", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:20.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:20 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:21.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:20 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a[30214]: 2024-04-14T16:14:20.779+0000 7f3a6a26c700 -1 mon.a@0(leader).osd e55 definitely_dead 0 2024-04-14T16:14:21.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 73 KiB/s, 0 objects/s recovering 2024-04-14T16:14:21.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: Detected new or changed devices on smithi122 2024-04-14T16:14:21.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:21.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:21.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:21.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:14:21.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: Updating smithi016:/etc/ceph/ceph.conf 2024-04-14T16:14:21.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: Updating smithi027:/etc/ceph/ceph.conf 2024-04-14T16:14:21.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:21.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:21.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:21.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:21.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:21.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:21.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-14T16:14:21.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:21 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-04-14T16:14:21.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 145 MiB used, 447 GiB / 447 GiB avail; 73 KiB/s, 0 objects/s recovering 2024-04-14T16:14:21.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: Detected new or changed devices on smithi122 2024-04-14T16:14:21.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:21.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:21.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:21.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:14:21.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: Updating smithi016:/etc/ceph/ceph.conf 2024-04-14T16:14:21.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: Updating smithi027:/etc/ceph/ceph.conf 2024-04-14T16:14:21.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:21.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:21.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:21.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:21.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:21.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:21.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-14T16:14:21.623 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:21 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-04-14T16:14:22.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:22 smithi027 ceph-mon[33435]: Updating smithi016:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:14:22.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:22 smithi027 ceph-mon[33435]: Updating smithi027:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:14:22.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:22 smithi027 ceph-mon[33435]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:22.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:22 smithi027 ceph-mon[33435]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:22.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:22 smithi027 ceph-mon[33435]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-14T16:14:22.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:22 smithi027 ceph-mon[33435]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-14T16:14:22.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:22 smithi027 ceph-mon[33435]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-04-14T16:14:22.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:22 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-04-14T16:14:22.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:22 smithi027 ceph-mon[33435]: osdmap e56: 5 total, 4 up, 5 in 2024-04-14T16:14:22.576 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:22 smithi122 systemd[1]: Stopping Ceph osd.5 for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:14:22.576 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:22 smithi122 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5[44698]: 2024-04-14T16:14:22.483+0000 7f7c1db9c700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.5 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-14T16:14:22.576 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:22 smithi122 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5[44698]: 2024-04-14T16:14:22.483+0000 7f7c1db9c700 -1 osd.5 55 *** Got signal Terminated *** 2024-04-14T16:14:22.576 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:22 smithi122 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5[44698]: 2024-04-14T16:14:22.483+0000 7f7c1db9c700 -1 osd.5 55 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-14T16:14:22.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:22 smithi016 ceph-mon[30237]: Updating smithi016:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:14:22.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:22 smithi016 ceph-mon[30237]: Updating smithi027:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/config/ceph.conf 2024-04-14T16:14:22.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:22 smithi016 ceph-mon[30237]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:22.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:22 smithi016 ceph-mon[30237]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-14T16:14:22.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:22 smithi016 ceph-mon[30237]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-14T16:14:22.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:22 smithi016 ceph-mon[30237]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-14T16:14:22.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:22 smithi016 ceph-mon[30237]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-04-14T16:14:22.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:22 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-04-14T16:14:22.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:22 smithi016 ceph-mon[30237]: osdmap e56: 5 total, 4 up, 5 in 2024-04-14T16:14:23.290 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:23 smithi122 podman[51830]: 2024-04-14 16:14:23.005236181 +0000 UTC m=+0.624115646 container died 17fc29fbb1073ef9d3f9227e35ee72ff9910a05497d2be9bad997822a3a4d844 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.build-date=20240403, GIT_CLEAN=True, ceph=True, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, RELEASE=main-a971fd5, GIT_BRANCH=HEAD, io.buildah.version=1.33.5) 2024-04-14T16:14:23.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:23 smithi027 ceph-mon[33435]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-04-14T16:14:23.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:23 smithi027 ceph-mon[33435]: osd.5 now down 2024-04-14T16:14:23.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:23 smithi027 ceph-mon[33435]: Removing daemon osd.5 from smithi122 -- ports [] 2024-04-14T16:14:23.576 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:23 smithi122 podman[51830]: 2024-04-14 16:14:23.389436422 +0000 UTC m=+1.008315882 container cleanup 17fc29fbb1073ef9d3f9227e35ee72ff9910a05497d2be9bad997822a3a4d844 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, ceph=True, GIT_CLEAN=True, RELEASE=main-a971fd5, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, org.label-schema.build-date=20240403, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=) 2024-04-14T16:14:23.576 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:23 smithi122 bash[51830]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5 2024-04-14T16:14:23.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:23 smithi016 ceph-mon[30237]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-04-14T16:14:23.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:23 smithi016 ceph-mon[30237]: osd.5 now down 2024-04-14T16:14:23.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:23 smithi016 ceph-mon[30237]: Removing daemon osd.5 from smithi122 -- ports [] 2024-04-14T16:14:23.992 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:23 smithi122 podman[51852]: 2024-04-14 16:14:23.674017364 +0000 UTC m=+0.667653206 container remove 17fc29fbb1073ef9d3f9227e35ee72ff9910a05497d2be9bad997822a3a4d844 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, RELEASE=main-a971fd5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.build-date=20240403) 2024-04-14T16:14:24.252 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:23 smithi122 podman[51941]: 2024-04-14 16:14:23.991454469 +0000 UTC m=+0.109352656 container create 7b045d62ea7543e5c27f36792e53184f06a5b3b13a93be724f0625d09d4cb440 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5-deactivate, RELEASE=main-a971fd5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240403, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, ceph=True, org.label-schema.vendor=CentOS) 2024-04-14T16:14:24.253 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:23 smithi122 podman[51941]: 2024-04-14 16:14:23.899570345 +0000 UTC m=+0.017468515 image pull b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608 2024-04-14T16:14:24.253 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:24 smithi122 podman[51941]: 2024-04-14 16:14:24.177605258 +0000 UTC m=+0.295503411 container init 7b045d62ea7543e5c27f36792e53184f06a5b3b13a93be724f0625d09d4cb440 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5-deactivate, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240403, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, RELEASE=main-a971fd5, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_CLEAN=True) 2024-04-14T16:14:24.253 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:24 smithi122 podman[51941]: 2024-04-14 16:14:24.182767238 +0000 UTC m=+0.300665384 container start 7b045d62ea7543e5c27f36792e53184f06a5b3b13a93be724f0625d09d4cb440 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5-deactivate, org.label-schema.build-date=20240403, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, ceph=True, GIT_BRANCH=HEAD, RELEASE=main-a971fd5) 2024-04-14T16:14:24.253 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:24 smithi122 podman[51941]: 2024-04-14 16:14:24.252343487 +0000 UTC m=+0.370241635 container attach 7b045d62ea7543e5c27f36792e53184f06a5b3b13a93be724f0625d09d4cb440 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5-deactivate, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240403, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, RELEASE=main-a971fd5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.vendor=CentOS) 2024-04-14T16:14:24.576 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:24 smithi122 podman[51941]: 2024-04-14 16:14:24.469224101 +0000 UTC m=+0.587122251 container died 7b045d62ea7543e5c27f36792e53184f06a5b3b13a93be724f0625d09d4cb440 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5-deactivate, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240403, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, RELEASE=main-a971fd5, GIT_CLEAN=True, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2) 2024-04-14T16:14:24.990 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:24 smithi122 podman[51987]: 2024-04-14 16:14:24.947203081 +0000 UTC m=+0.472748972 container remove 7b045d62ea7543e5c27f36792e53184f06a5b3b13a93be724f0625d09d4cb440 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-5-deactivate, ceph=True, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, RELEASE=main-a971fd5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.build-date=20240403, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=) 2024-04-14T16:14:24.990 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:24 smithi122 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.5.service: Deactivated successfully. 2024-04-14T16:14:24.990 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:24 smithi122 systemd[1]: Stopped Ceph osd.5 for 0c4012e2-fa79-11ee-bc8e-c7b262605968. 2024-04-14T16:14:24.990 INFO:journalctl@ceph.osd.5.smithi122.stdout:Apr 14 16:14:24 smithi122 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.5.service: Consumed 1.681s CPU time. 2024-04-14T16:14:25.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:25 smithi027 ceph-mon[33435]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-04-14T16:14:25.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:25 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:25.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:25 smithi016 ceph-mon[30237]: pgmap v193: 1 pgs: 1 active+clean; 577 KiB data, 144 MiB used, 447 GiB / 447 GiB avail; 68 KiB/s, 0 objects/s recovering 2024-04-14T16:14:25.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:25 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:26.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:26 smithi027 ceph-mon[33435]: Removing key for osd.5 2024-04-14T16:14:26.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:26 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-04-14T16:14:26.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:26 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-04-14T16:14:26.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:26 smithi027 ceph-mon[33435]: Successfully removed osd.5 on smithi122 2024-04-14T16:14:26.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:26 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-04-14T16:14:26.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:26 smithi027 ceph-mon[33435]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-14T16:14:26.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:26 smithi027 ceph-mon[33435]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-04-14T16:14:26.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:26 smithi027 ceph-mon[33435]: Cluster is now healthy 2024-04-14T16:14:26.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:26 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-04-14T16:14:26.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:26 smithi027 ceph-mon[33435]: osdmap e57: 4 total, 4 up, 4 in 2024-04-14T16:14:26.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:26 smithi027 ceph-mon[33435]: Successfully purged osd.5 on smithi122 2024-04-14T16:14:26.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:26 smithi027 ceph-mon[33435]: Zapping devices for osd.5 on smithi122 2024-04-14T16:14:26.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:26 smithi016 ceph-mon[30237]: Removing key for osd.5 2024-04-14T16:14:26.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:26 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-04-14T16:14:26.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:26 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-04-14T16:14:26.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:26 smithi016 ceph-mon[30237]: Successfully removed osd.5 on smithi122 2024-04-14T16:14:26.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:26 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-04-14T16:14:26.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:26 smithi016 ceph-mon[30237]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-14T16:14:26.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:26 smithi016 ceph-mon[30237]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-04-14T16:14:26.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:26 smithi016 ceph-mon[30237]: Cluster is now healthy 2024-04-14T16:14:26.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:26 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-04-14T16:14:26.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:26 smithi016 ceph-mon[30237]: osdmap e57: 4 total, 4 up, 4 in 2024-04-14T16:14:26.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:26 smithi016 ceph-mon[30237]: Successfully purged osd.5 on smithi122 2024-04-14T16:14:26.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:26 smithi016 ceph-mon[30237]: Zapping devices for osd.5 on smithi122 2024-04-14T16:14:27.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:27 smithi016 ceph-mon[30237]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:27.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:27 smithi027 ceph-mon[33435]: pgmap v195: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:29.582 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:29 smithi016 ceph-mon[30237]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:29.582 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:29.582 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:14:29.582 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T16:14:29.582 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:29 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:29.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:29 smithi027 ceph-mon[33435]: pgmap v196: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:29.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:29 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:29.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:29 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:14:29.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:29 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T16:14:29.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:29 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:30.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:30 smithi016 ceph-mon[30237]: Successfully zapped devices for osd.5 on smithi122 2024-04-14T16:14:30.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:30 smithi016 ceph-mon[30237]: Reconfiguring mon.a (monmap changed)... 2024-04-14T16:14:30.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:30 smithi016 ceph-mon[30237]: Reconfiguring daemon mon.a on smithi016 2024-04-14T16:14:30.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:30 smithi027 ceph-mon[33435]: Successfully zapped devices for osd.5 on smithi122 2024-04-14T16:14:30.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:30 smithi027 ceph-mon[33435]: Reconfiguring mon.a (monmap changed)... 2024-04-14T16:14:30.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:30 smithi027 ceph-mon[33435]: Reconfiguring daemon mon.a on smithi016 2024-04-14T16:14:31.337 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:31 smithi016 ceph-mon[30237]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:31.337 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:31 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:31.337 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:31 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:31.337 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:31 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T16:14:31.337 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:31 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T16:14:31.337 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:31 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:31.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:31 smithi027 ceph-mon[33435]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:31.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:31 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:31.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:31 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:31.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:31 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T16:14:31.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:31 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T16:14:31.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:31 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:32.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:32 smithi016 ceph-mon[30237]: Reconfiguring mgr.a (monmap changed)... 2024-04-14T16:14:32.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:32 smithi016 ceph-mon[30237]: Reconfiguring daemon mgr.a on smithi016 2024-04-14T16:14:32.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:32 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:32.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:32 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:32.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:32 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-14T16:14:32.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:32 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:32.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:32 smithi027 ceph-mon[33435]: Reconfiguring mgr.a (monmap changed)... 2024-04-14T16:14:32.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:32 smithi027 ceph-mon[33435]: Reconfiguring daemon mgr.a on smithi016 2024-04-14T16:14:32.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:32.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:32.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-14T16:14:32.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:32 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:33.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:33 smithi016 ceph-mon[30237]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:33.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:33 smithi016 ceph-mon[30237]: Reconfiguring osd.0 (monmap changed)... 2024-04-14T16:14:33.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:33 smithi016 ceph-mon[30237]: Reconfiguring daemon osd.0 on smithi016 2024-04-14T16:14:33.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:33 smithi027 ceph-mon[33435]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:33.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:33 smithi027 ceph-mon[33435]: Reconfiguring osd.0 (monmap changed)... 2024-04-14T16:14:33.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:33 smithi027 ceph-mon[33435]: Reconfiguring daemon osd.0 on smithi016 2024-04-14T16:14:34.141 INFO:teuthology.orchestra.run.smithi016.stderr:++ ceph orch ps --hostname smithi122 2024-04-14T16:14:34.518 INFO:teuthology.orchestra.run.smithi016.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-04-14T16:14:34.518 INFO:teuthology.orchestra.run.smithi016.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-04-14T16:14:34.518 INFO:teuthology.orchestra.run.smithi016.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-04-14T16:14:34.837 INFO:teuthology.orchestra.run.smithi016.stderr:17 2024-04-14T16:14:34.847 INFO:teuthology.orchestra.run.smithi016.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-04-14T16:14:34.860 INFO:teuthology.orchestra.run.smithi016.stderr:++ cat crushmap.txt 2024-04-14T16:14:34.862 INFO:teuthology.orchestra.run.smithi016.stderr:+ CRUSH_MAP='# begin crush map 2024-04-14T16:14:34.862 INFO:teuthology.orchestra.run.smithi016.stderr:tunable choose_local_tries 0 2024-04-14T16:14:34.862 INFO:teuthology.orchestra.run.smithi016.stderr:tunable choose_local_fallback_tries 0 2024-04-14T16:14:34.862 INFO:teuthology.orchestra.run.smithi016.stderr:tunable choose_total_tries 50 2024-04-14T16:14:34.862 INFO:teuthology.orchestra.run.smithi016.stderr:tunable chooseleaf_descend_once 1 2024-04-14T16:14:34.862 INFO:teuthology.orchestra.run.smithi016.stderr:tunable chooseleaf_vary_r 1 2024-04-14T16:14:34.862 INFO:teuthology.orchestra.run.smithi016.stderr:tunable chooseleaf_stable 1 2024-04-14T16:14:34.862 INFO:teuthology.orchestra.run.smithi016.stderr:tunable straw_calc_version 1 2024-04-14T16:14:34.862 INFO:teuthology.orchestra.run.smithi016.stderr:tunable allowed_bucket_algs 54 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr:# devices 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr:device 0 osd.0 class ssd 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr:device 1 osd.1 class ssd 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr:device 2 osd.2 class ssd 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr:device 3 osd.3 class ssd 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr:# types 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr:type 0 osd 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr:type 1 host 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr:type 2 chassis 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr:type 3 rack 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr:type 4 row 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr:type 5 pdu 2024-04-14T16:14:34.863 INFO:teuthology.orchestra.run.smithi016.stderr:type 6 pod 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr:type 7 room 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr:type 8 datacenter 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr:type 9 zone 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr:type 10 region 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr:type 11 root 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr:# buckets 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr:host smithi016 { 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr: id -3 # do not change unnecessarily 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr: id -4 class ssd # do not change unnecessarily 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.17459 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.0 weight 0.08730 2024-04-14T16:14:34.864 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.1 weight 0.08730 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr:host smithi027 { 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr: id -5 # do not change unnecessarily 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr: id -6 class ssd # do not change unnecessarily 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.17459 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.2 weight 0.08730 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.3 weight 0.08730 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr:host smithi122 { 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr: id -7 # do not change unnecessarily 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr: id -8 class ssd # do not change unnecessarily 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.00000 2024-04-14T16:14:34.865 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-14T16:14:34.866 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-14T16:14:34.866 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-14T16:14:34.866 INFO:teuthology.orchestra.run.smithi016.stderr:root default { 2024-04-14T16:14:34.866 INFO:teuthology.orchestra.run.smithi016.stderr: id -1 # do not change unnecessarily 2024-04-14T16:14:34.866 INFO:teuthology.orchestra.run.smithi016.stderr: id -2 class ssd # do not change unnecessarily 2024-04-14T16:14:34.866 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.34918 2024-04-14T16:14:34.866 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-14T16:14:34.866 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-14T16:14:34.866 INFO:teuthology.orchestra.run.smithi016.stderr: item smithi016 weight 0.17459 2024-04-14T16:14:34.866 INFO:teuthology.orchestra.run.smithi016.stderr: item smithi027 weight 0.17459 2024-04-14T16:14:34.866 INFO:teuthology.orchestra.run.smithi016.stderr: item smithi122 weight 0.00000 2024-04-14T16:14:34.866 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-14T16:14:34.866 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:14:34.867 INFO:teuthology.orchestra.run.smithi016.stderr:# rules 2024-04-14T16:14:34.867 INFO:teuthology.orchestra.run.smithi016.stderr:rule replicated_rule { 2024-04-14T16:14:34.867 INFO:teuthology.orchestra.run.smithi016.stderr: id 0 2024-04-14T16:14:34.867 INFO:teuthology.orchestra.run.smithi016.stderr: type replicated 2024-04-14T16:14:34.867 INFO:teuthology.orchestra.run.smithi016.stderr: step take default 2024-04-14T16:14:34.867 INFO:teuthology.orchestra.run.smithi016.stderr: step choose firstn 0 type osd 2024-04-14T16:14:34.867 INFO:teuthology.orchestra.run.smithi016.stderr: step emit 2024-04-14T16:14:34.867 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-14T16:14:34.867 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:14:34.867 INFO:teuthology.orchestra.run.smithi016.stderr:# end crush map' 2024-04-14T16:14:34.867 INFO:teuthology.orchestra.run.smithi016.stderr:+ grep -q smithi122 2024-04-14T16:14:34.868 INFO:teuthology.orchestra.run.smithi016.stderr:+ ceph orch host rm smithi122 --rm-crush-entry 2024-04-14T16:14:35.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:34 smithi016 ceph-mon[30237]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:35.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:34 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:35.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:34 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:35.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:34 smithi016 ceph-mon[30237]: Reconfiguring osd.1 (monmap changed)... 2024-04-14T16:14:35.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:34 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-14T16:14:35.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:34 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:35.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:34 smithi016 ceph-mon[30237]: Reconfiguring daemon osd.1 on smithi016 2024-04-14T16:14:35.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:34 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/4218263105' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-14T16:14:35.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:34 smithi027 ceph-mon[33435]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:35.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:34 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:35.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:34 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:35.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:34 smithi027 ceph-mon[33435]: Reconfiguring osd.1 (monmap changed)... 2024-04-14T16:14:35.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:34 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-14T16:14:35.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:34 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:35.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:34 smithi027 ceph-mon[33435]: Reconfiguring daemon osd.1 on smithi016 2024-04-14T16:14:35.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:34 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/4218263105' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-14T16:14:35.995 INFO:teuthology.orchestra.run.smithi016.stdout:Removed host 'smithi122' 2024-04-14T16:14:35.996 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:35 smithi016 ceph-mon[30237]: from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi122", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:35.996 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:35 smithi016 ceph-mon[30237]: from='client.14538 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi122", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:35.996 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:35 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi122"}]: dispatch 2024-04-14T16:14:35.996 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:35 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:35.996 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:35 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:35.996 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:35 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:14:35.996 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:35 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T16:14:35.996 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:35 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:36.008 INFO:teuthology.orchestra.run.smithi016.stderr:+ sleep 30 2024-04-14T16:14:36.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:35 smithi027 ceph-mon[33435]: from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi122", "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:36.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:35 smithi027 ceph-mon[33435]: from='client.14538 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi122", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-14T16:14:36.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:35 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi122"}]: dispatch 2024-04-14T16:14:36.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:35 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:36.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:35 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:36.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:35 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-14T16:14:36.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:35 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-14T16:14:36.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:35 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:37.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:36 smithi027 ceph-mon[33435]: pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:37.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:36 smithi027 ceph-mon[33435]: Reconfiguring mon.b (monmap changed)... 2024-04-14T16:14:37.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:36 smithi027 ceph-mon[33435]: Reconfiguring daemon mon.b on smithi027 2024-04-14T16:14:37.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:36 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi122"}]': finished 2024-04-14T16:14:37.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:36 smithi027 ceph-mon[33435]: osdmap e58: 4 total, 4 up, 4 in 2024-04-14T16:14:37.276 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:36 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:37.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:36 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi122"}]: dispatch 2024-04-14T16:14:37.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:36 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi122"}]': finished 2024-04-14T16:14:37.277 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:36 smithi027 ceph-mon[33435]: Removed host smithi122 2024-04-14T16:14:37.371 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:36 smithi016 ceph-mon[30237]: pgmap v200: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:37.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:36 smithi016 ceph-mon[30237]: Reconfiguring mon.b (monmap changed)... 2024-04-14T16:14:37.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:36 smithi016 ceph-mon[30237]: Reconfiguring daemon mon.b on smithi027 2024-04-14T16:14:37.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:36 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi122"}]': finished 2024-04-14T16:14:37.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:36 smithi016 ceph-mon[30237]: osdmap e58: 4 total, 4 up, 4 in 2024-04-14T16:14:37.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:36 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:37.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:36 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi122"}]: dispatch 2024-04-14T16:14:37.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:36 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi122"}]': finished 2024-04-14T16:14:37.372 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:36 smithi016 ceph-mon[30237]: Removed host smithi122 2024-04-14T16:14:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:38 smithi027 ceph-mon[33435]: pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:38 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:38 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:38 smithi027 ceph-mon[33435]: Reconfiguring mgr.b (monmap changed)... 2024-04-14T16:14:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:38 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T16:14:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:38 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T16:14:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:38 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:38.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:38 smithi027 ceph-mon[33435]: Reconfiguring daemon mgr.b on smithi027 2024-04-14T16:14:38.871 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:38 smithi016 ceph-mon[30237]: pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:38.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:38 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:38.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:38 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:38.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:38 smithi016 ceph-mon[30237]: Reconfiguring mgr.b (monmap changed)... 2024-04-14T16:14:38.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:38 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-14T16:14:38.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:38 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-14T16:14:38.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:38 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:38.872 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:38 smithi016 ceph-mon[30237]: Reconfiguring daemon mgr.b on smithi027 2024-04-14T16:14:40.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:40.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:40.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:40 smithi027 ceph-mon[33435]: Reconfiguring osd.2 (monmap changed)... 2024-04-14T16:14:40.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-14T16:14:40.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:40 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:40.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:40 smithi027 ceph-mon[33435]: Reconfiguring daemon osd.2 on smithi027 2024-04-14T16:14:40.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:40.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:40 smithi016 ceph-mon[30237]: Reconfiguring osd.2 (monmap changed)... 2024-04-14T16:14:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-14T16:14:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:40 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:40.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:40 smithi016 ceph-mon[30237]: Reconfiguring daemon osd.2 on smithi027 2024-04-14T16:14:41.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:41 smithi027 ceph-mon[33435]: pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:41.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:41 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:41.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:41 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:41.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:41 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-14T16:14:41.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:41 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:41.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:41 smithi016 ceph-mon[30237]: pgmap v203: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:41.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:41 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:41.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:41 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:41.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:41 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-14T16:14:41.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:41 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:42.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:42 smithi027 ceph-mon[33435]: Reconfiguring osd.3 (monmap changed)... 2024-04-14T16:14:42.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:42 smithi027 ceph-mon[33435]: Reconfiguring daemon osd.3 on smithi027 2024-04-14T16:14:42.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:42 smithi016 ceph-mon[30237]: Reconfiguring osd.3 (monmap changed)... 2024-04-14T16:14:42.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:42 smithi016 ceph-mon[30237]: Reconfiguring daemon osd.3 on smithi027 2024-04-14T16:14:43.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:43 smithi027 ceph-mon[33435]: pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:43.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:43 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:43.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:43 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:43.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:43 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:14:43.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:43 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:43.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:43 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:14:43.527 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:43 smithi027 ceph-mon[33435]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:43.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:43 smithi016 ceph-mon[30237]: pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:43.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:43 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:43.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:43 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:43.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:43 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-14T16:14:43.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:43 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-14T16:14:43.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:43 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-14T16:14:43.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:43 smithi016 ceph-mon[30237]: from='mgr.14152 172.21.15.16:0/749633643' entity='mgr.a' 2024-04-14T16:14:44.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:44 smithi027 ceph-mon[33435]: pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:44.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:44 smithi027 ceph-mon[33435]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-04-14T16:14:44.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:44 smithi016 ceph-mon[30237]: pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:44.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:44 smithi016 ceph-mon[30237]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-04-14T16:14:46.525 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:46 smithi027 ceph-mon[33435]: pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:46.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:46 smithi016 ceph-mon[30237]: pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:48.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:48 smithi027 ceph-mon[33435]: pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:48.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:48 smithi016 ceph-mon[30237]: pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:50.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:50 smithi016 ceph-mon[30237]: pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:50.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:50 smithi027 ceph-mon[33435]: pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:52.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:52 smithi016 ceph-mon[30237]: pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:52.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:52 smithi027 ceph-mon[33435]: pgmap v209: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:54.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:54 smithi016 ceph-mon[30237]: pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:54.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:54 smithi027 ceph-mon[33435]: pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:56.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:56 smithi016 ceph-mon[30237]: pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:56.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:56 smithi027 ceph-mon[33435]: pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:58.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:14:58 smithi016 ceph-mon[30237]: pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:14:58.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:14:58 smithi027 ceph-mon[33435]: pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:15:00.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:15:00 smithi016 ceph-mon[30237]: pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:15:00.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:00 smithi027 ceph-mon[33435]: pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:15:02.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:15:02 smithi016 ceph-mon[30237]: pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:15:02.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:02 smithi027 ceph-mon[33435]: pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:15:04.621 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:15:04 smithi016 ceph-mon[30237]: pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:15:04.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:04 smithi027 ceph-mon[33435]: pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:15:06.011 INFO:teuthology.orchestra.run.smithi016.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-04-14T16:15:06.335 INFO:teuthology.orchestra.run.smithi016.stderr:18 2024-04-14T16:15:06.344 INFO:teuthology.orchestra.run.smithi016.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-04-14T16:15:06.357 INFO:teuthology.orchestra.run.smithi016.stderr:++ cat crushmap.txt 2024-04-14T16:15:06.358 INFO:teuthology.orchestra.run.smithi016.stderr:+ CRUSH_MAP='# begin crush map 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr:tunable choose_local_tries 0 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr:tunable choose_local_fallback_tries 0 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr:tunable choose_total_tries 50 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr:tunable chooseleaf_descend_once 1 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr:tunable chooseleaf_vary_r 1 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr:tunable chooseleaf_stable 1 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr:tunable straw_calc_version 1 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr:tunable allowed_bucket_algs 54 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr:# devices 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr:device 0 osd.0 class ssd 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr:device 1 osd.1 class ssd 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr:device 2 osd.2 class ssd 2024-04-14T16:15:06.359 INFO:teuthology.orchestra.run.smithi016.stderr:device 3 osd.3 class ssd 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr:# types 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr:type 0 osd 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr:type 1 host 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr:type 2 chassis 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr:type 3 rack 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr:type 4 row 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr:type 5 pdu 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr:type 6 pod 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr:type 7 room 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr:type 8 datacenter 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr:type 9 zone 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr:type 10 region 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr:type 11 root 2024-04-14T16:15:06.360 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr:# buckets 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr:host smithi016 { 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr: id -3 # do not change unnecessarily 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr: id -4 class ssd # do not change unnecessarily 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.17459 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.0 weight 0.08730 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.1 weight 0.08730 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr:host smithi027 { 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr: id -5 # do not change unnecessarily 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr: id -6 class ssd # do not change unnecessarily 2024-04-14T16:15:06.361 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.17459 2024-04-14T16:15:06.362 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-14T16:15:06.362 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-14T16:15:06.362 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.2 weight 0.08730 2024-04-14T16:15:06.362 INFO:teuthology.orchestra.run.smithi016.stderr: item osd.3 weight 0.08730 2024-04-14T16:15:06.362 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-14T16:15:06.362 INFO:teuthology.orchestra.run.smithi016.stderr:root default { 2024-04-14T16:15:06.362 INFO:teuthology.orchestra.run.smithi016.stderr: id -1 # do not change unnecessarily 2024-04-14T16:15:06.362 INFO:teuthology.orchestra.run.smithi016.stderr: id -2 class ssd # do not change unnecessarily 2024-04-14T16:15:06.362 INFO:teuthology.orchestra.run.smithi016.stderr: # weight 0.34918 2024-04-14T16:15:06.362 INFO:teuthology.orchestra.run.smithi016.stderr: alg straw2 2024-04-14T16:15:06.362 INFO:teuthology.orchestra.run.smithi016.stderr: hash 0 # rjenkins1 2024-04-14T16:15:06.362 INFO:teuthology.orchestra.run.smithi016.stderr: item smithi016 weight 0.17459 2024-04-14T16:15:06.362 INFO:teuthology.orchestra.run.smithi016.stderr: item smithi027 weight 0.17459 2024-04-14T16:15:06.363 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-14T16:15:06.363 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:15:06.363 INFO:teuthology.orchestra.run.smithi016.stderr:# rules 2024-04-14T16:15:06.363 INFO:teuthology.orchestra.run.smithi016.stderr:rule replicated_rule { 2024-04-14T16:15:06.363 INFO:teuthology.orchestra.run.smithi016.stderr: id 0 2024-04-14T16:15:06.363 INFO:teuthology.orchestra.run.smithi016.stderr: type replicated 2024-04-14T16:15:06.363 INFO:teuthology.orchestra.run.smithi016.stderr: step take default 2024-04-14T16:15:06.363 INFO:teuthology.orchestra.run.smithi016.stderr: step choose firstn 0 type osd 2024-04-14T16:15:06.363 INFO:teuthology.orchestra.run.smithi016.stderr: step emit 2024-04-14T16:15:06.363 INFO:teuthology.orchestra.run.smithi016.stderr:} 2024-04-14T16:15:06.363 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:15:06.363 INFO:teuthology.orchestra.run.smithi016.stderr:# end crush map' 2024-04-14T16:15:06.363 INFO:teuthology.orchestra.run.smithi016.stderr:+ grep -q smithi122 2024-04-14T16:15:06.622 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:15:06 smithi016 ceph-mon[30237]: pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:15:06.776 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:06 smithi027 ceph-mon[33435]: pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 117 MiB used, 357 GiB / 358 GiB avail 2024-04-14T16:15:07.059 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-14T16:15:07.071 INFO:tasks.cephadm:Teardown begin 2024-04-14T16:15:07.072 DEBUG:teuthology.orchestra.run.smithi016:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-14T16:15:07.102 DEBUG:teuthology.orchestra.run.smithi027:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-14T16:15:07.142 DEBUG:teuthology.orchestra.run.smithi122:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-14T16:15:07.177 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-04-14T16:15:07.177 DEBUG:teuthology.orchestra.run.smithi016:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-14T16:15:07.192 DEBUG:teuthology.orchestra.run.smithi027:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-14T16:15:07.210 DEBUG:teuthology.orchestra.run.smithi122:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-14T16:15:07.234 INFO:tasks.cephadm:Stopping all daemons... 2024-04-14T16:15:07.234 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-04-14T16:15:07.234 DEBUG:teuthology.orchestra.run.smithi016:> sudo systemctl stop ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.a 2024-04-14T16:15:07.306 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:15:07 smithi016 systemd[1]: Stopping Ceph mon.a for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:15:07.526 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:07 smithi027 ceph-mon[33435]: from='client.? 172.21.15.16:0/2369286369' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-14T16:15:07.559 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:15:07 smithi016 ceph-mon[30237]: from='client.? 172.21.15.16:0/2369286369' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-14T16:15:07.559 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:15:07 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a[30214]: 2024-04-14T16:15:07.537+0000 7f3a6fa77700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-04-14T16:15:07.559 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:15:07 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a[30214]: 2024-04-14T16:15:07.537+0000 7f3a6fa77700 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-04-14T16:15:07.828 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:15:07 smithi016 podman[62561]: 2024-04-14 16:15:07.559032452 +0000 UTC m=+0.141068233 container died 9bacf78c1313a07b0a7eb5727fbe6095dbfec50394005477ab105933e5312606 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a, RELEASE=main-a971fd5, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.license=GPLv2, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240403, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5) 2024-04-14T16:15:08.121 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:15:07 smithi016 podman[62561]: 2024-04-14 16:15:07.918809495 +0000 UTC m=+0.500845265 container cleanup 9bacf78c1313a07b0a7eb5727fbe6095dbfec50394005477ab105933e5312606 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240403, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, RELEASE=main-a971fd5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5, GIT_CLEAN=True, maintainer=Guillaume Abrioux ) 2024-04-14T16:15:08.122 INFO:journalctl@ceph.mon.a.smithi016.stdout:Apr 14 16:15:07 smithi016 bash[62561]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-a 2024-04-14T16:15:08.489 DEBUG:teuthology.orchestra.run.smithi016:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.a.service' 2024-04-14T16:15:08.532 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T16:15:08.533 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-04-14T16:15:08.533 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-04-14T16:15:08.533 DEBUG:teuthology.orchestra.run.smithi027:> sudo systemctl stop ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.b 2024-04-14T16:15:08.833 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:08 smithi027 systemd[1]: Stopping Ceph mon.b for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:15:09.163 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:08 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-b[33412]: 2024-04-14T16:15:08.831+0000 7f1c1cd96700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.b -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-04-14T16:15:09.164 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:08 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-b[33412]: 2024-04-14T16:15:08.831+0000 7f1c1cd96700 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-04-14T16:15:09.164 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:08 smithi027 podman[49940]: 2024-04-14 16:15:08.893156958 +0000 UTC m=+0.164936513 container died 5305343f485b35e75042a961aabdb5ed15ca11dd3d0d8f3a9571dd711f0dbd07 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-b, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_CLEAN=True, ceph=True, org.label-schema.build-date=20240403, RELEASE=main-a971fd5) 2024-04-14T16:15:09.497 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:09 smithi027 podman[49940]: 2024-04-14 16:15:09.312004106 +0000 UTC m=+0.583783664 container cleanup 5305343f485b35e75042a961aabdb5ed15ca11dd3d0d8f3a9571dd711f0dbd07 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-b, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240403, RELEASE=main-a971fd5, GIT_BRANCH=HEAD, ceph=True, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-14T16:15:09.497 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:09 smithi027 bash[49940]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-b 2024-04-14T16:15:09.740 DEBUG:teuthology.orchestra.run.smithi027:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.b.service' 2024-04-14T16:15:09.768 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:09 smithi027 podman[49959]: 2024-04-14 16:15:09.497115487 +0000 UTC m=+0.602148289 container remove 5305343f485b35e75042a961aabdb5ed15ca11dd3d0d8f3a9571dd711f0dbd07 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mon-b, org.label-schema.schema-version=1.0, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.build-date=20240403, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, ceph=True, RELEASE=main-a971fd5, GIT_CLEAN=True, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD) 2024-04-14T16:15:09.768 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:09 smithi027 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.b.service: Deactivated successfully. 2024-04-14T16:15:09.768 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:09 smithi027 systemd[1]: Stopped Ceph mon.b for 0c4012e2-fa79-11ee-bc8e-c7b262605968. 2024-04-14T16:15:09.769 INFO:journalctl@ceph.mon.b.smithi027.stdout:Apr 14 16:15:09 smithi027 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.b.service: Consumed 3.470s CPU time. 2024-04-14T16:15:09.801 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T16:15:09.801 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-04-14T16:15:09.801 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-04-14T16:15:09.801 DEBUG:teuthology.orchestra.run.smithi122:> sudo systemctl stop ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.c 2024-04-14T16:15:09.848 DEBUG:teuthology.orchestra.run.smithi122:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mon.c.service' 2024-04-14T16:15:09.913 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T16:15:09.913 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-04-14T16:15:09.913 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-04-14T16:15:09.913 DEBUG:teuthology.orchestra.run.smithi016:> sudo systemctl stop ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mgr.a 2024-04-14T16:15:10.360 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:15:09 smithi016 systemd[1]: Stopping Ceph mgr.a for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:15:10.622 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:15:10 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a[30493]: 2024-04-14T16:15:10.358+0000 7fab30235700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mgr -n mgr.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-14T16:15:10.622 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:15:10 smithi016 podman[62693]: 2024-04-14 16:15:10.391243406 +0000 UTC m=+0.284606612 container died 73a11f7db90dff5d62f90333929f790dcd4263c0f9b240de4a99f481e105f52d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240403, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_CLEAN=True, org.label-schema.vendor=CentOS, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, RELEASE=main-a971fd5, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-14T16:15:11.121 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:15:10 smithi016 podman[62693]: 2024-04-14 16:15:10.731844771 +0000 UTC m=+0.625208005 container cleanup 73a11f7db90dff5d62f90333929f790dcd4263c0f9b240de4a99f481e105f52d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, ceph=True, org.label-schema.build-date=20240403, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.vendor=CentOS, RELEASE=main-a971fd5, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0) 2024-04-14T16:15:11.121 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:15:10 smithi016 bash[62693]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a 2024-04-14T16:15:11.121 INFO:journalctl@ceph.mgr.a.smithi016.stdout:Apr 14 16:15:10 smithi016 podman[62712]: 2024-04-14 16:15:10.907978448 +0000 UTC m=+0.518693833 container remove 73a11f7db90dff5d62f90333929f790dcd4263c0f9b240de4a99f481e105f52d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a971fd5f5719038c70b817bafacd6d5400b1d888, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-a, CEPH_POINT_RELEASE=, GIT_CLEAN=True, ceph=True, io.buildah.version=1.33.5, RELEASE=main-a971fd5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240403, org.label-schema.license=GPLv2, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD) 2024-04-14T16:15:11.143 DEBUG:teuthology.orchestra.run.smithi016:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mgr.a.service' 2024-04-14T16:15:11.180 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T16:15:11.180 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-04-14T16:15:11.180 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-04-14T16:15:11.180 DEBUG:teuthology.orchestra.run.smithi027:> sudo systemctl stop ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mgr.b 2024-04-14T16:15:11.516 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:15:11 smithi027 systemd[1]: Stopping Ceph mgr.b for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:15:11.768 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:15:11 smithi027 podman[50071]: 2024-04-14 16:15:11.515837049 +0000 UTC m=+0.134142354 container died 0bb97361c8eed731c6881f36d8759f500df86708acf8b56be99803c359b9a8ac (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, RELEASE=main-a971fd5, org.label-schema.build-date=20240403, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, ceph=True, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0) 2024-04-14T16:15:12.026 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:15:11 smithi027 podman[50071]: 2024-04-14 16:15:11.866455382 +0000 UTC m=+0.484760686 container cleanup 0bb97361c8eed731c6881f36d8759f500df86708acf8b56be99803c359b9a8ac (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b, CEPH_POINT_RELEASE=, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240403, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, ceph=True, io.buildah.version=1.33.5, RELEASE=main-a971fd5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD) 2024-04-14T16:15:12.026 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:15:11 smithi027 bash[50071]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b 2024-04-14T16:15:12.286 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:15:12 smithi027 podman[50091]: 2024-04-14 16:15:12.034235905 +0000 UTC m=+0.515292830 container remove 0bb97361c8eed731c6881f36d8759f500df86708acf8b56be99803c359b9a8ac (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-mgr-b, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-a971fd5, ceph=True, org.label-schema.build-date=20240403, org.label-schema.license=GPLv2, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5) 2024-04-14T16:15:12.286 INFO:journalctl@ceph.mgr.b.smithi027.stdout:Apr 14 16:15:12 smithi027 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mgr.b.service: Main process exited, code=exited, status=143/n/a 2024-04-14T16:15:12.290 DEBUG:teuthology.orchestra.run.smithi027:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@mgr.b.service' 2024-04-14T16:15:12.330 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T16:15:12.330 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-04-14T16:15:12.330 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-04-14T16:15:12.330 DEBUG:teuthology.orchestra.run.smithi016:> sudo systemctl stop ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.0 2024-04-14T16:15:12.621 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:12 smithi016 systemd[1]: Stopping Ceph osd.0 for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:15:13.121 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:12 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0[46370]: 2024-04-14T16:15:12.728+0000 7f9a658f6700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.0 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-14T16:15:13.121 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:12 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0[46370]: 2024-04-14T16:15:12.728+0000 7f9a658f6700 -1 osd.0 58 *** Got signal Terminated *** 2024-04-14T16:15:13.122 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:12 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0[46370]: 2024-04-14T16:15:12.728+0000 7f9a658f6700 -1 osd.0 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-14T16:15:18.304 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:18 smithi016 podman[62823]: 2024-04-14 16:15:18.04616577 +0000 UTC m=+5.523127340 container died 7b1d1637117e11e7f46121cb95c1641ca9b00fb23717320f7c460879bec9a711 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0, RELEASE=main-a971fd5, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, ceph=True, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.build-date=20240403, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-14T16:15:18.569 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:18 smithi016 podman[62823]: 2024-04-14 16:15:18.393174442 +0000 UTC m=+5.870136013 container cleanup 7b1d1637117e11e7f46121cb95c1641ca9b00fb23717320f7c460879bec9a711 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-a971fd5, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.build-date=20240403) 2024-04-14T16:15:18.570 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:18 smithi016 bash[62823]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0 2024-04-14T16:15:18.871 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:18 smithi016 podman[62846]: 2024-04-14 16:15:18.569313526 +0000 UTC m=+0.517037961 container remove 7b1d1637117e11e7f46121cb95c1641ca9b00fb23717320f7c460879bec9a711 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-a971fd5, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_CLEAN=True, CEPH_POINT_RELEASE=, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, ceph=True, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240403, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2) 2024-04-14T16:15:19.289 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:19 smithi016 podman[62943]: 2024-04-14 16:15:18.904067164 +0000 UTC m=+0.017561403 image pull b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608 2024-04-14T16:15:19.289 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:19 smithi016 podman[62943]: 2024-04-14 16:15:19.003393273 +0000 UTC m=+0.116887499 container create 08c8c46288c5125b5d357bda89208fed913d78c48ee708b6f31d9d758e0c9511 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0-deactivate, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, RELEASE=main-a971fd5, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240403, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0) 2024-04-14T16:15:19.290 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:19 smithi016 podman[62943]: 2024-04-14 16:15:19.205812931 +0000 UTC m=+0.319307170 container init 08c8c46288c5125b5d357bda89208fed913d78c48ee708b6f31d9d758e0c9511 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0-deactivate, org.label-schema.license=GPLv2, RELEASE=main-a971fd5, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.build-date=20240403, org.label-schema.vendor=CentOS, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0) 2024-04-14T16:15:19.290 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:19 smithi016 podman[62943]: 2024-04-14 16:15:19.211366866 +0000 UTC m=+0.324861092 container start 08c8c46288c5125b5d357bda89208fed913d78c48ee708b6f31d9d758e0c9511 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0-deactivate, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.build-date=20240403, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , RELEASE=main-a971fd5, ceph=True, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0) 2024-04-14T16:15:19.290 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:19 smithi016 podman[62943]: 2024-04-14 16:15:19.289043185 +0000 UTC m=+0.402537427 container attach 08c8c46288c5125b5d357bda89208fed913d78c48ee708b6f31d9d758e0c9511 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0-deactivate, org.label-schema.build-date=20240403, ceph=True, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-a971fd5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=) 2024-04-14T16:15:19.621 INFO:journalctl@ceph.osd.0.smithi016.stdout:Apr 14 16:15:19 smithi016 podman[62943]: 2024-04-14 16:15:19.506653157 +0000 UTC m=+0.620147376 container died 08c8c46288c5125b5d357bda89208fed913d78c48ee708b6f31d9d758e0c9511 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-0-deactivate, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240403, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2, RELEASE=main-a971fd5, GIT_CLEAN=True) 2024-04-14T16:15:20.125 DEBUG:teuthology.orchestra.run.smithi016:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.0.service' 2024-04-14T16:15:20.167 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T16:15:20.168 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-04-14T16:15:20.168 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-04-14T16:15:20.168 DEBUG:teuthology.orchestra.run.smithi016:> sudo systemctl stop ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.1 2024-04-14T16:15:20.372 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:20 smithi016 systemd[1]: Stopping Ceph osd.1 for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:15:20.871 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:20 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1[52439]: 2024-04-14T16:15:20.540+0000 7f9cca6c9700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.1 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-14T16:15:20.871 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:20 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1[52439]: 2024-04-14T16:15:20.540+0000 7f9cca6c9700 -1 osd.1 58 *** Got signal Terminated *** 2024-04-14T16:15:20.871 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:20 smithi016 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1[52439]: 2024-04-14T16:15:20.540+0000 7f9cca6c9700 -1 osd.1 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-14T16:15:26.195 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:25 smithi016 podman[63074]: 2024-04-14 16:15:25.874769367 +0000 UTC m=+5.469167732 container died 483c66ce7cc95ccea38c1eed9a4f67643f8276096188be7cfd605cef73155a13 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, RELEASE=main-a971fd5, ceph=True, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240403) 2024-04-14T16:15:26.195 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:26 smithi016 podman[63074]: 2024-04-14 16:15:26.194494152 +0000 UTC m=+5.788892514 container cleanup 483c66ce7cc95ccea38c1eed9a4f67643f8276096188be7cfd605cef73155a13 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5, org.label-schema.build-date=20240403, GIT_CLEAN=True, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-a971fd5, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS) 2024-04-14T16:15:26.621 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:26 smithi016 bash[63074]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1 2024-04-14T16:15:26.622 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:26 smithi016 podman[63109]: 2024-04-14 16:15:26.428982369 +0000 UTC m=+0.547372150 container remove 483c66ce7cc95ccea38c1eed9a4f67643f8276096188be7cfd605cef73155a13 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1, org.label-schema.build-date=20240403, org.label-schema.schema-version=1.0, RELEASE=main-a971fd5, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, ceph=True, GIT_BRANCH=HEAD, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True) 2024-04-14T16:15:27.121 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:26 smithi016 podman[63202]: 2024-04-14 16:15:26.846313366 +0000 UTC m=+0.110232003 container create 7682832030c0284d90da360dc83fe994a84c004b2fbe30c822ced4147d44939f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1-deactivate, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.build-date=20240403, RELEASE=main-a971fd5, GIT_CLEAN=True, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5) 2024-04-14T16:15:27.122 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:26 smithi016 podman[63202]: 2024-04-14 16:15:26.753734259 +0000 UTC m=+0.017652908 image pull b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608 2024-04-14T16:15:27.122 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:27 smithi016 podman[63202]: 2024-04-14 16:15:27.056707931 +0000 UTC m=+0.320626569 container init 7682832030c0284d90da360dc83fe994a84c004b2fbe30c822ced4147d44939f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1-deactivate, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240403, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, RELEASE=main-a971fd5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_CLEAN=True, io.buildah.version=1.33.5, GIT_BRANCH=HEAD) 2024-04-14T16:15:27.122 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:27 smithi016 podman[63202]: 2024-04-14 16:15:27.061759482 +0000 UTC m=+0.325678120 container start 7682832030c0284d90da360dc83fe994a84c004b2fbe30c822ced4147d44939f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1-deactivate, ceph=True, GIT_CLEAN=True, io.buildah.version=1.33.5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, RELEASE=main-a971fd5, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240403, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=) 2024-04-14T16:15:27.621 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:27 smithi016 podman[63202]: 2024-04-14 16:15:27.123145853 +0000 UTC m=+0.387064498 container attach 7682832030c0284d90da360dc83fe994a84c004b2fbe30c822ced4147d44939f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1-deactivate, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240403, RELEASE=main-a971fd5, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0) 2024-04-14T16:15:27.621 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:27 smithi016 podman[63202]: 2024-04-14 16:15:27.358540611 +0000 UTC m=+0.622459250 container died 7682832030c0284d90da360dc83fe994a84c004b2fbe30c822ced4147d44939f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1-deactivate, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, RELEASE=main-a971fd5, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, org.label-schema.build-date=20240403, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-14T16:15:27.894 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:27 smithi016 podman[63248]: 2024-04-14 16:15:27.867565686 +0000 UTC m=+0.504399580 container remove 7682832030c0284d90da360dc83fe994a84c004b2fbe30c822ced4147d44939f (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-1-deactivate, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-a971fd5, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, org.label-schema.build-date=20240403, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux ) 2024-04-14T16:15:27.894 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:27 smithi016 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.1.service: Deactivated successfully. 2024-04-14T16:15:27.894 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:27 smithi016 systemd[1]: Stopped Ceph osd.1 for 0c4012e2-fa79-11ee-bc8e-c7b262605968. 2024-04-14T16:15:27.894 INFO:journalctl@ceph.osd.1.smithi016.stdout:Apr 14 16:15:27 smithi016 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.1.service: Consumed 2.416s CPU time. 2024-04-14T16:15:27.896 DEBUG:teuthology.orchestra.run.smithi016:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.1.service' 2024-04-14T16:15:27.936 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T16:15:27.936 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-04-14T16:15:27.936 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-04-14T16:15:27.936 DEBUG:teuthology.orchestra.run.smithi027:> sudo systemctl stop ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.2 2024-04-14T16:15:28.231 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:27 smithi027 systemd[1]: Stopping Ceph osd.2 for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:15:28.526 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:28 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2[38090]: 2024-04-14T16:15:28.229+0000 7fb7d0bf4700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.2 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-14T16:15:28.526 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:28 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2[38090]: 2024-04-14T16:15:28.229+0000 7fb7d0bf4700 -1 osd.2 58 *** Got signal Terminated *** 2024-04-14T16:15:28.526 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:28 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2[38090]: 2024-04-14T16:15:28.229+0000 7fb7d0bf4700 -1 osd.2 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-14T16:15:33.921 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:33 smithi027 podman[50216]: 2024-04-14 16:15:33.630958757 +0000 UTC m=+5.485711376 container died 0f2f4493111e519580b69e98f23faf6e9817b92ac523a965a95d0aae86ae5afb (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2, RELEASE=main-a971fd5, org.label-schema.build-date=20240403, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_BRANCH=HEAD, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2) 2024-04-14T16:15:34.276 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:34 smithi027 podman[50216]: 2024-04-14 16:15:34.102934865 +0000 UTC m=+5.957687513 container cleanup 0f2f4493111e519580b69e98f23faf6e9817b92ac523a965a95d0aae86ae5afb (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240403, GIT_CLEAN=True, ceph=True, CEPH_POINT_RELEASE=, RELEASE=main-a971fd5, io.buildah.version=1.33.5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2) 2024-04-14T16:15:34.276 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:34 smithi027 bash[50216]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2 2024-04-14T16:15:34.720 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:34 smithi027 podman[50239]: 2024-04-14 16:15:34.370801331 +0000 UTC m=+0.737821388 container remove 0f2f4493111e519580b69e98f23faf6e9817b92ac523a965a95d0aae86ae5afb (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.build-date=20240403, RELEASE=main-a971fd5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_CLEAN=True) 2024-04-14T16:15:35.007 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:34 smithi027 podman[50336]: 2024-04-14 16:15:34.622898101 +0000 UTC m=+0.018093690 image pull b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608 2024-04-14T16:15:35.007 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:34 smithi027 podman[50336]: 2024-04-14 16:15:34.746648668 +0000 UTC m=+0.141844237 container create 74ed667af7723905ac3dcd832572c7f5e1207a36f119ff36827895a42e2f7b60 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2-deactivate, ceph=True, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-a971fd5, io.buildah.version=1.33.5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.build-date=20240403, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0) 2024-04-14T16:15:35.008 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:34 smithi027 podman[50336]: 2024-04-14 16:15:34.93261235 +0000 UTC m=+0.327807930 container init 74ed667af7723905ac3dcd832572c7f5e1207a36f119ff36827895a42e2f7b60 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2-deactivate, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.schema-version=1.0, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240403, RELEASE=main-a971fd5, org.label-schema.vendor=CentOS) 2024-04-14T16:15:35.008 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:34 smithi027 podman[50336]: 2024-04-14 16:15:34.938715935 +0000 UTC m=+0.333911506 container start 74ed667af7723905ac3dcd832572c7f5e1207a36f119ff36827895a42e2f7b60 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2-deactivate, org.label-schema.build-date=20240403, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.vendor=CentOS, ceph=True, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , RELEASE=main-a971fd5) 2024-04-14T16:15:35.008 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:35 smithi027 podman[50336]: 2024-04-14 16:15:35.007031127 +0000 UTC m=+0.402226708 container attach 74ed667af7723905ac3dcd832572c7f5e1207a36f119ff36827895a42e2f7b60 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2-deactivate, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.build-date=20240403, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_CLEAN=True, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2, RELEASE=main-a971fd5) 2024-04-14T16:15:35.276 INFO:journalctl@ceph.osd.2.smithi027.stdout:Apr 14 16:15:35 smithi027 podman[50336]: 2024-04-14 16:15:35.240615077 +0000 UTC m=+0.635810646 container died 74ed667af7723905ac3dcd832572c7f5e1207a36f119ff36827895a42e2f7b60 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-2-deactivate, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.license=GPLv2, RELEASE=main-a971fd5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_CLEAN=True, org.label-schema.build-date=20240403) 2024-04-14T16:15:35.815 DEBUG:teuthology.orchestra.run.smithi027:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.2.service' 2024-04-14T16:15:35.860 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T16:15:35.861 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-04-14T16:15:35.861 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-04-14T16:15:35.861 DEBUG:teuthology.orchestra.run.smithi027:> sudo systemctl stop ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.3 2024-04-14T16:15:36.158 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:35 smithi027 systemd[1]: Stopping Ceph osd.3 for 0c4012e2-fa79-11ee-bc8e-c7b262605968... 2024-04-14T16:15:36.526 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:36 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3[44471]: 2024-04-14T16:15:36.156+0000 7f4e9e62c700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.3 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-14T16:15:36.526 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:36 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3[44471]: 2024-04-14T16:15:36.156+0000 7f4e9e62c700 -1 osd.3 58 *** Got signal Terminated *** 2024-04-14T16:15:36.526 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:36 smithi027 ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3[44471]: 2024-04-14T16:15:36.156+0000 7f4e9e62c700 -1 osd.3 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-14T16:15:41.872 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:41 smithi027 podman[50468]: 2024-04-14 16:15:41.586389303 +0000 UTC m=+5.541195329 container died d145e81f71b0dfac2327627aab81097339c9a94571e4e2a446a35a485394c05c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3, CEPH_POINT_RELEASE=, GIT_CLEAN=True, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240403, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, RELEASE=main-a971fd5, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-14T16:15:42.276 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:42 smithi027 podman[50468]: 2024-04-14 16:15:42.046021242 +0000 UTC m=+6.000827309 container cleanup d145e81f71b0dfac2327627aab81097339c9a94571e4e2a446a35a485394c05c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_CLEAN=True, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.build-date=20240403, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, ceph=True, RELEASE=main-a971fd5, org.label-schema.schema-version=1.0) 2024-04-14T16:15:42.276 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:42 smithi027 bash[50468]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3 2024-04-14T16:15:42.622 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:42 smithi027 podman[50490]: 2024-04-14 16:15:42.305292738 +0000 UTC m=+0.708455456 container remove d145e81f71b0dfac2327627aab81097339c9a94571e4e2a446a35a485394c05c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240403, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_BRANCH=HEAD, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, RELEASE=main-a971fd5, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux ) 2024-04-14T16:15:42.916 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:42 smithi027 podman[50587]: 2024-04-14 16:15:42.622640619 +0000 UTC m=+0.112248803 container create 977e80e905035f6f73686ec133797238dc530d4d2b28c0f69e8eea5fd430f796 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3-deactivate, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, RELEASE=main-a971fd5, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , ceph=True, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.build-date=20240403, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-14T16:15:42.917 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:42 smithi027 podman[50587]: 2024-04-14 16:15:42.528361963 +0000 UTC m=+0.017970175 image pull b96c509eef841460b3271f5fdd331860da87b004524f4ed59414aa3680183b53 quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608 2024-04-14T16:15:42.917 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:42 smithi027 podman[50587]: 2024-04-14 16:15:42.824979519 +0000 UTC m=+0.314587703 container init 977e80e905035f6f73686ec133797238dc530d4d2b28c0f69e8eea5fd430f796 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3-deactivate, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.build-date=20240403, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-a971fd5) 2024-04-14T16:15:42.917 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:42 smithi027 podman[50587]: 2024-04-14 16:15:42.830668021 +0000 UTC m=+0.320276209 container start 977e80e905035f6f73686ec133797238dc530d4d2b28c0f69e8eea5fd430f796 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3-deactivate, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240403, RELEASE=main-a971fd5, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_BRANCH=HEAD, ceph=True, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0) 2024-04-14T16:15:43.279 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:42 smithi027 podman[50587]: 2024-04-14 16:15:42.916258387 +0000 UTC m=+0.405866578 container attach 977e80e905035f6f73686ec133797238dc530d4d2b28c0f69e8eea5fd430f796 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3-deactivate, GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.33.5, RELEASE=main-a971fd5, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240403, ceph=True, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-14T16:15:43.279 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:43 smithi027 podman[50587]: 2024-04-14 16:15:43.131485062 +0000 UTC m=+0.621093260 container died 977e80e905035f6f73686ec133797238dc530d4d2b28c0f69e8eea5fd430f796 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240403, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, io.buildah.version=1.33.5, RELEASE=main-a971fd5, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD) 2024-04-14T16:15:43.641 DEBUG:teuthology.orchestra.run.smithi027:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.3.service' 2024-04-14T16:15:43.671 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:43 smithi027 podman[50632]: 2024-04-14 16:15:43.619319044 +0000 UTC m=+0.482503843 container remove 977e80e905035f6f73686ec133797238dc530d4d2b28c0f69e8eea5fd430f796 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:02f0a191d4d693952654c64f93cc9c0152602c0915251b3c94c2c4e32855c608, name=ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968-osd-3-deactivate, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240403, GIT_CLEAN=True, RELEASE=main-a971fd5, io.buildah.version=1.33.5, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD) 2024-04-14T16:15:43.671 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:43 smithi027 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.3.service: Deactivated successfully. 2024-04-14T16:15:43.671 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:43 smithi027 systemd[1]: Stopped Ceph osd.3 for 0c4012e2-fa79-11ee-bc8e-c7b262605968. 2024-04-14T16:15:43.671 INFO:journalctl@ceph.osd.3.smithi027.stdout:Apr 14 16:15:43 smithi027 systemd[1]: ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.3.service: Consumed 2.162s CPU time. 2024-04-14T16:15:43.686 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T16:15:43.687 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-04-14T16:15:43.687 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-04-14T16:15:43.687 DEBUG:teuthology.orchestra.run.smithi122:> sudo systemctl stop ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.4 2024-04-14T16:15:43.733 DEBUG:teuthology.orchestra.run.smithi122:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.4.service' 2024-04-14T16:15:43.770 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T16:15:43.771 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-04-14T16:15:43.771 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-04-14T16:15:43.771 DEBUG:teuthology.orchestra.run.smithi122:> sudo systemctl stop ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.5 2024-04-14T16:15:43.851 DEBUG:teuthology.orchestra.run.smithi122:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c4012e2-fa79-11ee-bc8e-c7b262605968@osd.5.service' 2024-04-14T16:15:43.926 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-14T16:15:43.926 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-04-14T16:15:43.926 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 --force --keep-logs 2024-04-14T16:15:44.125 INFO:teuthology.orchestra.run.smithi016.stdout:Deleting cluster with fsid: 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:15:45.333 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 --force --keep-logs 2024-04-14T16:15:45.538 INFO:teuthology.orchestra.run.smithi027.stdout:Deleting cluster with fsid: 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:15:46.901 DEBUG:teuthology.orchestra.run.smithi122:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 --force --keep-logs 2024-04-14T16:15:47.101 INFO:teuthology.orchestra.run.smithi122.stdout:Deleting cluster with fsid: 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:15:47.495 DEBUG:teuthology.orchestra.run.smithi016:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-14T16:15:47.529 DEBUG:teuthology.orchestra.run.smithi027:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-14T16:15:47.565 DEBUG:teuthology.orchestra.run.smithi122:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-14T16:15:47.594 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-14T16:15:47.597 DEBUG:teuthology.misc:Transferring archived files from smithi016:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159/remote/smithi016/crash 2024-04-14T16:15:47.597 DEBUG:teuthology.orchestra.run.smithi016:> sudo tar c -f - -C /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/crash -- . 2024-04-14T16:15:47.650 INFO:teuthology.orchestra.run.smithi016.stderr:tar: /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/crash: Cannot open: No such file or directory 2024-04-14T16:15:47.651 INFO:teuthology.orchestra.run.smithi016.stderr:tar: Error is not recoverable: exiting now 2024-04-14T16:15:47.652 DEBUG:teuthology.misc:Transferring archived files from smithi027:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159/remote/smithi027/crash 2024-04-14T16:15:47.653 DEBUG:teuthology.orchestra.run.smithi027:> sudo tar c -f - -C /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/crash -- . 2024-04-14T16:15:47.698 INFO:teuthology.orchestra.run.smithi027.stderr:tar: /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/crash: Cannot open: No such file or directory 2024-04-14T16:15:47.698 INFO:teuthology.orchestra.run.smithi027.stderr:tar: Error is not recoverable: exiting now 2024-04-14T16:15:47.700 DEBUG:teuthology.misc:Transferring archived files from smithi122:/var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159/remote/smithi122/crash 2024-04-14T16:15:47.701 DEBUG:teuthology.orchestra.run.smithi122:> sudo tar c -f - -C /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/crash -- . 2024-04-14T16:15:47.739 INFO:teuthology.orchestra.run.smithi122.stderr:tar: /var/lib/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/crash: Cannot open: No such file or directory 2024-04-14T16:15:47.740 INFO:teuthology.orchestra.run.smithi122.stderr:tar: Error is not recoverable: exiting now 2024-04-14T16:15:47.740 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-14T16:15:47.741 DEBUG:teuthology.orchestra.run.smithi016:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | head -n 1 2024-04-14T16:15:47.773 INFO:teuthology.orchestra.run.smithi016.stdout:2024-04-14T16:14:05.877337+0000 mon.a (mon.0) 617 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-04-14T16:15:47.774 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-04-14T16:15:47.774 DEBUG:teuthology.orchestra.run.smithi016:> sudo egrep '\[SEC\]' /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | head -n 1 2024-04-14T16:15:47.845 DEBUG:teuthology.orchestra.run.smithi016:> sudo egrep '\[ERR\]' /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | head -n 1 2024-04-14T16:15:47.917 DEBUG:teuthology.orchestra.run.smithi016:> sudo egrep '\[WRN\]' /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | head -n 1 2024-04-14T16:15:47.987 INFO:teuthology.orchestra.run.smithi016.stdout:2024-04-14T16:14:05.877337+0000 mon.a (mon.0) 617 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN) 2024-04-14T16:15:47.988 INFO:tasks.cephadm:Compressing logs... 2024-04-14T16:15:47.988 DEBUG:teuthology.orchestra.run.smithi016:> 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-14T16:15:48.031 DEBUG:teuthology.orchestra.run.smithi027:> 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-14T16:15:48.033 DEBUG:teuthology.orchestra.run.smithi122:> 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-14T16:15:48.056 INFO:teuthology.orchestra.run.smithi016.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-14T16:15:48.056 INFO:teuthology.orchestra.run.smithi016.stderr:: No such file or directory 2024-04-14T16:15:48.056 INFO:teuthology.orchestra.run.smithi016.stderr:gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mon.a.log 2024-04-14T16:15:48.056 INFO:teuthology.orchestra.run.smithi016.stderr:gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.audit.log 2024-04-14T16:15:48.056 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mgr.a.log 2024-04-14T16:15:48.056 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mon.a.log: /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.1.log 2024-04-14T16:15:48.060 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mgr.a.log: gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.0.log 2024-04-14T16:15:48.060 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.cephadm.log 2024-04-14T16:15:48.060 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.log 2024-04-14T16:15:48.060 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.cephadm.log: 90.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-14T16:15:48.060 INFO:teuthology.orchestra.run.smithi016.stderr:gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-volume.log 2024-04-14T16:15:48.060 INFO:teuthology.orchestra.run.smithi016.stderr: 89.8% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.audit.log.gz 83.1% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.cephadm.log.gz 2024-04-14T16:15:48.060 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.log: 2024-04-14T16:15:48.060 INFO:teuthology.orchestra.run.smithi016.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-volume.log: 85.9% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.log.gz 2024-04-14T16:15:48.063 INFO:teuthology.orchestra.run.smithi122.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-14T16:15:48.063 INFO:teuthology.orchestra.run.smithi122.stderr:: No such file or directory 2024-04-14T16:15:48.063 INFO:teuthology.orchestra.run.smithi122.stderr:gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.audit.log 2024-04-14T16:15:48.063 INFO:teuthology.orchestra.run.smithi122.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.4.log 2024-04-14T16:15:48.063 INFO:teuthology.orchestra.run.smithi122.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.5.log 2024-04-14T16:15:48.063 INFO:teuthology.orchestra.run.smithi122.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.cephadm.log 2024-04-14T16:15:48.063 INFO:teuthology.orchestra.run.smithi122.stderr:gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.log 2024-04-14T16:15:48.063 INFO:teuthology.orchestra.run.smithi122.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.5.log: 89.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-14T16:15:48.063 INFO:teuthology.orchestra.run.smithi122.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.cephadm.log: 89.9%gzip -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.audit.log.gz -5 2024-04-14T16:15:48.064 INFO:teuthology.orchestra.run.smithi122.stderr: --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-volume.log 2024-04-14T16:15:48.064 INFO:teuthology.orchestra.run.smithi122.stderr: 80.3% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.cephadm.log.gz 2024-04-14T16:15:48.064 INFO:teuthology.orchestra.run.smithi122.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mon.c.log 2024-04-14T16:15:48.064 INFO:teuthology.orchestra.run.smithi122.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-volume.log: 85.6%/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mon.c.log: -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.log.gz 2024-04-14T16:15:48.064 INFO:teuthology.orchestra.run.smithi016.stderr: 91.2% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-volume.log.gz 2024-04-14T16:15:48.065 INFO:teuthology.orchestra.run.smithi027.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-14T16:15:48.066 INFO:teuthology.orchestra.run.smithi027.stderr:: No such file or directory 2024-04-14T16:15:48.066 INFO:teuthology.orchestra.run.smithi027.stderr:gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.audit.log 2024-04-14T16:15:48.066 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.3.log 2024-04-14T16:15:48.067 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.cephadm.log 2024-04-14T16:15:48.068 INFO:teuthology.orchestra.run.smithi027.stderr: 90.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-14T16:15:48.069 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.log 2024-04-14T16:15:48.069 INFO:teuthology.orchestra.run.smithi027.stderr:gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.2.log 2024-04-14T16:15:48.069 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.cephadm.log: /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mgr.b.log 2024-04-14T16:15:48.069 INFO:teuthology.orchestra.run.smithi027.stderr: 82.5% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.cephadm.log.gz 2024-04-14T16:15:48.069 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.2.log: 90.0% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.audit.log.gz 2024-04-14T16:15:48.069 INFO:teuthology.orchestra.run.smithi027.stderr:gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-volume.log 2024-04-14T16:15:48.069 INFO:teuthology.orchestra.run.smithi027.stderr: 85.7% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph.log.gz 2024-04-14T16:15:48.069 INFO:teuthology.orchestra.run.smithi027.stderr:gzip -5 --verbose -- /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mon.b.log 2024-04-14T16:15:48.070 INFO:teuthology.orchestra.run.smithi122.stderr: 91.1% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-volume.log.gz 2024-04-14T16:15:48.072 INFO:teuthology.orchestra.run.smithi027.stderr:/var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mgr.b.log: /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-volume.log: /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mon.b.log: 90.9% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mgr.b.log.gz 2024-04-14T16:15:48.073 INFO:teuthology.orchestra.run.smithi027.stderr: 91.0% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-volume.log.gz 2024-04-14T16:15:48.082 INFO:teuthology.orchestra.run.smithi122.stderr: 92.7% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.5.log.gz 2024-04-14T16:15:48.084 INFO:teuthology.orchestra.run.smithi122.stderr: 92.8% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.4.log.gz 2024-04-14T16:15:48.105 INFO:teuthology.orchestra.run.smithi016.stderr: 93.3% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.1.log.gz 2024-04-14T16:15:48.114 INFO:teuthology.orchestra.run.smithi122.stderr: 92.8% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mon.c.log.gz 2024-04-14T16:15:48.116 INFO:teuthology.orchestra.run.smithi122.stderr: 2024-04-14T16:15:48.116 INFO:teuthology.orchestra.run.smithi122.stderr:real 0m0.069s 2024-04-14T16:15:48.116 INFO:teuthology.orchestra.run.smithi122.stderr:user 0m0.113s 2024-04-14T16:15:48.116 INFO:teuthology.orchestra.run.smithi122.stderr:sys 0m0.027s 2024-04-14T16:15:48.117 INFO:teuthology.orchestra.run.smithi027.stderr: 92.9% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.3.log.gz 2024-04-14T16:15:48.124 INFO:teuthology.orchestra.run.smithi016.stderr: 93.2% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.0.log.gz 2024-04-14T16:15:48.139 INFO:teuthology.orchestra.run.smithi027.stderr: 92.3% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mon.b.log.gz 2024-04-14T16:15:48.141 INFO:teuthology.orchestra.run.smithi016.stderr: 89.6% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mgr.a.log.gz 2024-04-14T16:15:48.145 INFO:teuthology.orchestra.run.smithi027.stderr: 93.4% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-osd.2.log.gz 2024-04-14T16:15:48.148 INFO:teuthology.orchestra.run.smithi027.stderr: 2024-04-14T16:15:48.148 INFO:teuthology.orchestra.run.smithi027.stderr:real 0m0.100s 2024-04-14T16:15:48.148 INFO:teuthology.orchestra.run.smithi027.stderr:user 0m0.225s 2024-04-14T16:15:48.148 INFO:teuthology.orchestra.run.smithi027.stderr:sys 0m0.029s 2024-04-14T16:15:48.280 INFO:teuthology.orchestra.run.smithi016.stderr: 91.0% -- replaced with /var/log/ceph/0c4012e2-fa79-11ee-bc8e-c7b262605968/ceph-mon.a.log.gz 2024-04-14T16:15:48.283 INFO:teuthology.orchestra.run.smithi016.stderr: 2024-04-14T16:15:48.283 INFO:teuthology.orchestra.run.smithi016.stderr:real 0m0.240s 2024-04-14T16:15:48.283 INFO:teuthology.orchestra.run.smithi016.stderr:user 0m0.429s 2024-04-14T16:15:48.283 INFO:teuthology.orchestra.run.smithi016.stderr:sys 0m0.039s 2024-04-14T16:15:48.283 INFO:tasks.cephadm:Archiving logs... 2024-04-14T16:15:48.283 DEBUG:teuthology.misc:Transferring archived files from smithi016:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159/remote/smithi016/log 2024-04-14T16:15:48.284 DEBUG:teuthology.orchestra.run.smithi016:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-14T16:15:48.431 DEBUG:teuthology.misc:Transferring archived files from smithi027:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159/remote/smithi027/log 2024-04-14T16:15:48.432 DEBUG:teuthology.orchestra.run.smithi027:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-14T16:15:48.510 DEBUG:teuthology.misc:Transferring archived files from smithi122:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159/remote/smithi122/log 2024-04-14T16:15:48.511 DEBUG:teuthology.orchestra.run.smithi122:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-14T16:15:48.559 INFO:tasks.cephadm:Removing cluster... 2024-04-14T16:15:48.559 DEBUG:teuthology.orchestra.run.smithi016:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 --force 2024-04-14T16:15:48.747 INFO:teuthology.orchestra.run.smithi016.stdout:Deleting cluster with fsid: 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:15:49.010 DEBUG:teuthology.orchestra.run.smithi027:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 --force 2024-04-14T16:15:49.213 INFO:teuthology.orchestra.run.smithi027.stdout:Deleting cluster with fsid: 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:15:49.472 DEBUG:teuthology.orchestra.run.smithi122:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0c4012e2-fa79-11ee-bc8e-c7b262605968 --force 2024-04-14T16:15:49.662 INFO:teuthology.orchestra.run.smithi122.stdout:Deleting cluster with fsid: 0c4012e2-fa79-11ee-bc8e-c7b262605968 2024-04-14T16:15:49.905 INFO:tasks.cephadm:Removing cephadm ... 2024-04-14T16:15:49.905 DEBUG:teuthology.orchestra.run.smithi016:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-14T16:15:49.921 DEBUG:teuthology.orchestra.run.smithi027:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-14T16:15:49.938 DEBUG:teuthology.orchestra.run.smithi122:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-14T16:15:49.954 INFO:tasks.cephadm:Teardown complete 2024-04-14T16:15:49.955 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-04-14T16:15:49.969 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-14T16:15:49.969 DEBUG:teuthology.orchestra.run.smithi016:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-14T16:15:49.971 DEBUG:teuthology.orchestra.run.smithi027:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-14T16:15:49.981 DEBUG:teuthology.orchestra.run.smithi122:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-14T16:15:50.094 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-14T16:15:50.104 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-14T16:15:50.104 DEBUG:teuthology.orchestra.run.smithi016:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-14T16:15:50.107 DEBUG:teuthology.orchestra.run.smithi027:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-14T16:15:50.109 DEBUG:teuthology.orchestra.run.smithi122:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-14T16:15:50.119 INFO:teuthology.orchestra.run.smithi016.stderr:bash: line 1: ntpq: command not found 2024-04-14T16:15:50.121 INFO:teuthology.orchestra.run.smithi027.stderr:bash: line 1: ntpq: command not found 2024-04-14T16:15:50.122 INFO:teuthology.orchestra.run.smithi016.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-14T16:15:50.122 INFO:teuthology.orchestra.run.smithi016.stdout:=============================================================================== 2024-04-14T16:15:50.123 INFO:teuthology.orchestra.run.smithi016.stdout:^* hv01.front.sepia.ceph.com 3 6 377 40 +1431us[+1431us] +/- 62ms 2024-04-14T16:15:50.123 INFO:teuthology.orchestra.run.smithi016.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 34 -1900us[-1900us] +/- 67ms 2024-04-14T16:15:50.123 INFO:teuthology.orchestra.run.smithi016.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 40 +454us[ +454us] +/- 81ms 2024-04-14T16:15:50.123 INFO:teuthology.orchestra.run.smithi016.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:15:50.123 INFO:teuthology.orchestra.run.smithi122.stderr:bash: line 1: ntpq: command not found 2024-04-14T16:15:50.125 INFO:teuthology.orchestra.run.smithi027.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-14T16:15:50.126 INFO:teuthology.orchestra.run.smithi027.stdout:=============================================================================== 2024-04-14T16:15:50.126 INFO:teuthology.orchestra.run.smithi027.stdout:^* hv01.front.sepia.ceph.com 3 6 377 36 +1428us[+1417us] +/- 62ms 2024-04-14T16:15:50.126 INFO:teuthology.orchestra.run.smithi027.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 37 -1901us[-1913us] +/- 67ms 2024-04-14T16:15:50.126 INFO:teuthology.orchestra.run.smithi027.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 37 +452us[ +441us] +/- 81ms 2024-04-14T16:15:50.126 INFO:teuthology.orchestra.run.smithi027.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:15:50.127 INFO:teuthology.orchestra.run.smithi122.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-14T16:15:50.127 INFO:teuthology.orchestra.run.smithi122.stdout:=============================================================================== 2024-04-14T16:15:50.128 INFO:teuthology.orchestra.run.smithi122.stdout:^* hv01.front.sepia.ceph.com 3 6 377 38 +1433us[+1433us] +/- 62ms 2024-04-14T16:15:50.128 INFO:teuthology.orchestra.run.smithi122.stdout:^+ hv02.front.sepia.ceph.com 3 6 377 38 -1886us[-1885us] +/- 67ms 2024-04-14T16:15:50.128 INFO:teuthology.orchestra.run.smithi122.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 37 +460us[ +460us] +/- 81ms 2024-04-14T16:15:50.128 INFO:teuthology.orchestra.run.smithi122.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-14T16:15:50.128 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-14T16:15:50.138 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-14T16:15:50.138 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-14T16:15:50.147 DEBUG:teuthology.orchestra.run.smithi016:> 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-14T16:15:50.241 DEBUG:teuthology.orchestra.run.smithi027:> 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-14T16:15:50.326 DEBUG:teuthology.orchestra.run.smithi122:> 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-14T16:15:50.398 DEBUG:teuthology.orchestra.run.smithi016:> 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-14T16:15:50.430 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T16:15:50.430 DEBUG:teuthology.orchestra.run.smithi027:> 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-14T16:15:50.464 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T16:15:50.465 DEBUG:teuthology.orchestra.run.smithi122:> 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-14T16:15:50.494 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T16:15:50.494 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-14T16:15:50.504 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-14T16:15:50.521 INFO:teuthology.task.internal:Duration was 968.808965 seconds 2024-04-14T16:15:50.522 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-14T16:15:50.531 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-14T16:15:50.531 DEBUG:teuthology.orchestra.run.smithi016:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-14T16:15:50.533 DEBUG:teuthology.orchestra.run.smithi027:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-14T16:15:50.535 DEBUG:teuthology.orchestra.run.smithi122:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-14T16:15:50.574 INFO:teuthology.orchestra.run.smithi016.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-14T16:15:50.578 INFO:teuthology.orchestra.run.smithi122.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-14T16:15:50.584 INFO:teuthology.orchestra.run.smithi027.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-14T16:15:51.064 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-14T16:15:51.064 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi016.front.sepia.ceph.com 2024-04-14T16:15:51.065 DEBUG:teuthology.orchestra.run.smithi016:> 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-14T16:15:51.085 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi027.front.sepia.ceph.com 2024-04-14T16:15:51.086 DEBUG:teuthology.orchestra.run.smithi027:> 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-14T16:15:51.112 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi122.front.sepia.ceph.com 2024-04-14T16:15:51.112 DEBUG:teuthology.orchestra.run.smithi122:> 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-14T16:15:51.137 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-14T16:15:51.137 DEBUG:teuthology.orchestra.run.smithi016:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-14T16:15:51.139 DEBUG:teuthology.orchestra.run.smithi027:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-14T16:15:51.154 DEBUG:teuthology.orchestra.run.smithi122:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-14T16:15:51.207 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-14T16:15:51.207 DEBUG:teuthology.orchestra.run.smithi016:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-14T16:15:51.209 DEBUG:teuthology.orchestra.run.smithi027:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-14T16:15:51.226 DEBUG:teuthology.orchestra.run.smithi122:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-14T16:15:51.393 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-14T16:15:51.406 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-14T16:15:51.407 DEBUG:teuthology.orchestra.run.smithi016:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-14T16:15:51.434 DEBUG:teuthology.orchestra.run.smithi027:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-14T16:15:51.465 DEBUG:teuthology.orchestra.run.smithi122:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-14T16:15:51.493 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-14T16:15:51.503 DEBUG:teuthology.orchestra.run.smithi016:> 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-14T16:15:51.506 DEBUG:teuthology.orchestra.run.smithi027:> 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-14T16:15:51.508 DEBUG:teuthology.orchestra.run.smithi122:> 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-14T16:15:51.529 INFO:teuthology.orchestra.run.smithi016.stdout:kernel.core_pattern = core 2024-04-14T16:15:51.536 INFO:teuthology.orchestra.run.smithi027.stdout:kernel.core_pattern = core 2024-04-14T16:15:51.558 INFO:teuthology.orchestra.run.smithi122.stdout:kernel.core_pattern = core 2024-04-14T16:15:51.581 DEBUG:teuthology.orchestra.run.smithi016:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-14T16:15:51.606 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T16:15:51.607 DEBUG:teuthology.orchestra.run.smithi027:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-14T16:15:51.626 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T16:15:51.626 DEBUG:teuthology.orchestra.run.smithi122:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-14T16:15:51.640 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-14T16:15:51.640 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-14T16:15:51.653 INFO:teuthology.task.internal:Transferring archived files... 2024-04-14T16:15:51.654 DEBUG:teuthology.misc:Transferring archived files from smithi016:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159/remote/smithi016 2024-04-14T16:15:51.654 DEBUG:teuthology.orchestra.run.smithi016:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-14T16:15:51.699 DEBUG:teuthology.misc:Transferring archived files from smithi027:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159/remote/smithi027 2024-04-14T16:15:51.700 DEBUG:teuthology.orchestra.run.smithi027:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-14T16:15:51.743 DEBUG:teuthology.misc:Transferring archived files from smithi122:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159/remote/smithi122 2024-04-14T16:15:51.743 DEBUG:teuthology.orchestra.run.smithi122:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-14T16:15:51.781 INFO:teuthology.task.internal:Removing archive directory... 2024-04-14T16:15:51.781 DEBUG:teuthology.orchestra.run.smithi016:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-14T16:15:51.784 DEBUG:teuthology.orchestra.run.smithi027:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-14T16:15:51.787 DEBUG:teuthology.orchestra.run.smithi122:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-14T16:15:51.829 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-14T16:15:51.841 INFO:teuthology.task.internal:Not uploading archives. 2024-04-14T16:15:51.841 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-14T16:15:51.854 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-14T16:15:51.855 DEBUG:teuthology.orchestra.run.smithi016:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-14T16:15:51.857 DEBUG:teuthology.orchestra.run.smithi027:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-14T16:15:51.862 DEBUG:teuthology.orchestra.run.smithi122:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-14T16:15:51.869 INFO:teuthology.orchestra.run.smithi016.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 14 16:15 /home/ubuntu/cephtest 2024-04-14T16:15:51.872 INFO:teuthology.orchestra.run.smithi027.stdout: 265306 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 14 16:15 /home/ubuntu/cephtest 2024-04-14T16:15:51.884 INFO:teuthology.orchestra.run.smithi122.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 14 16:15 /home/ubuntu/cephtest 2024-04-14T16:15:51.885 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-14T16:15:51.895 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-14T16:15:51.917 INFO:teuthology.nuke:Checking targets against current locks 2024-04-14T16:15:51.937 DEBUG:teuthology.nuke:shortname: smithi016 2024-04-14T16:15:51.937 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-14T16:15:51.960 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi016.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159', '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-14 15:49:07.169812', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJxjFudNhF057/mo78NbBSDGf0+/HjWORSfeDHvN/8gHf0XMMptm26fGSc/GnQHqKYejumKdIzM/DCWdC8cEi84='} 2024-04-14T16:15:51.964 DEBUG:teuthology.nuke:shortname: smithi027 2024-04-14T16:15:51.964 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-14T16:15:51.986 DEBUG:teuthology.nuke:shortname: smithi122 2024-04-14T16:15:51.987 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-14T16:15:51.991 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi027.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159', '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-14 15:49:07.168054', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFE+nc2i2Vx42/1dgo6pyngSKdKxDRdecgVi58MWGw+tdzZAPFkOo9rfLvERnwAn3pzPgid0Gov0BD3lC/BTXKo='} 2024-04-14T16:15:52.012 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi122.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-08_20:08:14-orch-main-distro-default-smithi/7646159', '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-14 15:49:07.166041', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEkJPfQhre4oTK82d2Tx34VdJ+z+qdF3KeeZT8PyyKAXeqk94R5zacGLliIV/F3IW8ccEx2YNFgU0iX8MOxBtIg='} 2024-04-14T16:15:52.032 INFO:teuthology.orchestra.console.smithi016:Power off 2024-04-14T16:15:52.032 DEBUG:teuthology.orchestra.console.smithi016:pexpect command: ipmitool -H smithi016.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-14T16:15:52.059 DEBUG:teuthology.orchestra.console.smithi016:power off output: Chassis Power Control: Down/Off 2024-04-14T16:15:52.060 DEBUG:teuthology.orchestra.console.smithi016:pexpect command: ipmitool -H smithi016.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T16:15:52.082 INFO:teuthology.orchestra.console.smithi027:Power off 2024-04-14T16:15:52.083 DEBUG:teuthology.orchestra.console.smithi027:pexpect command: ipmitool -H smithi027.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-14T16:15:52.100 DEBUG:teuthology.orchestra.console.smithi016:check power output: Chassis Power is on 2024-04-14T16:15:52.114 DEBUG:teuthology.orchestra.console.smithi027:power off output: Chassis Power Control: Down/Off 2024-04-14T16:15:52.114 DEBUG:teuthology.orchestra.console.smithi027:pexpect command: ipmitool -H smithi027.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T16:15:52.143 INFO:teuthology.orchestra.console.smithi122:Power off 2024-04-14T16:15:52.143 DEBUG:teuthology.orchestra.console.smithi122:pexpect command: ipmitool -H smithi122.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-14T16:15:52.154 DEBUG:teuthology.orchestra.console.smithi027:check power output: Chassis Power is on 2024-04-14T16:15:52.167 DEBUG:teuthology.orchestra.console.smithi122:power off output: Chassis Power Control: Down/Off 2024-04-14T16:15:52.168 DEBUG:teuthology.orchestra.console.smithi122:pexpect command: ipmitool -H smithi122.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T16:15:52.192 DEBUG:teuthology.orchestra.console.smithi122:check power output: Chassis Power is on 2024-04-14T16:15:56.102 DEBUG:teuthology.orchestra.console.smithi016:pexpect command: ipmitool -H smithi016.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T16:15:56.155 DEBUG:teuthology.orchestra.console.smithi027:pexpect command: ipmitool -H smithi027.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T16:15:56.193 DEBUG:teuthology.orchestra.console.smithi122:pexpect command: ipmitool -H smithi122.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T16:15:56.212 DEBUG:teuthology.orchestra.console.smithi016:check power output: Chassis Power is on 2024-04-14T16:15:56.265 DEBUG:teuthology.orchestra.console.smithi027:check power output: Chassis Power is on 2024-04-14T16:15:56.304 DEBUG:teuthology.orchestra.console.smithi122:check power output: Chassis Power is on 2024-04-14T16:16:00.214 DEBUG:teuthology.orchestra.console.smithi016:pexpect command: ipmitool -H smithi016.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T16:16:00.266 DEBUG:teuthology.orchestra.console.smithi027:pexpect command: ipmitool -H smithi027.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T16:16:00.305 DEBUG:teuthology.orchestra.console.smithi122:pexpect command: ipmitool -H smithi122.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-14T16:16:00.326 DEBUG:teuthology.orchestra.console.smithi016:check power output: Chassis Power is off 2024-04-14T16:16:00.381 DEBUG:teuthology.orchestra.console.smithi027:check power output: Chassis Power is off 2024-04-14T16:16:00.423 DEBUG:teuthology.orchestra.console.smithi122:check power output: Chassis Power is off 2024-04-14T16:16:00.428 INFO:teuthology.orchestra.console.smithi016:Power off completed 2024-04-14T16:16:00.482 INFO:teuthology.orchestra.console.smithi027:Power off completed 2024-04-14T16:16:00.523 INFO:teuthology.orchestra.console.smithi122:Power off completed 2024-04-14T16:16:00.629 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/off mon_election/connectivity task/test_host_drain} duration: 968.8089654445648 failure_reason: '"2024-04-14T16:14:05.877337+0000 mon.a (mon.0) 617 : cluster [WRN] Health check failed: 1 osds down (OSD_DOWN)" in cluster log' flavor: default owner: scheduled_teuthology@teuthology success: false 2024-04-14T16:16:00.629 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-14T16:16:00.724 INFO:teuthology.run:FAIL