2024-09-13T12:35:43.999 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-13T12:35:44.022 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-13T12:35:44.117 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi/7903512 branch: wip-aclamk-cbt-combined description: rados/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} email: akupczyk@redhat.com first_in_suite: false job_id: '7903512' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: wip-aclamk-cbt-combined ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN - mons down - mon down - out of quorum - CEPHADM_STRAY_HOST - CEPHADM_STRAY_DAEMON - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: d58f73069a8157a9ace12a0247ee3e8497707ea9 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: d58f73069a8157a9ace12a0247ee3e8497707ea9 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: wip-aclamk-cbt-combined sha1: d58f73069a8157a9ace12a0247ee3e8497707ea9 owner: scheduled_akupczyk@teuthology priority: 160 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 4159 sha1: d58f73069a8157a9ace12a0247ee3e8497707ea9 sleep_before_teardown: 0 subset: 682/13280 suite: rados suite_branch: wip-aclamk-cbt-combined suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_d58f73069a8157a9ace12a0247ee3e8497707ea9/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: d58f73069a8157a9ace12a0247ee3e8497707ea9 targets: smithi070.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCHAG+z7ZvEUgTPCnDDbVbHj1r3TrLv/pBWXLSj/f/ufmxIqSe4ftIOd/litYpLOuZoAuklixhL0HQ5zGd2rTnw= smithi086.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHhD6kSXElvGhi2hvLPYTGc2bMR/HXua2Ti2ggMG2XjOz4zCUxiGxXJT9xc73lb5b3+ZL4wCsbNIWEPU4oQC2ww= smithi105.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCC9dJA9blUL1+WSBx8TFsRigbH5e78Cm8yCGUDiZNprOlICGz0crcvFN877vqsvWVGW7Iz/9V6EtJ6f+q+uoHI= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install nvmetcli nvme-cli -y - 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: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-13_09:43:51 tube: smithi user: akupczyk verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-09-13T12:35:44.117 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_d58f73069a8157a9ace12a0247ee3e8497707ea9/qa; will attempt to use it 2024-09-13T12:35:44.118 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_d58f73069a8157a9ace12a0247ee3e8497707ea9/qa/tasks 2024-09-13T12:35:44.118 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-13T12:35:44.120 INFO:teuthology.task.internal:Checking packages... 2024-09-13T12:35:44.143 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'd58f73069a8157a9ace12a0247ee3e8497707ea9' 2024-09-13T12:35:44.143 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-13T12:35:44.143 INFO:teuthology.packaging:ref: None 2024-09-13T12:35:44.143 INFO:teuthology.packaging:tag: None 2024-09-13T12:35:44.144 INFO:teuthology.packaging:branch: wip-aclamk-cbt-combined 2024-09-13T12:35:44.144 INFO:teuthology.packaging:sha1: d58f73069a8157a9ace12a0247ee3e8497707ea9 2024-09-13T12:35:44.144 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-aclamk-cbt-combined 2024-09-13T12:35:44.299 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-4697.gd58f7306 2024-09-13T12:35:44.300 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-13T12:35:44.308 INFO:teuthology.task.internal:no buildpackages task found 2024-09-13T12:35:44.308 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-13T12:35:44.314 INFO:teuthology.task.internal:Saving configuration 2024-09-13T12:35:44.327 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-13T12:35:44.332 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-13T12:35:44.366 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi070.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi/7903512', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-13 12:30:44.952879', 'locked_by': 'scheduled_akupczyk@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCHAG+z7ZvEUgTPCnDDbVbHj1r3TrLv/pBWXLSj/f/ufmxIqSe4ftIOd/litYpLOuZoAuklixhL0HQ5zGd2rTnw='} 2024-09-13T12:35:44.394 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi086.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi/7903512', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-13 12:30:44.954634', 'locked_by': 'scheduled_akupczyk@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHhD6kSXElvGhi2hvLPYTGc2bMR/HXua2Ti2ggMG2XjOz4zCUxiGxXJT9xc73lb5b3+ZL4wCsbNIWEPU4oQC2ww='} 2024-09-13T12:35:44.424 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi105.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi/7903512', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-13 12:30:44.950941', 'locked_by': 'scheduled_akupczyk@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCC9dJA9blUL1+WSBx8TFsRigbH5e78Cm8yCGUDiZNprOlICGz0crcvFN877vqsvWVGW7Iz/9V6EtJ6f+q+uoHI='} 2024-09-13T12:35:44.424 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-13T12:35:44.433 INFO:teuthology.task.internal:roles: ubuntu@smithi070.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-09-13T12:35:44.433 INFO:teuthology.task.internal:roles: ubuntu@smithi086.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-09-13T12:35:44.433 INFO:teuthology.task.internal:roles: ubuntu@smithi105.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-09-13T12:35:44.433 INFO:teuthology.run_tasks:Running task console_log... 2024-09-13T12:35:44.544 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fdd9c863be0>, signals=[15]) 2024-09-13T12:35:44.544 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-13T12:35:44.550 INFO:teuthology.task.internal:Opening connections... 2024-09-13T12:35:44.550 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi070.front.sepia.ceph.com 2024-09-13T12:35:44.551 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi070.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:35:44.636 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi086.front.sepia.ceph.com 2024-09-13T12:35:44.636 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi086.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:35:44.736 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi105.front.sepia.ceph.com 2024-09-13T12:35:44.737 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:35:44.833 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-13T12:35:44.839 DEBUG:teuthology.orchestra.run.smithi070:> uname -m 2024-09-13T12:35:44.858 INFO:teuthology.orchestra.run.smithi070.stdout:x86_64 2024-09-13T12:35:44.859 DEBUG:teuthology.orchestra.run.smithi070:> cat /etc/os-release 2024-09-13T12:35:44.916 INFO:teuthology.orchestra.run.smithi070.stdout:NAME="CentOS Stream" 2024-09-13T12:35:44.917 INFO:teuthology.orchestra.run.smithi070.stdout:VERSION="9" 2024-09-13T12:35:44.917 INFO:teuthology.orchestra.run.smithi070.stdout:ID="centos" 2024-09-13T12:35:44.917 INFO:teuthology.orchestra.run.smithi070.stdout:ID_LIKE="rhel fedora" 2024-09-13T12:35:44.917 INFO:teuthology.orchestra.run.smithi070.stdout:VERSION_ID="9" 2024-09-13T12:35:44.917 INFO:teuthology.orchestra.run.smithi070.stdout:PLATFORM_ID="platform:el9" 2024-09-13T12:35:44.917 INFO:teuthology.orchestra.run.smithi070.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-13T12:35:44.917 INFO:teuthology.orchestra.run.smithi070.stdout:ANSI_COLOR="0;31" 2024-09-13T12:35:44.917 INFO:teuthology.orchestra.run.smithi070.stdout:LOGO="fedora-logo-icon" 2024-09-13T12:35:44.917 INFO:teuthology.orchestra.run.smithi070.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-13T12:35:44.917 INFO:teuthology.orchestra.run.smithi070.stdout:HOME_URL="https://centos.org/" 2024-09-13T12:35:44.917 INFO:teuthology.orchestra.run.smithi070.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-13T12:35:44.918 INFO:teuthology.orchestra.run.smithi070.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-13T12:35:44.918 INFO:teuthology.orchestra.run.smithi070.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-13T12:35:44.918 INFO:teuthology.lock.ops:Updating smithi070.front.sepia.ceph.com on lock server 2024-09-13T12:35:44.944 DEBUG:teuthology.orchestra.run.smithi086:> uname -m 2024-09-13T12:35:44.963 INFO:teuthology.orchestra.run.smithi086.stdout:x86_64 2024-09-13T12:35:44.963 DEBUG:teuthology.orchestra.run.smithi086:> cat /etc/os-release 2024-09-13T12:35:45.021 INFO:teuthology.orchestra.run.smithi086.stdout:NAME="CentOS Stream" 2024-09-13T12:35:45.021 INFO:teuthology.orchestra.run.smithi086.stdout:VERSION="9" 2024-09-13T12:35:45.022 INFO:teuthology.orchestra.run.smithi086.stdout:ID="centos" 2024-09-13T12:35:45.022 INFO:teuthology.orchestra.run.smithi086.stdout:ID_LIKE="rhel fedora" 2024-09-13T12:35:45.022 INFO:teuthology.orchestra.run.smithi086.stdout:VERSION_ID="9" 2024-09-13T12:35:45.022 INFO:teuthology.orchestra.run.smithi086.stdout:PLATFORM_ID="platform:el9" 2024-09-13T12:35:45.022 INFO:teuthology.orchestra.run.smithi086.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-13T12:35:45.023 INFO:teuthology.orchestra.run.smithi086.stdout:ANSI_COLOR="0;31" 2024-09-13T12:35:45.023 INFO:teuthology.orchestra.run.smithi086.stdout:LOGO="fedora-logo-icon" 2024-09-13T12:35:45.023 INFO:teuthology.orchestra.run.smithi086.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-13T12:35:45.023 INFO:teuthology.orchestra.run.smithi086.stdout:HOME_URL="https://centos.org/" 2024-09-13T12:35:45.023 INFO:teuthology.orchestra.run.smithi086.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-13T12:35:45.024 INFO:teuthology.orchestra.run.smithi086.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-13T12:35:45.024 INFO:teuthology.orchestra.run.smithi086.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-13T12:35:45.024 INFO:teuthology.lock.ops:Updating smithi086.front.sepia.ceph.com on lock server 2024-09-13T12:35:45.052 DEBUG:teuthology.orchestra.run.smithi105:> uname -m 2024-09-13T12:35:45.072 INFO:teuthology.orchestra.run.smithi105.stdout:x86_64 2024-09-13T12:35:45.072 DEBUG:teuthology.orchestra.run.smithi105:> cat /etc/os-release 2024-09-13T12:35:45.130 INFO:teuthology.orchestra.run.smithi105.stdout:NAME="CentOS Stream" 2024-09-13T12:35:45.130 INFO:teuthology.orchestra.run.smithi105.stdout:VERSION="9" 2024-09-13T12:35:45.130 INFO:teuthology.orchestra.run.smithi105.stdout:ID="centos" 2024-09-13T12:35:45.130 INFO:teuthology.orchestra.run.smithi105.stdout:ID_LIKE="rhel fedora" 2024-09-13T12:35:45.130 INFO:teuthology.orchestra.run.smithi105.stdout:VERSION_ID="9" 2024-09-13T12:35:45.130 INFO:teuthology.orchestra.run.smithi105.stdout:PLATFORM_ID="platform:el9" 2024-09-13T12:35:45.131 INFO:teuthology.orchestra.run.smithi105.stdout:PRETTY_NAME="CentOS Stream 9" 2024-09-13T12:35:45.131 INFO:teuthology.orchestra.run.smithi105.stdout:ANSI_COLOR="0;31" 2024-09-13T12:35:45.131 INFO:teuthology.orchestra.run.smithi105.stdout:LOGO="fedora-logo-icon" 2024-09-13T12:35:45.131 INFO:teuthology.orchestra.run.smithi105.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-09-13T12:35:45.131 INFO:teuthology.orchestra.run.smithi105.stdout:HOME_URL="https://centos.org/" 2024-09-13T12:35:45.131 INFO:teuthology.orchestra.run.smithi105.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-09-13T12:35:45.131 INFO:teuthology.orchestra.run.smithi105.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-09-13T12:35:45.131 INFO:teuthology.orchestra.run.smithi105.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-09-13T12:35:45.132 INFO:teuthology.lock.ops:Updating smithi105.front.sepia.ceph.com on lock server 2024-09-13T12:35:45.159 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-13T12:35:45.169 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-13T12:35:45.175 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-13T12:35:45.175 DEBUG:teuthology.orchestra.run.smithi070:> test '!' -e /home/ubuntu/cephtest 2024-09-13T12:35:45.178 DEBUG:teuthology.orchestra.run.smithi086:> test '!' -e /home/ubuntu/cephtest 2024-09-13T12:35:45.181 DEBUG:teuthology.orchestra.run.smithi105:> test '!' -e /home/ubuntu/cephtest 2024-09-13T12:35:45.198 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-13T12:35:45.205 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-13T12:35:45.206 DEBUG:teuthology.orchestra.run.smithi070:> test -z $(ls -A /var/lib/ceph) 2024-09-13T12:35:45.236 DEBUG:teuthology.orchestra.run.smithi086:> test -z $(ls -A /var/lib/ceph) 2024-09-13T12:35:45.239 DEBUG:teuthology.orchestra.run.smithi105:> test -z $(ls -A /var/lib/ceph) 2024-09-13T12:35:45.265 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-13T12:35:45.370 INFO:teuthology.run_tasks:Running task kernel... 2024-09-13T12:35:45.384 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-13T12:35:45.385 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-09-13T12:35:45.385 DEBUG:teuthology.orchestra.run.smithi070:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-13T12:35:45.386 DEBUG:teuthology.orchestra.run.smithi086:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-13T12:35:45.386 DEBUG:teuthology.orchestra.run.smithi105:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-13T12:35:45.402 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T12:35:45.403 DEBUG:teuthology.orchestra.run.smithi086:> uname -r 2024-09-13T12:35:45.404 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T12:35:45.404 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T12:35:45.404 DEBUG:teuthology.orchestra.run.smithi105:> uname -r 2024-09-13T12:35:45.405 DEBUG:teuthology.orchestra.run.smithi070:> uname -r 2024-09-13T12:35:45.460 INFO:teuthology.orchestra.run.smithi086.stdout:5.14.0-503.el9.x86_64 2024-09-13T12:35:45.461 INFO:teuthology.task.kernel:Running kernel on smithi086: 5.14.0-503.el9.x86_64 2024-09-13T12:35:45.461 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum install -y kernel 2024-09-13T12:35:45.462 INFO:teuthology.orchestra.run.smithi070.stdout:5.14.0-503.el9.x86_64 2024-09-13T12:35:45.463 INFO:teuthology.orchestra.run.smithi105.stdout:5.14.0-503.el9.x86_64 2024-09-13T12:35:45.463 INFO:teuthology.task.kernel:Running kernel on smithi070: 5.14.0-503.el9.x86_64 2024-09-13T12:35:45.463 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum install -y kernel 2024-09-13T12:35:45.463 INFO:teuthology.task.kernel:Running kernel on smithi105: 5.14.0-503.el9.x86_64 2024-09-13T12:35:45.463 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum install -y kernel 2024-09-13T12:35:49.044 INFO:teuthology.orchestra.run.smithi086.stdout:CentOS Stream 9 - BaseOS 4.6 MB/s | 8.2 MB 00:01 2024-09-13T12:35:49.477 INFO:teuthology.orchestra.run.smithi070.stdout:CentOS Stream 9 - BaseOS 3.8 MB/s | 8.2 MB 00:02 2024-09-13T12:35:50.140 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - BaseOS 2.7 MB/s | 8.2 MB 00:03 2024-09-13T12:35:51.419 INFO:teuthology.orchestra.run.smithi070.stdout:CentOS Stream 9 - AppStream 25 MB/s | 20 MB 00:00 2024-09-13T12:35:51.907 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - AppStream 31 MB/s | 20 MB 00:00 2024-09-13T12:35:57.277 INFO:teuthology.orchestra.run.smithi070.stdout:CentOS Stream 9 - CRB 3.2 MB/s | 6.5 MB 00:02 2024-09-13T12:35:58.791 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - CRB 2.1 MB/s | 6.5 MB 00:03 2024-09-13T12:35:59.094 INFO:teuthology.orchestra.run.smithi070.stdout:CentOS Stream 9 - Extras packages 31 kB/s | 19 kB 00:00 2024-09-13T12:36:00.224 INFO:teuthology.orchestra.run.smithi070.stdout:Extra Packages for Enterprise Linux 23 MB/s | 23 MB 00:00 2024-09-13T12:36:00.292 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - Extras packages 64 kB/s | 19 kB 00:00 2024-09-13T12:36:00.653 INFO:teuthology.orchestra.run.smithi086.stdout:CentOS Stream 9 - AppStream 1.9 MB/s | 20 MB 00:10 2024-09-13T12:36:01.672 INFO:teuthology.orchestra.run.smithi105.stdout:Extra Packages for Enterprise Linux 18 MB/s | 23 MB 00:01 2024-09-13T12:36:05.712 INFO:teuthology.orchestra.run.smithi070.stdout:lab-extras 43 kB/s | 1.7 kB 00:00 2024-09-13T12:36:07.685 INFO:teuthology.orchestra.run.smithi070.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-13T12:36:07.685 INFO:teuthology.orchestra.run.smithi070.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-13T12:36:07.792 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:36:07.809 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:36:07.809 INFO:teuthology.orchestra.run.smithi070.stdout: Package Architecture Version Repository Size 2024-09-13T12:36:07.809 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:36:07.809 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:36:07.809 INFO:teuthology.orchestra.run.smithi070.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-13T12:36:07.809 INFO:teuthology.orchestra.run.smithi070.stdout:Installing dependencies: 2024-09-13T12:36:07.809 INFO:teuthology.orchestra.run.smithi070.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-13T12:36:07.809 INFO:teuthology.orchestra.run.smithi070.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-13T12:36:07.810 INFO:teuthology.orchestra.run.smithi070.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-13T12:36:07.810 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:36:07.810 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:36:07.810 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:36:07.810 INFO:teuthology.orchestra.run.smithi070.stdout:Install 4 Packages 2024-09-13T12:36:07.810 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:36:07.810 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 79 M 2024-09-13T12:36:07.810 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 126 M 2024-09-13T12:36:07.810 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:36:07.995 INFO:teuthology.orchestra.run.smithi086.stdout:CentOS Stream 9 - CRB 1.8 MB/s | 6.5 MB 00:03 2024-09-13T12:36:08.580 INFO:teuthology.orchestra.run.smithi070.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 41 kB/s | 23 kB 00:00 2024-09-13T12:36:08.602 INFO:teuthology.orchestra.run.smithi105.stdout:lab-extras 1.1 kB/s | 1.7 kB 00:01 2024-09-13T12:36:09.530 INFO:teuthology.orchestra.run.smithi070.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 10 MB/s | 16 MB 00:01 2024-09-13T12:36:09.862 INFO:teuthology.orchestra.run.smithi086.stdout:CentOS Stream 9 - Extras packages 32 kB/s | 19 kB 00:00 2024-09-13T12:36:10.055 INFO:teuthology.orchestra.run.smithi070.stdout:(3/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 17 MB/s | 35 MB 00:02 2024-09-13T12:36:10.600 INFO:teuthology.orchestra.run.smithi105.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-13T12:36:10.600 INFO:teuthology.orchestra.run.smithi105.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-13T12:36:10.704 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:36:10.720 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:36:10.720 INFO:teuthology.orchestra.run.smithi105.stdout: Package Architecture Version Repository Size 2024-09-13T12:36:10.720 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:36:10.720 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:36:10.720 INFO:teuthology.orchestra.run.smithi105.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-13T12:36:10.720 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-09-13T12:36:10.720 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-13T12:36:10.720 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-13T12:36:10.720 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-13T12:36:10.720 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:36:10.720 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:36:10.721 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:36:10.721 INFO:teuthology.orchestra.run.smithi105.stdout:Install 4 Packages 2024-09-13T12:36:10.721 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:36:10.721 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 79 M 2024-09-13T12:36:10.721 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 126 M 2024-09-13T12:36:10.721 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:36:10.947 INFO:teuthology.orchestra.run.smithi070.stdout:(4/4): kernel-modules-core-5.14.0-505.el9.x86_6 12 MB/s | 29 MB 00:02 2024-09-13T12:36:10.947 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:36:10.948 INFO:teuthology.orchestra.run.smithi070.stdout:Total 25 MB/s | 79 MB 00:03 2024-09-13T12:36:10.970 INFO:teuthology.orchestra.run.smithi105.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 114 kB/s | 23 kB 00:00 2024-09-13T12:36:11.634 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:36:11.649 INFO:teuthology.orchestra.run.smithi086.stdout:Extra Packages for Enterprise Linux 14 MB/s | 23 MB 00:01 2024-09-13T12:36:11.994 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:36:11.995 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:36:12.803 INFO:teuthology.orchestra.run.smithi105.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 7.7 MB/s | 16 MB 00:02 2024-09-13T12:36:12.959 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:36:12.960 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:36:13.795 INFO:teuthology.orchestra.run.smithi105.stdout:(3/4): kernel-modules-core-5.14.0-505.el9.x86_6 10 MB/s | 29 MB 00:02 2024-09-13T12:36:14.104 INFO:teuthology.orchestra.run.smithi105.stdout:(4/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 10 MB/s | 35 MB 00:03 2024-09-13T12:36:14.104 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:36:14.104 INFO:teuthology.orchestra.run.smithi105.stdout:Total 23 MB/s | 79 MB 00:03 2024-09-13T12:36:14.781 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:36:15.139 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:36:15.139 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:36:15.417 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:36:16.067 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-13T12:36:16.105 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:36:16.106 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:36:16.147 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T12:36:17.122 INFO:teuthology.orchestra.run.smithi086.stdout:lab-extras 29 kB/s | 1.7 kB 00:00 2024-09-13T12:36:18.546 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:36:18.960 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T12:36:19.092 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T12:36:19.137 INFO:teuthology.orchestra.run.smithi086.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-09-13T12:36:19.137 INFO:teuthology.orchestra.run.smithi086.stdout:Package kernel-5.14.0-503.el9.x86_64 is already installed. 2024-09-13T12:36:19.186 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-13T12:36:19.233 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:36:19.249 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:36:19.249 INFO:teuthology.orchestra.run.smithi086.stdout: Package Architecture Version Repository Size 2024-09-13T12:36:19.249 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:36:19.249 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:36:19.249 INFO:teuthology.orchestra.run.smithi086.stdout: kernel x86_64 5.14.0-505.el9 baseos 23 k 2024-09-13T12:36:19.249 INFO:teuthology.orchestra.run.smithi086.stdout:Installing dependencies: 2024-09-13T12:36:19.249 INFO:teuthology.orchestra.run.smithi086.stdout: kernel-core x86_64 5.14.0-505.el9 baseos 16 M 2024-09-13T12:36:19.249 INFO:teuthology.orchestra.run.smithi086.stdout: kernel-modules x86_64 5.14.0-505.el9 baseos 35 M 2024-09-13T12:36:19.249 INFO:teuthology.orchestra.run.smithi086.stdout: kernel-modules-core x86_64 5.14.0-505.el9 baseos 29 M 2024-09-13T12:36:19.250 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:36:19.250 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:36:19.250 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:36:19.250 INFO:teuthology.orchestra.run.smithi086.stdout:Install 4 Packages 2024-09-13T12:36:19.250 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:36:19.250 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 79 M 2024-09-13T12:36:19.250 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 126 M 2024-09-13T12:36:19.250 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:36:19.270 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T12:36:19.391 INFO:teuthology.orchestra.run.smithi086.stdout:(1/4): kernel-5.14.0-505.el9.x86_64.rpm 240 kB/s | 23 kB 00:00 2024-09-13T12:36:20.657 INFO:teuthology.orchestra.run.smithi086.stdout:(2/4): kernel-core-5.14.0-505.el9.x86_64.rpm 11 MB/s | 16 MB 00:01 2024-09-13T12:36:21.882 INFO:teuthology.orchestra.run.smithi086.stdout:(3/4): kernel-modules-core-5.14.0-505.el9.x86_6 11 MB/s | 29 MB 00:02 2024-09-13T12:36:22.064 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T12:36:22.183 INFO:teuthology.orchestra.run.smithi086.stdout:(4/4): kernel-modules-5.14.0-505.el9.x86_64.rpm 12 MB/s | 35 MB 00:02 2024-09-13T12:36:22.183 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:36:22.183 INFO:teuthology.orchestra.run.smithi086.stdout:Total 27 MB/s | 79 MB 00:02 2024-09-13T12:36:22.207 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T12:36:22.862 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:36:23.196 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:36:23.196 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:36:23.946 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T12:36:23.992 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:36:24.161 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:36:24.162 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:36:26.635 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:36:27.022 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T12:36:27.058 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:36:27.378 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : kernel-modules-core-5.14.0-505.el9.x86_64 1/4 2024-09-13T12:36:27.458 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T12:36:28.830 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:36:30.257 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T12:36:30.386 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T12:36:32.018 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:36:35.192 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T12:36:35.228 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : kernel-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:36:40.042 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:37:06.984 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:37:07.025 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:37:07.360 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:37:07.360 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-13T12:37:07.360 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T12:37:07.361 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T12:37:08.166 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:37:08.167 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:37:08.167 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:37:08.167 INFO:teuthology.orchestra.run.smithi070.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-13T12:37:08.167 INFO:teuthology.orchestra.run.smithi070.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-13T12:37:08.167 INFO:teuthology.orchestra.run.smithi070.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-13T12:37:08.167 INFO:teuthology.orchestra.run.smithi070.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-13T12:37:08.167 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:37:08.167 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:37:08.514 DEBUG:teuthology.orchestra.run.smithi070:> rpm -q kernel | sort -rV | head -n 1 2024-09-13T12:37:08.599 INFO:teuthology.orchestra.run.smithi070.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-13T12:37:08.600 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-13T12:37:08.600 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-13T12:37:08.600 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-13T12:37:08.600 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-13T12:37:08.600 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-13T12:37:08.600 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi070.front.sepia.ceph.com, path=None, version=distro) 2024-09-13T12:37:08.601 DEBUG:teuthology.orchestra.run.smithi070:> rpm -q kernel | sort -rV | head -n 1 2024-09-13T12:37:08.660 INFO:teuthology.orchestra.run.smithi070.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-13T12:37:08.661 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-13T12:37:08.661 DEBUG:teuthology.orchestra.run.smithi070:> sudo rpm -qi grub2-tools 2024-09-13T12:37:08.692 INFO:teuthology.orchestra.run.smithi070.stdout:Name : grub2-tools 2024-09-13T12:37:08.692 INFO:teuthology.orchestra.run.smithi070.stdout:Epoch : 1 2024-09-13T12:37:08.693 INFO:teuthology.orchestra.run.smithi070.stdout:Version : 2.06 2024-09-13T12:37:08.693 INFO:teuthology.orchestra.run.smithi070.stdout:Release : 82.el9 2024-09-13T12:37:08.693 INFO:teuthology.orchestra.run.smithi070.stdout:Architecture: x86_64 2024-09-13T12:37:08.693 INFO:teuthology.orchestra.run.smithi070.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-13T12:37:08.693 INFO:teuthology.orchestra.run.smithi070.stdout:Group : Unspecified 2024-09-13T12:37:08.693 INFO:teuthology.orchestra.run.smithi070.stdout:Size : 8274670 2024-09-13T12:37:08.693 INFO:teuthology.orchestra.run.smithi070.stdout:License : GPLv3+ 2024-09-13T12:37:08.693 INFO:teuthology.orchestra.run.smithi070.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-13T12:37:08.693 INFO:teuthology.orchestra.run.smithi070.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-13T12:37:08.693 INFO:teuthology.orchestra.run.smithi070.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-13T12:37:08.693 INFO:teuthology.orchestra.run.smithi070.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-13T12:37:08.693 INFO:teuthology.orchestra.run.smithi070.stdout:Packager : builder@centos.org 2024-09-13T12:37:08.694 INFO:teuthology.orchestra.run.smithi070.stdout:Vendor : CentOS 2024-09-13T12:37:08.694 INFO:teuthology.orchestra.run.smithi070.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-13T12:37:08.694 INFO:teuthology.orchestra.run.smithi070.stdout:Summary : Support tools for GRUB. 2024-09-13T12:37:08.694 INFO:teuthology.orchestra.run.smithi070.stdout:Description : 2024-09-13T12:37:08.694 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:37:08.694 INFO:teuthology.orchestra.run.smithi070.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-13T12:37:08.694 INFO:teuthology.orchestra.run.smithi070.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-13T12:37:08.694 INFO:teuthology.orchestra.run.smithi070.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-13T12:37:08.694 INFO:teuthology.orchestra.run.smithi070.stdout:hardware devices. 2024-09-13T12:37:08.694 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:37:08.694 INFO:teuthology.orchestra.run.smithi070.stdout:This subpackage provides tools for support of all platforms. 2024-09-13T12:37:08.695 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-13T12:37:08.695 INFO:teuthology.task.kernel:Updating grub on smithi070 to boot 5.14.0-505.el9.x86_64 2024-09-13T12:37:08.695 DEBUG:teuthology.orchestra.run.smithi070:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-13T12:37:09.359 INFO:teuthology.orchestra.run.smithi070.stderr:Generating grub configuration file ... 2024-09-13T12:37:09.995 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:37:10.035 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:37:10.368 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:37:10.369 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-13T12:37:10.369 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T12:37:10.369 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T12:37:10.653 INFO:teuthology.orchestra.run.smithi070.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-13T12:37:10.681 INFO:teuthology.orchestra.run.smithi070.stderr:done 2024-09-13T12:37:10.683 DEBUG:teuthology.orchestra.run.smithi070:> mktemp 2024-09-13T12:37:10.699 INFO:teuthology.orchestra.run.smithi070.stdout:/tmp/tmp.Z4vTk0s0iN 2024-09-13T12:37:10.700 DEBUG:teuthology.orchestra.run.smithi070:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.Z4vTk0s0iN 2024-09-13T12:37:10.766 DEBUG:teuthology.orchestra.run.smithi070:> sudo chmod 0666 /tmp/tmp.Z4vTk0s0iN 2024-09-13T12:37:10.909 DEBUG:teuthology.orchestra.remote:smithi070:/tmp/tmp.Z4vTk0s0iN is 6KB 2024-09-13T12:37:10.958 DEBUG:teuthology.orchestra.run.smithi070:> rm -fr /tmp/tmp.Z4vTk0s0iN 2024-09-13T12:37:10.973 DEBUG:teuthology.orchestra.run.smithi070:> sudo /bin/ls /boot/loader/entries || true 2024-09-13T12:37:11.040 INFO:teuthology.orchestra.run.smithi070.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-13T12:37:11.040 INFO:teuthology.orchestra.run.smithi070.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-13T12:37:11.040 INFO:teuthology.orchestra.run.smithi070.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-13T12:37:11.040 INFO:teuthology.orchestra.run.smithi070.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-13T12:37:11.041 DEBUG:teuthology.orchestra.run.smithi070:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-13T12:37:11.170 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:37:11.170 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:37:11.170 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:37:11.170 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-13T12:37:11.170 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-13T12:37:11.171 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-13T12:37:11.171 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-13T12:37:11.171 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:37:11.171 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:37:11.187 DEBUG:teuthology.orchestra.run.smithi070:> sudo shutdown -r now 2024-09-13T12:37:11.509 DEBUG:teuthology.orchestra.run.smithi105:> rpm -q kernel | sort -rV | head -n 1 2024-09-13T12:37:11.608 INFO:teuthology.orchestra.run.smithi105.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-13T12:37:11.609 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-13T12:37:11.609 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-13T12:37:11.609 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-13T12:37:11.609 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-13T12:37:11.609 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-09-13T12:37:11.609 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi105.front.sepia.ceph.com, path=None, version=distro) 2024-09-13T12:37:11.609 DEBUG:teuthology.orchestra.run.smithi105:> rpm -q kernel | sort -rV | head -n 1 2024-09-13T12:37:11.668 INFO:teuthology.orchestra.run.smithi105.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-13T12:37:11.668 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-13T12:37:11.668 DEBUG:teuthology.orchestra.run.smithi105:> sudo rpm -qi grub2-tools 2024-09-13T12:37:11.700 INFO:teuthology.orchestra.run.smithi105.stdout:Name : grub2-tools 2024-09-13T12:37:11.701 INFO:teuthology.orchestra.run.smithi105.stdout:Epoch : 1 2024-09-13T12:37:11.701 INFO:teuthology.orchestra.run.smithi105.stdout:Version : 2.06 2024-09-13T12:37:11.701 INFO:teuthology.orchestra.run.smithi105.stdout:Release : 82.el9 2024-09-13T12:37:11.701 INFO:teuthology.orchestra.run.smithi105.stdout:Architecture: x86_64 2024-09-13T12:37:11.701 INFO:teuthology.orchestra.run.smithi105.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-13T12:37:11.701 INFO:teuthology.orchestra.run.smithi105.stdout:Group : Unspecified 2024-09-13T12:37:11.701 INFO:teuthology.orchestra.run.smithi105.stdout:Size : 8274670 2024-09-13T12:37:11.701 INFO:teuthology.orchestra.run.smithi105.stdout:License : GPLv3+ 2024-09-13T12:37:11.701 INFO:teuthology.orchestra.run.smithi105.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-13T12:37:11.701 INFO:teuthology.orchestra.run.smithi105.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-13T12:37:11.701 INFO:teuthology.orchestra.run.smithi105.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-13T12:37:11.701 INFO:teuthology.orchestra.run.smithi105.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-13T12:37:11.701 INFO:teuthology.orchestra.run.smithi105.stdout:Packager : builder@centos.org 2024-09-13T12:37:11.702 INFO:teuthology.orchestra.run.smithi105.stdout:Vendor : CentOS 2024-09-13T12:37:11.702 INFO:teuthology.orchestra.run.smithi105.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-13T12:37:11.702 INFO:teuthology.orchestra.run.smithi105.stdout:Summary : Support tools for GRUB. 2024-09-13T12:37:11.702 INFO:teuthology.orchestra.run.smithi105.stdout:Description : 2024-09-13T12:37:11.702 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:37:11.702 INFO:teuthology.orchestra.run.smithi105.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-13T12:37:11.702 INFO:teuthology.orchestra.run.smithi105.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-13T12:37:11.702 INFO:teuthology.orchestra.run.smithi105.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-13T12:37:11.702 INFO:teuthology.orchestra.run.smithi105.stdout:hardware devices. 2024-09-13T12:37:11.702 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:37:11.702 INFO:teuthology.orchestra.run.smithi105.stdout:This subpackage provides tools for support of all platforms. 2024-09-13T12:37:11.703 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-13T12:37:11.703 INFO:teuthology.task.kernel:Updating grub on smithi105 to boot 5.14.0-505.el9.x86_64 2024-09-13T12:37:11.703 DEBUG:teuthology.orchestra.run.smithi105:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-13T12:37:12.335 INFO:teuthology.orchestra.run.smithi105.stderr:Generating grub configuration file ... 2024-09-13T12:37:13.643 INFO:teuthology.orchestra.run.smithi105.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-13T12:37:13.676 INFO:teuthology.orchestra.run.smithi105.stderr:done 2024-09-13T12:37:13.679 DEBUG:teuthology.orchestra.run.smithi105:> mktemp 2024-09-13T12:37:13.696 INFO:teuthology.orchestra.run.smithi105.stdout:/tmp/tmp.Hr6eHqSMrB 2024-09-13T12:37:13.696 DEBUG:teuthology.orchestra.run.smithi105:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.Hr6eHqSMrB 2024-09-13T12:37:13.762 DEBUG:teuthology.orchestra.run.smithi105:> sudo chmod 0666 /tmp/tmp.Hr6eHqSMrB 2024-09-13T12:37:13.905 DEBUG:teuthology.orchestra.remote:smithi105:/tmp/tmp.Hr6eHqSMrB is 6KB 2024-09-13T12:37:13.925 DEBUG:teuthology.orchestra.run.smithi105:> rm -fr /tmp/tmp.Hr6eHqSMrB 2024-09-13T12:37:13.941 DEBUG:teuthology.orchestra.run.smithi105:> sudo /bin/ls /boot/loader/entries || true 2024-09-13T12:37:14.008 INFO:teuthology.orchestra.run.smithi105.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-13T12:37:14.009 INFO:teuthology.orchestra.run.smithi105.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-13T12:37:14.009 INFO:teuthology.orchestra.run.smithi105.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-13T12:37:14.009 INFO:teuthology.orchestra.run.smithi105.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-13T12:37:14.010 DEBUG:teuthology.orchestra.run.smithi105:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-13T12:37:14.159 DEBUG:teuthology.orchestra.run.smithi105:> sudo shutdown -r now 2024-09-13T12:37:18.052 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: kernel-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:37:18.091 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: kernel-modules-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:37:18.496 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: kernel-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:37:18.497 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : kernel-5.14.0-505.el9.x86_64 1/4 2024-09-13T12:37:18.497 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : kernel-core-5.14.0-505.el9.x86_64 2/4 2024-09-13T12:37:18.497 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : kernel-modules-5.14.0-505.el9.x86_64 3/4 2024-09-13T12:37:19.371 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : kernel-modules-core-5.14.0-505.el9.x86_64 4/4 2024-09-13T12:37:19.371 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:37:19.371 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:37:19.371 INFO:teuthology.orchestra.run.smithi086.stdout: kernel-5.14.0-505.el9.x86_64 2024-09-13T12:37:19.371 INFO:teuthology.orchestra.run.smithi086.stdout: kernel-core-5.14.0-505.el9.x86_64 2024-09-13T12:37:19.372 INFO:teuthology.orchestra.run.smithi086.stdout: kernel-modules-5.14.0-505.el9.x86_64 2024-09-13T12:37:19.372 INFO:teuthology.orchestra.run.smithi086.stdout: kernel-modules-core-5.14.0-505.el9.x86_64 2024-09-13T12:37:19.372 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:37:19.372 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:37:19.717 DEBUG:teuthology.orchestra.run.smithi086:> rpm -q kernel | sort -rV | head -n 1 2024-09-13T12:37:19.799 INFO:teuthology.orchestra.run.smithi086.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-13T12:37:19.800 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-13T12:37:19.800 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-503.el9.x86_64 Expected: 5.14.0-505.el9.x86_64 2024-09-13T12:37:19.800 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-13T12:37:19.800 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-13T12:37:19.801 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-13T12:37:19.801 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi086.front.sepia.ceph.com, path=None, version=distro) 2024-09-13T12:37:19.801 DEBUG:teuthology.orchestra.run.smithi086:> rpm -q kernel | sort -rV | head -n 1 2024-09-13T12:37:19.860 INFO:teuthology.orchestra.run.smithi086.stdout:kernel-5.14.0-505.el9.x86_64 2024-09-13T12:37:19.860 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-505.el9.x86_64 2024-09-13T12:37:19.861 DEBUG:teuthology.orchestra.run.smithi086:> sudo rpm -qi grub2-tools 2024-09-13T12:37:19.895 INFO:teuthology.orchestra.run.smithi086.stdout:Name : grub2-tools 2024-09-13T12:37:19.895 INFO:teuthology.orchestra.run.smithi086.stdout:Epoch : 1 2024-09-13T12:37:19.896 INFO:teuthology.orchestra.run.smithi086.stdout:Version : 2.06 2024-09-13T12:37:19.896 INFO:teuthology.orchestra.run.smithi086.stdout:Release : 82.el9 2024-09-13T12:37:19.896 INFO:teuthology.orchestra.run.smithi086.stdout:Architecture: x86_64 2024-09-13T12:37:19.896 INFO:teuthology.orchestra.run.smithi086.stdout:Install Date: Wed 28 Aug 2024 09:06:27 PM UTC 2024-09-13T12:37:19.896 INFO:teuthology.orchestra.run.smithi086.stdout:Group : Unspecified 2024-09-13T12:37:19.896 INFO:teuthology.orchestra.run.smithi086.stdout:Size : 8274670 2024-09-13T12:37:19.896 INFO:teuthology.orchestra.run.smithi086.stdout:License : GPLv3+ 2024-09-13T12:37:19.896 INFO:teuthology.orchestra.run.smithi086.stdout:Signature : RSA/SHA256, Mon 01 Jul 2024 07:46:42 AM UTC, Key ID 05b555b38483c65d 2024-09-13T12:37:19.896 INFO:teuthology.orchestra.run.smithi086.stdout:Source RPM : grub2-2.06-82.el9.src.rpm 2024-09-13T12:37:19.896 INFO:teuthology.orchestra.run.smithi086.stdout:Build Date : Fri 28 Jun 2024 09:24:44 AM UTC 2024-09-13T12:37:19.897 INFO:teuthology.orchestra.run.smithi086.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-09-13T12:37:19.897 INFO:teuthology.orchestra.run.smithi086.stdout:Packager : builder@centos.org 2024-09-13T12:37:19.897 INFO:teuthology.orchestra.run.smithi086.stdout:Vendor : CentOS 2024-09-13T12:37:19.897 INFO:teuthology.orchestra.run.smithi086.stdout:URL : http://www.gnu.org/software/grub/ 2024-09-13T12:37:19.897 INFO:teuthology.orchestra.run.smithi086.stdout:Summary : Support tools for GRUB. 2024-09-13T12:37:19.897 INFO:teuthology.orchestra.run.smithi086.stdout:Description : 2024-09-13T12:37:19.897 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:37:19.897 INFO:teuthology.orchestra.run.smithi086.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-09-13T12:37:19.897 INFO:teuthology.orchestra.run.smithi086.stdout:customizable bootloader with modular architecture. It supports a rich 2024-09-13T12:37:19.897 INFO:teuthology.orchestra.run.smithi086.stdout:variety of kernel formats, file systems, computer architectures and 2024-09-13T12:37:19.897 INFO:teuthology.orchestra.run.smithi086.stdout:hardware devices. 2024-09-13T12:37:19.898 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:37:19.898 INFO:teuthology.orchestra.run.smithi086.stdout:This subpackage provides tools for support of all platforms. 2024-09-13T12:37:19.899 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-09-13T12:37:19.899 INFO:teuthology.task.kernel:Updating grub on smithi086 to boot 5.14.0-505.el9.x86_64 2024-09-13T12:37:19.899 DEBUG:teuthology.orchestra.run.smithi086:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-09-13T12:37:20.592 INFO:teuthology.orchestra.run.smithi086.stderr:Generating grub configuration file ... 2024-09-13T12:37:21.942 INFO:teuthology.orchestra.run.smithi086.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-09-13T12:37:21.984 INFO:teuthology.orchestra.run.smithi086.stderr:done 2024-09-13T12:37:21.986 DEBUG:teuthology.orchestra.run.smithi086:> mktemp 2024-09-13T12:37:22.001 INFO:teuthology.orchestra.run.smithi086.stdout:/tmp/tmp.cJK61GdScC 2024-09-13T12:37:22.002 DEBUG:teuthology.orchestra.run.smithi086:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.cJK61GdScC 2024-09-13T12:37:22.069 DEBUG:teuthology.orchestra.run.smithi086:> sudo chmod 0666 /tmp/tmp.cJK61GdScC 2024-09-13T12:37:22.211 DEBUG:teuthology.orchestra.remote:smithi086:/tmp/tmp.cJK61GdScC is 6KB 2024-09-13T12:37:22.260 DEBUG:teuthology.orchestra.run.smithi086:> rm -fr /tmp/tmp.cJK61GdScC 2024-09-13T12:37:22.276 DEBUG:teuthology.orchestra.run.smithi086:> sudo /bin/ls /boot/loader/entries || true 2024-09-13T12:37:22.338 INFO:teuthology.orchestra.run.smithi086.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-0-rescue.conf 2024-09-13T12:37:22.338 INFO:teuthology.orchestra.run.smithi086.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-239.el9.x86_64.conf 2024-09-13T12:37:22.338 INFO:teuthology.orchestra.run.smithi086.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-503.el9.x86_64.conf 2024-09-13T12:37:22.338 INFO:teuthology.orchestra.run.smithi086.stdout:fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64.conf 2024-09-13T12:37:22.339 DEBUG:teuthology.orchestra.run.smithi086:> sudo grub2-set-default fbf6b6fa6cf04654a0e563f30ecbf43a-5.14.0-505.el9.x86_64 2024-09-13T12:37:22.505 DEBUG:teuthology.orchestra.run.smithi086:> sudo shutdown -r now 2024-09-13T12:37:41.209 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-13T12:37:41.210 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi070.front.sepia.ceph.com' 2024-09-13T12:37:41.212 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi070.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:37:44.165 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-09-13T12:37:44.165 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-09-13T12:37:44.166 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:37:52.517 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-13T12:37:52.517 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi086.front.sepia.ceph.com' 2024-09-13T12:37:52.518 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi086.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:37:59.741 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.70 2024-09-13T12:38:02.561 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.105 2024-09-13T12:38:08.749 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi070.front.sepia.ceph.com' 2024-09-13T12:38:08.749 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi070.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:38:11.005 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.86 2024-09-13T12:38:11.563 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-09-13T12:38:11.563 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:38:11.841 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.70 2024-09-13T12:38:14.653 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.105 2024-09-13T12:38:20.011 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi086.front.sepia.ceph.com' 2024-09-13T12:38:20.012 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi086.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:38:23.105 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.86 2024-09-13T12:38:23.842 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi070.front.sepia.ceph.com' 2024-09-13T12:38:23.843 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi070.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:38:26.657 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-09-13T12:38:26.658 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:38:29.729 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.105 2024-09-13T12:38:35.112 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi086.front.sepia.ceph.com' 2024-09-13T12:38:35.113 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi086.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:38:44.737 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-09-13T12:38:44.738 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:38:47.809 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.105 2024-09-13T12:38:53.501 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.86 2024-09-13T12:38:55.797 DEBUG:teuthology.orchestra.run.smithi070:> true 2024-09-13T12:38:56.195 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi070.front.sepia.ceph.com' 2024-09-13T12:38:56.195 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-505.el9.x86_64"... 2024-09-13T12:38:56.195 DEBUG:teuthology.orchestra.run.smithi070:> uname -r 2024-09-13T12:38:56.210 INFO:teuthology.orchestra.run.smithi070.stdout:5.14.0-505.el9.x86_64 2024-09-13T12:38:56.211 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-13T12:38:56.211 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-13T12:38:56.211 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-13T12:38:57.211 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-13T12:38:57.212 DEBUG:teuthology.orchestra.run.smithi070:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-13T12:38:57.324 INFO:teuthology.orchestra.run.smithi070.stdout:ttyS1 2024-09-13T12:38:57.350 DEBUG:teuthology.parallel:result is None 2024-09-13T12:39:05.810 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-09-13T12:39:05.811 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:39:06.086 DEBUG:teuthology.orchestra.run.smithi105:> true 2024-09-13T12:39:06.420 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-09-13T12:39:06.420 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-505.el9.x86_64"... 2024-09-13T12:39:06.420 DEBUG:teuthology.orchestra.run.smithi105:> uname -r 2024-09-13T12:39:06.435 INFO:teuthology.orchestra.run.smithi105.stdout:5.14.0-505.el9.x86_64 2024-09-13T12:39:06.436 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-13T12:39:06.436 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-13T12:39:06.436 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-13T12:39:07.437 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-09-13T12:39:07.437 DEBUG:teuthology.orchestra.run.smithi105:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-13T12:39:07.502 INFO:teuthology.orchestra.run.smithi105.stdout:ttyS1 2024-09-13T12:39:07.521 DEBUG:teuthology.parallel:result is None 2024-09-13T12:39:08.502 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi086.front.sepia.ceph.com' 2024-09-13T12:39:08.502 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi086.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:39:08.843 DEBUG:teuthology.orchestra.run.smithi086:> true 2024-09-13T12:39:09.312 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi086.front.sepia.ceph.com' 2024-09-13T12:39:09.313 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-505.el9.x86_64"... 2024-09-13T12:39:09.313 DEBUG:teuthology.orchestra.run.smithi086:> uname -r 2024-09-13T12:39:09.327 INFO:teuthology.orchestra.run.smithi086.stdout:5.14.0-505.el9.x86_64 2024-09-13T12:39:09.328 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-505.el9.x86_64 vs 5.14.0-505.el9.x86_64 2024-09-13T12:39:09.328 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-13T12:39:09.328 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-09-13T12:39:10.329 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-13T12:39:10.329 DEBUG:teuthology.orchestra.run.smithi086:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-13T12:39:10.415 INFO:teuthology.orchestra.run.smithi086.stdout:ttyS1 2024-09-13T12:39:10.438 DEBUG:teuthology.parallel:result is None 2024-09-13T12:39:10.438 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-13T12:39:10.447 INFO:teuthology.task.internal:Creating test directory... 2024-09-13T12:39:10.448 DEBUG:teuthology.orchestra.run.smithi070:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-13T12:39:10.450 DEBUG:teuthology.orchestra.run.smithi086:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-13T12:39:10.452 DEBUG:teuthology.orchestra.run.smithi105:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-13T12:39:10.471 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-13T12:39:10.482 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-13T12:39:10.497 INFO:teuthology.task.internal:Creating archive directory... 2024-09-13T12:39:10.497 DEBUG:teuthology.orchestra.run.smithi070:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-13T12:39:10.509 DEBUG:teuthology.orchestra.run.smithi086:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-13T12:39:10.511 DEBUG:teuthology.orchestra.run.smithi105:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-13T12:39:10.630 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-13T12:39:10.641 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-13T12:39:10.641 DEBUG:teuthology.orchestra.run.smithi070:> 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-09-13T12:39:10.644 DEBUG:teuthology.orchestra.run.smithi086:> 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-09-13T12:39:10.646 DEBUG:teuthology.orchestra.run.smithi105:> 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-09-13T12:39:10.678 INFO:teuthology.orchestra.run.smithi070.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T12:39:10.678 INFO:teuthology.orchestra.run.smithi086.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T12:39:10.684 INFO:teuthology.orchestra.run.smithi105.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T12:39:10.688 INFO:teuthology.orchestra.run.smithi086.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T12:39:10.689 INFO:teuthology.orchestra.run.smithi070.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T12:39:10.696 INFO:teuthology.orchestra.run.smithi105.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-13T12:39:10.697 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-13T12:39:10.767 INFO:teuthology.task.internal:Configuring sudo... 2024-09-13T12:39:10.767 DEBUG:teuthology.orchestra.run.smithi070:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-13T12:39:10.769 DEBUG:teuthology.orchestra.run.smithi086:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-13T12:39:10.772 DEBUG:teuthology.orchestra.run.smithi105:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-13T12:39:10.799 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-13T12:39:10.890 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-13T12:39:10.890 DEBUG:teuthology.orchestra.run.smithi070:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-13T12:39:10.893 DEBUG:teuthology.orchestra.run.smithi086:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-13T12:39:10.895 DEBUG:teuthology.orchestra.run.smithi105:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-13T12:39:10.911 DEBUG:teuthology.orchestra.run.smithi070:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T12:39:11.000 DEBUG:teuthology.orchestra.run.smithi070:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T12:39:11.039 DEBUG:teuthology.orchestra.run.smithi070:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T12:39:11.126 DEBUG:teuthology.orchestra.run.smithi070:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T12:39:11.163 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:39:11.163 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-13T12:39:11.227 DEBUG:teuthology.orchestra.run.smithi086:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T12:39:11.276 DEBUG:teuthology.orchestra.run.smithi086:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T12:39:11.316 DEBUG:teuthology.orchestra.run.smithi086:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T12:39:11.407 DEBUG:teuthology.orchestra.run.smithi086:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T12:39:11.439 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-13T12:39:11.439 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-13T12:39:11.504 DEBUG:teuthology.orchestra.run.smithi105:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T12:39:11.555 DEBUG:teuthology.orchestra.run.smithi105:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-13T12:39:11.603 DEBUG:teuthology.orchestra.run.smithi105:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T12:39:11.697 DEBUG:teuthology.orchestra.run.smithi105:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-13T12:39:11.729 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-09-13T12:39:11.730 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-13T12:39:11.797 DEBUG:teuthology.orchestra.run.smithi070:> sudo service rsyslog restart 2024-09-13T12:39:11.799 DEBUG:teuthology.orchestra.run.smithi086:> sudo service rsyslog restart 2024-09-13T12:39:11.802 DEBUG:teuthology.orchestra.run.smithi105:> sudo service rsyslog restart 2024-09-13T12:39:11.849 INFO:teuthology.orchestra.run.smithi086.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-13T12:39:11.854 INFO:teuthology.orchestra.run.smithi070.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-13T12:39:11.877 INFO:teuthology.orchestra.run.smithi105.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-13T12:39:12.388 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-13T12:39:12.395 INFO:teuthology.task.internal:Starting timer... 2024-09-13T12:39:12.395 INFO:teuthology.run_tasks:Running task pcp... 2024-09-13T12:39:12.430 INFO:teuthology.run_tasks:Running task selinux... 2024-09-13T12:39:12.443 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0', 'scontext=system_u:system_r:getty_t:s0']} 2024-09-13T12:39:12.444 DEBUG:teuthology.orchestra.run.smithi070:> sudo service auditd rotate 2024-09-13T12:39:12.497 INFO:teuthology.orchestra.run.smithi070.stdout:Rotating logs: 2024-09-13T12:39:12.499 DEBUG:teuthology.orchestra.run.smithi086:> sudo service auditd rotate 2024-09-13T12:39:12.553 INFO:teuthology.orchestra.run.smithi086.stdout:Rotating logs: 2024-09-13T12:39:12.555 DEBUG:teuthology.orchestra.run.smithi105:> sudo service auditd rotate 2024-09-13T12:39:12.599 INFO:teuthology.orchestra.run.smithi105.stdout:Rotating logs: 2024-09-13T12:39:12.601 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-13T12:39:12.601 DEBUG:teuthology.orchestra.run.smithi070:> /usr/sbin/getenforce 2024-09-13T12:39:12.643 INFO:teuthology.orchestra.run.smithi070.stdout:Permissive 2024-09-13T12:39:12.643 DEBUG:teuthology.orchestra.run.smithi086:> /usr/sbin/getenforce 2024-09-13T12:39:12.662 INFO:teuthology.orchestra.run.smithi086.stdout:Permissive 2024-09-13T12:39:12.663 DEBUG:teuthology.orchestra.run.smithi105:> /usr/sbin/getenforce 2024-09-13T12:39:12.698 INFO:teuthology.orchestra.run.smithi105.stdout:Permissive 2024-09-13T12:39:12.699 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi070.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi086.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi105.front.sepia.ceph.com': 'permissive'} 2024-09-13T12:39:12.699 DEBUG:teuthology.orchestra.run.smithi070:> 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 context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-13T12:39:12.729 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T12:39:12.730 DEBUG:teuthology.orchestra.run.smithi086:> 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 context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-13T12:39:12.757 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T12:39:12.757 DEBUG:teuthology.orchestra.run.smithi105:> 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 context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-13T12:39:12.783 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T12:39:12.784 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-13T12:39:12.785 DEBUG:teuthology.orchestra.run.smithi070:> sudo /usr/sbin/setenforce permissive 2024-09-13T12:39:12.847 DEBUG:teuthology.orchestra.run.smithi086:> sudo /usr/sbin/setenforce permissive 2024-09-13T12:39:12.883 DEBUG:teuthology.orchestra.run.smithi105:> sudo /usr/sbin/setenforce permissive 2024-09-13T12:39:12.922 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-13T12:39:12.932 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-09-13T12:39:12.935 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-09-13T12:39:13.064 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-13T12:39:13.075 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-09-13T12:39:13.076 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi070.front.sepia.ceph.com,smithi086.front.sepia.ceph.com,smithi105.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-13T12:43:00.155 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi070.front.sepia.ceph.com'), Remote(name='ubuntu@smithi086.front.sepia.ceph.com'), Remote(name='ubuntu@smithi105.front.sepia.ceph.com')] 2024-09-13T12:43:00.156 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi070.front.sepia.ceph.com' 2024-09-13T12:43:00.157 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi070.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:43:00.263 DEBUG:teuthology.orchestra.run.smithi070:> true 2024-09-13T12:43:00.344 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi070.front.sepia.ceph.com' 2024-09-13T12:43:00.345 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi086.front.sepia.ceph.com' 2024-09-13T12:43:00.345 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi086.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:43:00.444 DEBUG:teuthology.orchestra.run.smithi086:> true 2024-09-13T12:43:00.524 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi086.front.sepia.ceph.com' 2024-09-13T12:43:00.524 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-09-13T12:43:00.525 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-13T12:43:00.626 DEBUG:teuthology.orchestra.run.smithi105:> true 2024-09-13T12:43:00.705 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-09-13T12:43:00.706 INFO:teuthology.run_tasks:Running task clock... 2024-09-13T12:43:00.717 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-13T12:43:00.717 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-13T12:43:00.718 DEBUG:teuthology.orchestra.run.smithi070:> 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-09-13T12:43:00.720 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-13T12:43:00.720 DEBUG:teuthology.orchestra.run.smithi086:> 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-09-13T12:43:00.725 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-13T12:43:00.725 DEBUG:teuthology.orchestra.run.smithi105:> 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-09-13T12:43:00.751 INFO:teuthology.orchestra.run.smithi070.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-13T12:43:00.753 INFO:teuthology.orchestra.run.smithi086.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-13T12:43:00.766 INFO:teuthology.orchestra.run.smithi070.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-13T12:43:00.767 INFO:teuthology.orchestra.run.smithi086.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-13T12:43:00.776 INFO:teuthology.orchestra.run.smithi105.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-09-13T12:43:00.791 INFO:teuthology.orchestra.run.smithi086.stderr:sudo: ntpd: command not found 2024-09-13T12:43:00.791 INFO:teuthology.orchestra.run.smithi105.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-09-13T12:43:00.792 INFO:teuthology.orchestra.run.smithi070.stderr:sudo: ntpd: command not found 2024-09-13T12:43:00.801 INFO:teuthology.orchestra.run.smithi086.stdout:506 Cannot talk to daemon 2024-09-13T12:43:00.804 INFO:teuthology.orchestra.run.smithi070.stdout:506 Cannot talk to daemon 2024-09-13T12:43:00.817 INFO:teuthology.orchestra.run.smithi105.stderr:sudo: ntpd: command not found 2024-09-13T12:43:00.817 INFO:teuthology.orchestra.run.smithi086.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-13T12:43:00.819 INFO:teuthology.orchestra.run.smithi070.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-13T12:43:00.827 INFO:teuthology.orchestra.run.smithi105.stdout:506 Cannot talk to daemon 2024-09-13T12:43:00.829 INFO:teuthology.orchestra.run.smithi086.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-13T12:43:00.834 INFO:teuthology.orchestra.run.smithi070.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-13T12:43:00.841 INFO:teuthology.orchestra.run.smithi105.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-09-13T12:43:00.855 INFO:teuthology.orchestra.run.smithi105.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-09-13T12:43:00.886 INFO:teuthology.orchestra.run.smithi086.stderr:bash: line 1: ntpq: command not found 2024-09-13T12:43:00.890 INFO:teuthology.orchestra.run.smithi086.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-13T12:43:00.890 INFO:teuthology.orchestra.run.smithi086.stdout:=============================================================================== 2024-09-13T12:43:00.890 INFO:teuthology.orchestra.run.smithi086.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:43:00.890 INFO:teuthology.orchestra.run.smithi086.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:43:00.890 INFO:teuthology.orchestra.run.smithi086.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:43:00.890 INFO:teuthology.orchestra.run.smithi086.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:43:00.891 INFO:teuthology.orchestra.run.smithi070.stderr:bash: line 1: ntpq: command not found 2024-09-13T12:43:00.893 INFO:teuthology.orchestra.run.smithi070.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-13T12:43:00.894 INFO:teuthology.orchestra.run.smithi070.stdout:=============================================================================== 2024-09-13T12:43:00.894 INFO:teuthology.orchestra.run.smithi070.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:43:00.894 INFO:teuthology.orchestra.run.smithi070.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:43:00.894 INFO:teuthology.orchestra.run.smithi070.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:43:00.894 INFO:teuthology.orchestra.run.smithi070.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:43:00.908 INFO:teuthology.orchestra.run.smithi105.stderr:bash: line 1: ntpq: command not found 2024-09-13T12:43:00.912 INFO:teuthology.orchestra.run.smithi105.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-13T12:43:00.912 INFO:teuthology.orchestra.run.smithi105.stdout:=============================================================================== 2024-09-13T12:43:00.912 INFO:teuthology.orchestra.run.smithi105.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:43:00.912 INFO:teuthology.orchestra.run.smithi105.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:43:00.912 INFO:teuthology.orchestra.run.smithi105.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:43:00.912 INFO:teuthology.orchestra.run.smithi105.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:43:00.913 INFO:teuthology.run_tasks:Running task pexec... 2024-09-13T12:43:00.923 INFO:teuthology.task.pexec:Executing custom commands... 2024-09-13T12:43:00.923 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi070.front.sepia.ceph.com 2024-09-13T12:43:00.923 DEBUG:teuthology.orchestra.run.smithi070:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-13T12:43:00.924 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi086.front.sepia.ceph.com 2024-09-13T12:43:00.924 DEBUG:teuthology.orchestra.run.smithi086:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-13T12:43:00.924 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi105.front.sepia.ceph.com 2024-09-13T12:43:00.924 DEBUG:teuthology.orchestra.run.smithi105:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-09-13T12:43:01.279 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:43:01.282 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:43:01.289 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:43:01.289 INFO:teuthology.orchestra.run.smithi070.stdout: Package Architecture Version Repository Size 2024-09-13T12:43:01.289 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:43:01.290 INFO:teuthology.orchestra.run.smithi070.stdout:Removing: 2024-09-13T12:43:01.290 INFO:teuthology.orchestra.run.smithi070.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-13T12:43:01.290 INFO:teuthology.orchestra.run.smithi070.stdout:Removing unused dependencies: 2024-09-13T12:43:01.290 INFO:teuthology.orchestra.run.smithi070.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-13T12:43:01.290 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:01.290 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:43:01.290 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:43:01.290 INFO:teuthology.orchestra.run.smithi070.stdout:Remove 2 Packages 2024-09-13T12:43:01.290 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:01.290 INFO:teuthology.orchestra.run.smithi070.stdout:Freed space: 5.5 M 2024-09-13T12:43:01.290 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:43:01.293 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:43:01.293 INFO:teuthology.orchestra.run.smithi086.stdout: Package Architecture Version Repository Size 2024-09-13T12:43:01.293 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:43:01.293 INFO:teuthology.orchestra.run.smithi086.stdout:Removing: 2024-09-13T12:43:01.293 INFO:teuthology.orchestra.run.smithi086.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-13T12:43:01.293 INFO:teuthology.orchestra.run.smithi086.stdout:Removing unused dependencies: 2024-09-13T12:43:01.293 INFO:teuthology.orchestra.run.smithi086.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-13T12:43:01.293 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:01.293 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:43:01.293 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:43:01.293 INFO:teuthology.orchestra.run.smithi086.stdout:Remove 2 Packages 2024-09-13T12:43:01.293 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:01.294 INFO:teuthology.orchestra.run.smithi086.stdout:Freed space: 5.5 M 2024-09-13T12:43:01.294 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:43:01.294 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:43:01.294 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:43:01.297 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:43:01.297 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:43:01.304 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:43:01.306 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:43:01.307 INFO:teuthology.orchestra.run.smithi105.stdout: Package Architecture Version Repository Size 2024-09-13T12:43:01.307 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:43:01.307 INFO:teuthology.orchestra.run.smithi105.stdout:Removing: 2024-09-13T12:43:01.307 INFO:teuthology.orchestra.run.smithi105.stdout: nvme-cli x86_64 2.9.1-6.el9 @baseos 5.3 M 2024-09-13T12:43:01.307 INFO:teuthology.orchestra.run.smithi105.stdout:Removing unused dependencies: 2024-09-13T12:43:01.307 INFO:teuthology.orchestra.run.smithi105.stdout: libnvme x86_64 1.9-3.el9 @baseos 273 k 2024-09-13T12:43:01.307 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:01.307 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:43:01.307 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:43:01.307 INFO:teuthology.orchestra.run.smithi105.stdout:Remove 2 Packages 2024-09-13T12:43:01.307 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:01.308 INFO:teuthology.orchestra.run.smithi105.stdout:Freed space: 5.5 M 2024-09-13T12:43:01.308 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:43:01.311 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:43:01.311 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:43:01.348 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:43:01.348 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:43:01.348 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:43:01.349 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:43:01.374 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:43:01.374 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:43:01.485 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:43:01.506 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:43:01.529 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:43:01.582 INFO:teuthology.orchestra.run.smithi070.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-13T12:43:01.584 INFO:teuthology.orchestra.run.smithi086.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-13T12:43:01.608 INFO:teuthology.orchestra.run.smithi105.stdout: Erasing : nvme-cli-2.9.1-6.el9.x86_64 1/2 2024-09-13T12:43:01.636 INFO:teuthology.orchestra.run.smithi070.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-13T12:43:01.637 INFO:teuthology.orchestra.run.smithi086.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-13T12:43:01.662 INFO:teuthology.orchestra.run.smithi105.stdout: Erasing : libnvme-1.9-3.el9.x86_64 2/2 2024-09-13T12:43:02.121 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-13T12:43:02.121 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-13T12:43:02.186 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-13T12:43:02.187 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-13T12:43:02.193 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: libnvme-1.9-3.el9.x86_64 2/2 2024-09-13T12:43:02.193 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/2 2024-09-13T12:43:02.343 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-13T12:43:02.343 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:02.343 INFO:teuthology.orchestra.run.smithi070.stdout:Removed: 2024-09-13T12:43:02.343 INFO:teuthology.orchestra.run.smithi070.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-13T12:43:02.343 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:02.343 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:43:02.432 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-13T12:43:02.433 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:02.433 INFO:teuthology.orchestra.run.smithi086.stdout:Removed: 2024-09-13T12:43:02.433 INFO:teuthology.orchestra.run.smithi086.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-13T12:43:02.433 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:02.433 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:43:02.479 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/2 2024-09-13T12:43:02.479 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:02.480 INFO:teuthology.orchestra.run.smithi105.stdout:Removed: 2024-09-13T12:43:02.480 INFO:teuthology.orchestra.run.smithi105.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-13T12:43:02.480 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:02.480 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:43:03.170 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:00:51 ago on Fri 13 Sep 2024 12:42:11 PM UTC. 2024-09-13T12:43:03.275 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:00:52 ago on Fri 13 Sep 2024 12:42:11 PM UTC. 2024-09-13T12:43:03.304 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:43:03.305 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:43:03.305 INFO:teuthology.orchestra.run.smithi070.stdout: Package Architecture Version Repository Size 2024-09-13T12:43:03.305 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:43:03.306 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:43:03.306 INFO:teuthology.orchestra.run.smithi070.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-13T12:43:03.306 INFO:teuthology.orchestra.run.smithi070.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-13T12:43:03.307 INFO:teuthology.orchestra.run.smithi070.stdout:Installing dependencies: 2024-09-13T12:43:03.307 INFO:teuthology.orchestra.run.smithi070.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-13T12:43:03.307 INFO:teuthology.orchestra.run.smithi070.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-13T12:43:03.307 INFO:teuthology.orchestra.run.smithi070.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-13T12:43:03.307 INFO:teuthology.orchestra.run.smithi070.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-13T12:43:03.308 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:03.308 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:43:03.308 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:43:03.308 INFO:teuthology.orchestra.run.smithi070.stdout:Install 6 Packages 2024-09-13T12:43:03.308 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:03.313 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 2.0 M 2024-09-13T12:43:03.313 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 9.2 M 2024-09-13T12:43:03.313 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:43:03.316 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:00:52 ago on Fri 13 Sep 2024 12:42:11 PM UTC. 2024-09-13T12:43:03.412 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:43:03.413 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:43:03.413 INFO:teuthology.orchestra.run.smithi105.stdout: Package Architecture Version Repository Size 2024-09-13T12:43:03.413 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:43:03.413 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:43:03.413 INFO:teuthology.orchestra.run.smithi105.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-13T12:43:03.414 INFO:teuthology.orchestra.run.smithi105.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-13T12:43:03.414 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-09-13T12:43:03.414 INFO:teuthology.orchestra.run.smithi105.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-13T12:43:03.414 INFO:teuthology.orchestra.run.smithi105.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-13T12:43:03.414 INFO:teuthology.orchestra.run.smithi105.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-13T12:43:03.414 INFO:teuthology.orchestra.run.smithi105.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-13T12:43:03.415 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:03.415 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:43:03.415 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:43:03.415 INFO:teuthology.orchestra.run.smithi105.stdout:Install 6 Packages 2024-09-13T12:43:03.415 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:03.416 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 2.0 M 2024-09-13T12:43:03.416 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 9.2 M 2024-09-13T12:43:03.417 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:43:03.448 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:43:03.449 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:43:03.449 INFO:teuthology.orchestra.run.smithi086.stdout: Package Architecture Version Repository Size 2024-09-13T12:43:03.449 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:43:03.449 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:43:03.450 INFO:teuthology.orchestra.run.smithi086.stdout: nvme-cli x86_64 2.9.1-6.el9 baseos 906 k 2024-09-13T12:43:03.450 INFO:teuthology.orchestra.run.smithi086.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-09-13T12:43:03.450 INFO:teuthology.orchestra.run.smithi086.stdout:Installing dependencies: 2024-09-13T12:43:03.450 INFO:teuthology.orchestra.run.smithi086.stdout: libnvme x86_64 1.9-3.el9 baseos 106 k 2024-09-13T12:43:03.450 INFO:teuthology.orchestra.run.smithi086.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-09-13T12:43:03.450 INFO:teuthology.orchestra.run.smithi086.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-09-13T12:43:03.450 INFO:teuthology.orchestra.run.smithi086.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-09-13T12:43:03.451 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:03.451 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:43:03.451 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:43:03.451 INFO:teuthology.orchestra.run.smithi086.stdout:Install 6 Packages 2024-09-13T12:43:03.451 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:03.455 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 2.0 M 2024-09-13T12:43:03.455 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 9.2 M 2024-09-13T12:43:03.455 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:43:03.611 INFO:teuthology.orchestra.run.smithi105.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 471 kB/s | 44 kB 00:00 2024-09-13T12:43:03.636 INFO:teuthology.orchestra.run.smithi105.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 885 kB/s | 106 kB 00:00 2024-09-13T12:43:03.695 INFO:teuthology.orchestra.run.smithi105.stdout:(3/6): python3-configshell-1.1.30-1.el9.noarch. 858 kB/s | 72 kB 00:00 2024-09-13T12:43:03.712 INFO:teuthology.orchestra.run.smithi105.stdout:(4/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.1 MB/s | 84 kB 00:00 2024-09-13T12:43:03.753 INFO:teuthology.orchestra.run.smithi105.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 3.7 MB/s | 906 kB 00:00 2024-09-13T12:43:03.820 INFO:teuthology.orchestra.run.smithi105.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 6.5 MB/s | 837 kB 00:00 2024-09-13T12:43:03.821 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:43:03.821 INFO:teuthology.orchestra.run.smithi105.stdout:Total 4.9 MB/s | 2.0 MB 00:00 2024-09-13T12:43:03.834 INFO:teuthology.orchestra.run.smithi086.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 498 kB/s | 44 kB 00:00 2024-09-13T12:43:03.851 INFO:teuthology.orchestra.run.smithi086.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 999 kB/s | 106 kB 00:00 2024-09-13T12:43:03.893 INFO:teuthology.orchestra.run.smithi086.stdout:(3/6): python3-configshell-1.1.30-1.el9.noarch. 1.2 MB/s | 72 kB 00:00 2024-09-13T12:43:03.894 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:43:03.908 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:43:03.908 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:43:03.910 INFO:teuthology.orchestra.run.smithi086.stdout:(4/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.4 MB/s | 84 kB 00:00 2024-09-13T12:43:03.943 INFO:teuthology.orchestra.run.smithi086.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 4.4 MB/s | 906 kB 00:00 2024-09-13T12:43:03.950 INFO:teuthology.orchestra.run.smithi070.stdout:(1/6): nvmetcli-0.7-3.el9.noarch.rpm 116 kB/s | 44 kB 00:00 2024-09-13T12:43:04.027 INFO:teuthology.orchestra.run.smithi086.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 6.1 MB/s | 837 kB 00:00 2024-09-13T12:43:04.027 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:43:04.028 INFO:teuthology.orchestra.run.smithi086.stdout:Total 3.5 MB/s | 2.0 MB 00:00 2024-09-13T12:43:04.033 INFO:teuthology.orchestra.run.smithi070.stdout:(2/6): libnvme-1.9-3.el9.x86_64.rpm 227 kB/s | 106 kB 00:00 2024-09-13T12:43:04.099 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:43:04.113 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:43:04.113 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:43:04.151 INFO:teuthology.orchestra.run.smithi070.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 721 kB/s | 84 kB 00:00 2024-09-13T12:43:04.159 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:43:04.159 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:43:04.176 INFO:teuthology.orchestra.run.smithi070.stdout:(4/6): python3-configshell-1.1.30-1.el9.noarch. 318 kB/s | 72 kB 00:00 2024-09-13T12:43:04.393 INFO:teuthology.orchestra.run.smithi070.stdout:(5/6): nvme-cli-2.9.1-6.el9.x86_64.rpm 1.1 MB/s | 906 kB 00:00 2024-09-13T12:43:04.402 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:43:04.403 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:43:04.537 INFO:teuthology.orchestra.run.smithi070.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 2.1 MB/s | 837 kB 00:00 2024-09-13T12:43:04.537 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:43:04.537 INFO:teuthology.orchestra.run.smithi070.stdout:Total 1.6 MB/s | 2.0 MB 00:01 2024-09-13T12:43:04.572 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:43:04.609 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:43:04.623 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:43:04.623 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:43:04.656 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-13T12:43:04.691 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-13T12:43:04.719 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-13T12:43:04.811 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:43:04.896 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-13T12:43:04.911 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:43:04.912 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:43:04.924 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-13T12:43:04.939 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-13T12:43:04.959 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-13T12:43:04.968 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-13T12:43:05.173 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-13T12:43:05.217 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-13T12:43:05.319 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:43:05.397 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-13T12:43:05.412 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2024-09-13T12:43:05.420 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-13T12:43:05.447 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/6 2024-09-13T12:43:05.475 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/6 2024-09-13T12:43:05.654 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-13T12:43:05.679 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-13T12:43:05.685 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : libnvme-1.9-3.el9.x86_64 4/6 2024-09-13T12:43:05.725 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-13T12:43:06.151 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: nvme-cli-2.9.1-6.el9.x86_64 5/6 2024-09-13T12:43:06.178 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : nvmetcli-0.7-3.el9.noarch 6/6 2024-09-13T12:43:06.353 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-13T12:43:06.354 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-13T12:43:06.354 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-13T12:43:06.354 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-13T12:43:06.354 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-13T12:43:06.354 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-13T12:43:06.587 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-13T12:43:06.587 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-13T12:43:06.587 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-13T12:43:06.587 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-13T12:43:06.587 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-13T12:43:06.587 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-13T12:43:06.697 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-13T12:43:06.697 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:06.697 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:43:06.697 INFO:teuthology.orchestra.run.smithi105.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-13T12:43:06.698 INFO:teuthology.orchestra.run.smithi105.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-13T12:43:06.698 INFO:teuthology.orchestra.run.smithi105.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-13T12:43:06.698 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:06.698 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:43:06.922 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-13T12:43:06.922 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:06.922 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:43:06.922 INFO:teuthology.orchestra.run.smithi086.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-13T12:43:06.923 INFO:teuthology.orchestra.run.smithi086.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-13T12:43:06.923 INFO:teuthology.orchestra.run.smithi086.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-13T12:43:06.923 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:06.923 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:43:07.019 DEBUG:teuthology.parallel:result is None 2024-09-13T12:43:07.184 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 6/6 2024-09-13T12:43:07.184 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : libnvme-1.9-3.el9.x86_64 1/6 2024-09-13T12:43:07.184 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : nvme-cli-2.9.1-6.el9.x86_64 2/6 2024-09-13T12:43:07.184 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 3/6 2024-09-13T12:43:07.184 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 4/6 2024-09-13T12:43:07.184 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 5/6 2024-09-13T12:43:07.225 DEBUG:teuthology.parallel:result is None 2024-09-13T12:43:07.512 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2024-09-13T12:43:07.512 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:07.512 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:43:07.512 INFO:teuthology.orchestra.run.smithi070.stdout: libnvme-1.9-3.el9.x86_64 nvme-cli-2.9.1-6.el9.x86_64 2024-09-13T12:43:07.512 INFO:teuthology.orchestra.run.smithi070.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-09-13T12:43:07.512 INFO:teuthology.orchestra.run.smithi070.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-09-13T12:43:07.512 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:07.512 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:43:07.840 DEBUG:teuthology.parallel:result is None 2024-09-13T12:43:07.840 INFO:teuthology.run_tasks:Running task install... 2024-09-13T12:43:07.849 DEBUG:teuthology.task.install:project ceph 2024-09-13T12:43:07.849 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'd58f73069a8157a9ace12a0247ee3e8497707ea9'}} 2024-09-13T12:43:07.849 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'd58f73069a8157a9ace12a0247ee3e8497707ea9'} 2024-09-13T12:43:07.849 INFO:teuthology.task.install:Using flavor: default 2024-09-13T12:43:07.855 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-09-13T12:43:07.855 INFO:teuthology.task.install:extra packages: [] 2024-09-13T12:43:07.856 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': 'd58f73069a8157a9ace12a0247ee3e8497707ea9', 'tag': None, 'wait_for_package': False} 2024-09-13T12:43:07.856 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=d58f73069a8157a9ace12a0247ee3e8497707ea9 2024-09-13T12:43:07.859 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': 'd58f73069a8157a9ace12a0247ee3e8497707ea9', 'tag': None, 'wait_for_package': False} 2024-09-13T12:43:07.859 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=d58f73069a8157a9ace12a0247ee3e8497707ea9 2024-09-13T12:43:07.860 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': 'd58f73069a8157a9ace12a0247ee3e8497707ea9', 'tag': None, 'wait_for_package': False} 2024-09-13T12:43:07.860 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=d58f73069a8157a9ace12a0247ee3e8497707ea9 2024-09-13T12:43:08.015 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/ 2024-09-13T12:43:08.015 INFO:teuthology.task.install.rpm:Package version is 19.3.0-4697.gd58f7306 2024-09-13T12:43:08.029 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/ 2024-09-13T12:43:08.030 INFO:teuthology.task.install.rpm:Package version is 19.3.0-4697.gd58f7306 2024-09-13T12:43:08.044 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/ 2024-09-13T12:43:08.044 INFO:teuthology.task.install.rpm:Package version is 19.3.0-4697.gd58f7306 2024-09-13T12:43:08.141 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-13T12:43:08.141 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:43:08.141 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-13T12:43:08.149 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-13T12:43:08.149 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-13T12:43:08.150 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-13T12:43:08.160 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-09-13T12:43:08.161 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-09-13T12:43:08.161 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-09-13T12:43:08.169 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-09-13T12:43:08.169 DEBUG:teuthology.orchestra.run.smithi070:> 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/d58f73069a8157a9ace12a0247ee3e8497707ea9/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-13T12:43:08.183 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-09-13T12:43:08.183 DEBUG:teuthology.orchestra.run.smithi086:> 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/d58f73069a8157a9ace12a0247ee3e8497707ea9/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-13T12:43:08.194 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-09-13T12:43:08.194 DEBUG:teuthology.orchestra.run.smithi105:> 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/d58f73069a8157a9ace12a0247ee3e8497707ea9/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-09-13T12:43:08.235 DEBUG:teuthology.orchestra.run.smithi070:> 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-09-13T12:43:08.255 DEBUG:teuthology.orchestra.run.smithi086:> 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-09-13T12:43:08.265 DEBUG:teuthology.orchestra.run.smithi105:> 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-09-13T12:43:08.311 DEBUG:teuthology.orchestra.run.smithi070:> 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-09-13T12:43:08.336 DEBUG:teuthology.orchestra.run.smithi086:> 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-09-13T12:43:08.345 DEBUG:teuthology.orchestra.run.smithi105:> 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-09-13T12:43:08.380 INFO:teuthology.orchestra.run.smithi070.stdout:check_obsoletes = 1 2024-09-13T12:43:08.381 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum clean all 2024-09-13T12:43:08.404 INFO:teuthology.orchestra.run.smithi086.stdout:check_obsoletes = 1 2024-09-13T12:43:08.406 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum clean all 2024-09-13T12:43:08.410 INFO:teuthology.orchestra.run.smithi105.stdout:check_obsoletes = 1 2024-09-13T12:43:08.412 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum clean all 2024-09-13T12:43:08.600 INFO:teuthology.orchestra.run.smithi070.stdout:45 files removed 2024-09-13T12:43:08.627 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install ceph-radosgw 2024-09-13T12:43:08.628 INFO:teuthology.orchestra.run.smithi086.stdout:45 files removed 2024-09-13T12:43:08.646 INFO:teuthology.orchestra.run.smithi105.stdout:45 files removed 2024-09-13T12:43:08.657 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install ceph-radosgw 2024-09-13T12:43:08.675 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-radosgw 2024-09-13T12:43:09.176 INFO:teuthology.orchestra.run.smithi070.stdout:ceph packages for x86_64 318 kB/s | 84 kB 00:00 2024-09-13T12:43:09.217 INFO:teuthology.orchestra.run.smithi086.stdout:ceph packages for x86_64 306 kB/s | 84 kB 00:00 2024-09-13T12:43:09.243 INFO:teuthology.orchestra.run.smithi105.stdout:ceph packages for x86_64 299 kB/s | 84 kB 00:00 2024-09-13T12:43:09.468 INFO:teuthology.orchestra.run.smithi070.stdout:ceph noarch packages 97 kB/s | 24 kB 00:00 2024-09-13T12:43:09.509 INFO:teuthology.orchestra.run.smithi086.stdout:ceph noarch packages 97 kB/s | 24 kB 00:00 2024-09-13T12:43:09.527 INFO:teuthology.orchestra.run.smithi105.stdout:ceph noarch packages 100 kB/s | 24 kB 00:00 2024-09-13T12:43:09.753 INFO:teuthology.orchestra.run.smithi070.stdout:ceph source packages 7.7 kB/s | 1.9 kB 00:00 2024-09-13T12:43:09.785 INFO:teuthology.orchestra.run.smithi086.stdout:ceph source packages 7.9 kB/s | 1.9 kB 00:00 2024-09-13T12:43:09.811 INFO:teuthology.orchestra.run.smithi105.stdout:ceph source packages 7.7 kB/s | 1.9 kB 00:00 2024-09-13T12:43:10.243 INFO:teuthology.orchestra.run.smithi086.stdout:CentOS Stream 9 - BaseOS 19 MB/s | 8.2 MB 00:00 2024-09-13T12:43:11.778 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - BaseOS 4.3 MB/s | 8.2 MB 00:01 2024-09-13T12:43:12.893 INFO:teuthology.orchestra.run.smithi070.stdout:CentOS Stream 9 - BaseOS 2.7 MB/s | 8.2 MB 00:03 2024-09-13T12:43:14.803 INFO:teuthology.orchestra.run.smithi070.stdout:CentOS Stream 9 - AppStream 25 MB/s | 20 MB 00:00 2024-09-13T12:43:14.845 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - AppStream 10 MB/s | 20 MB 00:01 2024-09-13T12:43:15.044 INFO:teuthology.orchestra.run.smithi086.stdout:CentOS Stream 9 - AppStream 5.5 MB/s | 20 MB 00:03 2024-09-13T12:43:19.246 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - CRB 10 MB/s | 6.5 MB 00:00 2024-09-13T12:43:19.353 INFO:teuthology.orchestra.run.smithi070.stdout:CentOS Stream 9 - CRB 13 MB/s | 6.5 MB 00:00 2024-09-13T12:43:20.561 INFO:teuthology.orchestra.run.smithi086.stdout:CentOS Stream 9 - CRB 3.9 MB/s | 6.5 MB 00:01 2024-09-13T12:43:20.888 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - Extras packages 61 kB/s | 19 kB 00:00 2024-09-13T12:43:20.912 INFO:teuthology.orchestra.run.smithi070.stdout:CentOS Stream 9 - Extras packages 96 kB/s | 19 kB 00:00 2024-09-13T12:43:22.192 INFO:teuthology.orchestra.run.smithi070.stdout:Extra Packages for Enterprise Linux 20 MB/s | 23 MB 00:01 2024-09-13T12:43:22.242 INFO:teuthology.orchestra.run.smithi105.stdout:Extra Packages for Enterprise Linux 18 MB/s | 23 MB 00:01 2024-09-13T12:43:22.245 INFO:teuthology.orchestra.run.smithi086.stdout:CentOS Stream 9 - Extras packages 42 kB/s | 19 kB 00:00 2024-09-13T12:43:23.758 INFO:teuthology.orchestra.run.smithi086.stdout:Extra Packages for Enterprise Linux 16 MB/s | 23 MB 00:01 2024-09-13T12:43:27.714 INFO:teuthology.orchestra.run.smithi070.stdout:lab-extras 12 kB/s | 1.7 kB 00:00 2024-09-13T12:43:27.773 INFO:teuthology.orchestra.run.smithi105.stdout:lab-extras 18 kB/s | 1.7 kB 00:00 2024-09-13T12:43:29.205 INFO:teuthology.orchestra.run.smithi086.stdout:lab-extras 29 kB/s | 1.7 kB 00:00 2024-09-13T12:43:30.067 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:43:30.069 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:43:30.069 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repository Size 2024-09-13T12:43:30.069 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:43:30.069 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:43:30.069 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-radosgw x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 11 M 2024-09-13T12:43:30.069 INFO:teuthology.orchestra.run.smithi070.stdout:Upgrading: 2024-09-13T12:43:30.069 INFO:teuthology.orchestra.run.smithi070.stdout: librados2 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 3.5 M 2024-09-13T12:43:30.069 INFO:teuthology.orchestra.run.smithi070.stdout: librbd1 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 3.2 M 2024-09-13T12:43:30.069 INFO:teuthology.orchestra.run.smithi070.stdout:Installing dependencies: 2024-09-13T12:43:30.069 INFO:teuthology.orchestra.run.smithi070.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-13T12:43:30.070 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-base x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 5.5 M 2024-09-13T12:43:30.070 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-common x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 22 M 2024-09-13T12:43:30.070 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-selinux x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 25 k 2024-09-13T12:43:30.070 INFO:teuthology.orchestra.run.smithi070.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-13T12:43:30.070 INFO:teuthology.orchestra.run.smithi070.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-13T12:43:30.070 INFO:teuthology.orchestra.run.smithi070.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-13T12:43:30.070 INFO:teuthology.orchestra.run.smithi070.stdout: libcephfs2 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 755 k 2024-09-13T12:43:30.070 INFO:teuthology.orchestra.run.smithi070.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-13T12:43:30.070 INFO:teuthology.orchestra.run.smithi070.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-13T12:43:30.070 INFO:teuthology.orchestra.run.smithi070.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-13T12:43:30.070 INFO:teuthology.orchestra.run.smithi070.stdout: libradosstriper1 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 508 k 2024-09-13T12:43:30.070 INFO:teuthology.orchestra.run.smithi070.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-13T12:43:30.071 INFO:teuthology.orchestra.run.smithi070.stdout: librgw2 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 5.5 M 2024-09-13T12:43:30.071 INFO:teuthology.orchestra.run.smithi070.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-13T12:43:30.071 INFO:teuthology.orchestra.run.smithi070.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-13T12:43:30.071 INFO:teuthology.orchestra.run.smithi070.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-13T12:43:30.071 INFO:teuthology.orchestra.run.smithi070.stdout: python3-ceph-argparse x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 45 k 2024-09-13T12:43:30.071 INFO:teuthology.orchestra.run.smithi070.stdout: python3-ceph-common x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 143 k 2024-09-13T12:43:30.071 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cephfs x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 161 k 2024-09-13T12:43:30.071 INFO:teuthology.orchestra.run.smithi070.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-13T12:43:30.071 INFO:teuthology.orchestra.run.smithi070.stdout: python3-rados x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 321 k 2024-09-13T12:43:30.071 INFO:teuthology.orchestra.run.smithi070.stdout: python3-rbd x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 305 k 2024-09-13T12:43:30.071 INFO:teuthology.orchestra.run.smithi070.stdout: python3-rgw x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 99 k 2024-09-13T12:43:30.071 INFO:teuthology.orchestra.run.smithi070.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-09-13T12:43:30.071 INFO:teuthology.orchestra.run.smithi070.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-09-13T12:43:30.072 INFO:teuthology.orchestra.run.smithi070.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-13T12:43:30.072 INFO:teuthology.orchestra.run.smithi070.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-13T12:43:30.072 INFO:teuthology.orchestra.run.smithi070.stdout:Installing weak dependencies: 2024-09-13T12:43:30.072 INFO:teuthology.orchestra.run.smithi070.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-09-13T12:43:30.072 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:30.072 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:43:30.072 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:43:30.072 INFO:teuthology.orchestra.run.smithi070.stdout:Install 30 Packages 2024-09-13T12:43:30.072 INFO:teuthology.orchestra.run.smithi070.stdout:Upgrade 2 Packages 2024-09-13T12:43:30.073 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:30.073 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 62 M 2024-09-13T12:43:30.073 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:43:30.123 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:43:30.125 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:43:30.125 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-09-13T12:43:30.125 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:43:30.125 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:43:30.125 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-radosgw x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 11 M 2024-09-13T12:43:30.126 INFO:teuthology.orchestra.run.smithi105.stdout:Upgrading: 2024-09-13T12:43:30.126 INFO:teuthology.orchestra.run.smithi105.stdout: librados2 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 3.5 M 2024-09-13T12:43:30.126 INFO:teuthology.orchestra.run.smithi105.stdout: librbd1 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 3.2 M 2024-09-13T12:43:30.126 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-09-13T12:43:30.126 INFO:teuthology.orchestra.run.smithi105.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-13T12:43:30.126 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-base x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 5.5 M 2024-09-13T12:43:30.126 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-common x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 22 M 2024-09-13T12:43:30.126 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-selinux x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 25 k 2024-09-13T12:43:30.126 INFO:teuthology.orchestra.run.smithi105.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-13T12:43:30.126 INFO:teuthology.orchestra.run.smithi105.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-13T12:43:30.126 INFO:teuthology.orchestra.run.smithi105.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-13T12:43:30.126 INFO:teuthology.orchestra.run.smithi105.stdout: libcephfs2 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 755 k 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: libradosstriper1 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 508 k 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: librgw2 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 5.5 M 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: python3-ceph-argparse x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 45 k 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: python3-ceph-common x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 143 k 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cephfs x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 161 k 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-13T12:43:30.127 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rados x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 321 k 2024-09-13T12:43:30.128 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rbd x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 305 k 2024-09-13T12:43:30.128 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rgw x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 99 k 2024-09-13T12:43:30.128 INFO:teuthology.orchestra.run.smithi105.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-09-13T12:43:30.128 INFO:teuthology.orchestra.run.smithi105.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-09-13T12:43:30.128 INFO:teuthology.orchestra.run.smithi105.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-13T12:43:30.128 INFO:teuthology.orchestra.run.smithi105.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-13T12:43:30.128 INFO:teuthology.orchestra.run.smithi105.stdout:Installing weak dependencies: 2024-09-13T12:43:30.128 INFO:teuthology.orchestra.run.smithi105.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-09-13T12:43:30.128 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:30.128 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:43:30.128 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:43:30.128 INFO:teuthology.orchestra.run.smithi105.stdout:Install 30 Packages 2024-09-13T12:43:30.129 INFO:teuthology.orchestra.run.smithi105.stdout:Upgrade 2 Packages 2024-09-13T12:43:30.129 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:30.129 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 62 M 2024-09-13T12:43:30.129 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:43:30.882 INFO:teuthology.orchestra.run.smithi070.stdout:(1/32): ceph-base-19.3.0-4697.gd58f7306.el9.x86 9.1 MB/s | 5.5 MB 00:00 2024-09-13T12:43:30.956 INFO:teuthology.orchestra.run.smithi070.stdout:(2/32): ceph-selinux-19.3.0-4697.gd58f7306.el9. 337 kB/s | 25 kB 00:00 2024-09-13T12:43:31.082 INFO:teuthology.orchestra.run.smithi070.stdout:(3/32): ceph-radosgw-19.3.0-4697.gd58f7306.el9. 14 MB/s | 11 MB 00:00 2024-09-13T12:43:31.115 INFO:teuthology.orchestra.run.smithi070.stdout:(4/32): libcephfs2-19.3.0-4697.gd58f7306.el9.x8 4.7 MB/s | 755 kB 00:00 2024-09-13T12:43:31.149 INFO:teuthology.orchestra.run.smithi070.stdout:(5/32): libradosstriper1-19.3.0-4697.gd58f7306. 7.4 MB/s | 508 kB 00:00 2024-09-13T12:43:31.208 INFO:teuthology.orchestra.run.smithi070.stdout:(6/32): python3-ceph-argparse-19.3.0-4697.gd58f 773 kB/s | 45 kB 00:00 2024-09-13T12:43:31.299 INFO:teuthology.orchestra.run.smithi070.stdout:(7/32): python3-ceph-common-19.3.0-4697.gd58f73 1.5 MB/s | 143 kB 00:00 2024-09-13T12:43:31.533 INFO:teuthology.orchestra.run.smithi070.stdout:(8/32): ceph-common-19.3.0-4697.gd58f7306.el9.x 17 MB/s | 22 MB 00:01 2024-09-13T12:43:31.559 INFO:teuthology.orchestra.run.smithi070.stdout:(9/32): python3-cephfs-19.3.0-4697.gd58f7306.el 624 kB/s | 161 kB 00:00 2024-09-13T12:43:31.566 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:43:31.568 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:43:31.568 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repository Size 2024-09-13T12:43:31.568 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:43:31.569 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:43:31.569 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-radosgw x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 11 M 2024-09-13T12:43:31.569 INFO:teuthology.orchestra.run.smithi086.stdout:Upgrading: 2024-09-13T12:43:31.569 INFO:teuthology.orchestra.run.smithi086.stdout: librados2 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 3.5 M 2024-09-13T12:43:31.569 INFO:teuthology.orchestra.run.smithi086.stdout: librbd1 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 3.2 M 2024-09-13T12:43:31.569 INFO:teuthology.orchestra.run.smithi086.stdout:Installing dependencies: 2024-09-13T12:43:31.569 INFO:teuthology.orchestra.run.smithi086.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-09-13T12:43:31.569 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-base x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 5.5 M 2024-09-13T12:43:31.569 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-common x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 22 M 2024-09-13T12:43:31.569 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-selinux x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 25 k 2024-09-13T12:43:31.569 INFO:teuthology.orchestra.run.smithi086.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2024-09-13T12:43:31.569 INFO:teuthology.orchestra.run.smithi086.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-09-13T12:43:31.569 INFO:teuthology.orchestra.run.smithi086.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-09-13T12:43:31.570 INFO:teuthology.orchestra.run.smithi086.stdout: libcephfs2 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 755 k 2024-09-13T12:43:31.570 INFO:teuthology.orchestra.run.smithi086.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-09-13T12:43:31.570 INFO:teuthology.orchestra.run.smithi086.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-09-13T12:43:31.570 INFO:teuthology.orchestra.run.smithi086.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-09-13T12:43:31.570 INFO:teuthology.orchestra.run.smithi086.stdout: libradosstriper1 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 508 k 2024-09-13T12:43:31.570 INFO:teuthology.orchestra.run.smithi086.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-09-13T12:43:31.570 INFO:teuthology.orchestra.run.smithi086.stdout: librgw2 x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 5.5 M 2024-09-13T12:43:31.570 INFO:teuthology.orchestra.run.smithi086.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-09-13T12:43:31.570 INFO:teuthology.orchestra.run.smithi086.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-09-13T12:43:31.570 INFO:teuthology.orchestra.run.smithi086.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-09-13T12:43:31.570 INFO:teuthology.orchestra.run.smithi086.stdout: python3-ceph-argparse x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 45 k 2024-09-13T12:43:31.570 INFO:teuthology.orchestra.run.smithi086.stdout: python3-ceph-common x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 143 k 2024-09-13T12:43:31.570 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cephfs x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 161 k 2024-09-13T12:43:31.571 INFO:teuthology.orchestra.run.smithi086.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-09-13T12:43:31.571 INFO:teuthology.orchestra.run.smithi086.stdout: python3-rados x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 321 k 2024-09-13T12:43:31.571 INFO:teuthology.orchestra.run.smithi086.stdout: python3-rbd x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 305 k 2024-09-13T12:43:31.571 INFO:teuthology.orchestra.run.smithi086.stdout: python3-rgw x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 99 k 2024-09-13T12:43:31.571 INFO:teuthology.orchestra.run.smithi086.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-09-13T12:43:31.571 INFO:teuthology.orchestra.run.smithi086.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-09-13T12:43:31.571 INFO:teuthology.orchestra.run.smithi086.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2024-09-13T12:43:31.571 INFO:teuthology.orchestra.run.smithi086.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-09-13T12:43:31.571 INFO:teuthology.orchestra.run.smithi086.stdout:Installing weak dependencies: 2024-09-13T12:43:31.571 INFO:teuthology.orchestra.run.smithi086.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-09-13T12:43:31.571 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:31.571 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:43:31.571 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:43:31.572 INFO:teuthology.orchestra.run.smithi086.stdout:Install 30 Packages 2024-09-13T12:43:31.572 INFO:teuthology.orchestra.run.smithi086.stdout:Upgrade 2 Packages 2024-09-13T12:43:31.572 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:31.572 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 62 M 2024-09-13T12:43:31.572 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:43:31.634 INFO:teuthology.orchestra.run.smithi070.stdout:(10/32): librgw2-19.3.0-4697.gd58f7306.el9.x86_ 11 MB/s | 5.5 MB 00:00 2024-09-13T12:43:31.659 INFO:teuthology.orchestra.run.smithi070.stdout:(11/32): python3-rados-19.3.0-4697.gd58f7306.el 2.5 MB/s | 321 kB 00:00 2024-09-13T12:43:31.684 INFO:teuthology.orchestra.run.smithi070.stdout:(12/32): python3-rgw-19.3.0-4697.gd58f7306.el9. 1.9 MB/s | 99 kB 00:00 2024-09-13T12:43:31.710 INFO:teuthology.orchestra.run.smithi070.stdout:(13/32): python3-rbd-19.3.0-4697.gd58f7306.el9. 2.0 MB/s | 305 kB 00:00 2024-09-13T12:43:31.899 INFO:teuthology.orchestra.run.smithi105.stdout:(1/32): ceph-base-19.3.0-4697.gd58f7306.el9.x86 3.8 MB/s | 5.5 MB 00:01 2024-09-13T12:43:31.950 INFO:teuthology.orchestra.run.smithi105.stdout:(2/32): ceph-selinux-19.3.0-4697.gd58f7306.el9. 503 kB/s | 25 kB 00:00 2024-09-13T12:43:32.092 INFO:teuthology.orchestra.run.smithi105.stdout:(3/32): libcephfs2-19.3.0-4697.gd58f7306.el9.x8 5.2 MB/s | 755 kB 00:00 2024-09-13T12:43:32.250 INFO:teuthology.orchestra.run.smithi105.stdout:(4/32): ceph-radosgw-19.3.0-4697.gd58f7306.el9. 6.0 MB/s | 11 MB 00:01 2024-09-13T12:43:32.285 INFO:teuthology.orchestra.run.smithi070.stdout:(14/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 79 kB/s | 45 kB 00:00 2024-09-13T12:43:32.292 INFO:teuthology.orchestra.run.smithi105.stdout:(5/32): libradosstriper1-19.3.0-4697.gd58f7306. 2.5 MB/s | 508 kB 00:00 2024-09-13T12:43:32.315 INFO:teuthology.orchestra.run.smithi086.stdout:(1/32): ceph-base-19.3.0-4697.gd58f7306.el9.x86 11 MB/s | 5.5 MB 00:00 2024-09-13T12:43:32.359 INFO:teuthology.orchestra.run.smithi105.stdout:(6/32): python3-ceph-argparse-19.3.0-4697.gd58f 679 kB/s | 45 kB 00:00 2024-09-13T12:43:32.373 INFO:teuthology.orchestra.run.smithi086.stdout:(2/32): ceph-selinux-19.3.0-4697.gd58f7306.el9. 433 kB/s | 25 kB 00:00 2024-09-13T12:43:32.385 INFO:teuthology.orchestra.run.smithi070.stdout:(15/32): boost-program-options-1.75.0-8.el9.x86 147 kB/s | 107 kB 00:00 2024-09-13T12:43:32.410 INFO:teuthology.orchestra.run.smithi070.stdout:(16/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 221 kB/s | 160 kB 00:00 2024-09-13T12:43:32.426 INFO:teuthology.orchestra.run.smithi105.stdout:(7/32): python3-ceph-common-19.3.0-4697.gd58f73 2.1 MB/s | 143 kB 00:00 2024-09-13T12:43:32.457 INFO:teuthology.orchestra.run.smithi086.stdout:(3/32): libcephfs2-19.3.0-4697.gd58f7306.el9.x8 8.8 MB/s | 755 kB 00:00 2024-09-13T12:43:32.501 INFO:teuthology.orchestra.run.smithi105.stdout:(8/32): python3-cephfs-19.3.0-4697.gd58f7306.el 2.1 MB/s | 161 kB 00:00 2024-09-13T12:43:32.541 INFO:teuthology.orchestra.run.smithi086.stdout:(4/32): libradosstriper1-19.3.0-4697.gd58f7306. 6.0 MB/s | 508 kB 00:00 2024-09-13T12:43:32.593 INFO:teuthology.orchestra.run.smithi105.stdout:(9/32): python3-rados-19.3.0-4697.gd58f7306.el9 3.4 MB/s | 321 kB 00:00 2024-09-13T12:43:32.718 INFO:teuthology.orchestra.run.smithi105.stdout:(10/32): librgw2-19.3.0-4697.gd58f7306.el9.x86_ 12 MB/s | 5.5 MB 00:00 2024-09-13T12:43:32.744 INFO:teuthology.orchestra.run.smithi105.stdout:(11/32): python3-rbd-19.3.0-4697.gd58f7306.el9. 2.0 MB/s | 305 kB 00:00 2024-09-13T12:43:32.803 INFO:teuthology.orchestra.run.smithi105.stdout:(12/32): python3-rgw-19.3.0-4697.gd58f7306.el9. 1.2 MB/s | 99 kB 00:00 2024-09-13T12:43:32.870 INFO:teuthology.orchestra.run.smithi105.stdout:(13/32): boost-program-options-1.75.0-8.el9.x86 852 kB/s | 107 kB 00:00 2024-09-13T12:43:32.903 INFO:teuthology.orchestra.run.smithi105.stdout:(14/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 1.3 MB/s | 45 kB 00:00 2024-09-13T12:43:32.920 INFO:teuthology.orchestra.run.smithi105.stdout:(15/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 1.3 MB/s | 160 kB 00:00 2024-09-13T12:43:32.958 INFO:teuthology.orchestra.run.smithi086.stdout:(5/32): librgw2-19.3.0-4697.gd58f7306.el9.x86_6 13 MB/s | 5.5 MB 00:00 2024-09-13T12:43:33.003 INFO:teuthology.orchestra.run.smithi070.stdout:(17/32): python3-prettytable-0.7.2-27.el9.noarc 71 kB/s | 42 kB 00:00 2024-09-13T12:43:33.008 INFO:teuthology.orchestra.run.smithi086.stdout:(6/32): python3-ceph-argparse-19.3.0-4697.gd58f 906 kB/s | 45 kB 00:00 2024-09-13T12:43:33.075 INFO:teuthology.orchestra.run.smithi086.stdout:(7/32): python3-ceph-common-19.3.0-4697.gd58f73 2.1 MB/s | 143 kB 00:00 2024-09-13T12:43:33.142 INFO:teuthology.orchestra.run.smithi086.stdout:(8/32): python3-cephfs-19.3.0-4697.gd58f7306.el 2.4 MB/s | 161 kB 00:00 2024-09-13T12:43:33.169 INFO:teuthology.orchestra.run.smithi070.stdout:(18/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 373 kB/s | 292 kB 00:00 2024-09-13T12:43:33.170 INFO:teuthology.orchestra.run.smithi105.stdout:(16/32): ceph-common-19.3.0-4697.gd58f7306.el9. 7.9 MB/s | 22 MB 00:02 2024-09-13T12:43:33.195 INFO:teuthology.orchestra.run.smithi105.stdout:(17/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.0 MB/s | 292 kB 00:00 2024-09-13T12:43:33.221 INFO:teuthology.orchestra.run.smithi105.stdout:(18/32): librdkafka-1.6.1-102.el9.x86_64.rpm 2.0 MB/s | 662 kB 00:00 2024-09-13T12:43:33.254 INFO:teuthology.orchestra.run.smithi105.stdout:(19/32): qatlib-24.02.0-1.el9.x86_64.rpm 3.7 MB/s | 221 kB 00:00 2024-09-13T12:43:33.261 INFO:teuthology.orchestra.run.smithi070.stdout:(19/32): librdkafka-1.6.1-102.el9.x86_64.rpm 679 kB/s | 662 kB 00:00 2024-09-13T12:43:33.280 INFO:teuthology.orchestra.run.smithi105.stdout:(20/32): python3-prettytable-0.7.2-27.el9.noarc 388 kB/s | 42 kB 00:00 2024-09-13T12:43:33.305 INFO:teuthology.orchestra.run.smithi105.stdout:(21/32): qatlib-service-24.02.0-1.el9.x86_64.rp 428 kB/s | 36 kB 00:00 2024-09-13T12:43:33.330 INFO:teuthology.orchestra.run.smithi105.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 629 kB/s | 47 kB 00:00 2024-09-13T12:43:33.368 INFO:teuthology.orchestra.run.smithi086.stdout:(9/32): ceph-common-19.3.0-4697.gd58f7306.el9.x 14 MB/s | 22 MB 00:01 2024-09-13T12:43:33.389 INFO:teuthology.orchestra.run.smithi105.stdout:(23/32): gperftools-libs-2.9.1-3.el9.x86_64.rpm 2.8 MB/s | 308 kB 00:00 2024-09-13T12:43:33.392 INFO:teuthology.orchestra.run.smithi086.stdout:(10/32): python3-rados-19.3.0-4697.gd58f7306.el 1.3 MB/s | 321 kB 00:00 2024-09-13T12:43:33.414 INFO:teuthology.orchestra.run.smithi105.stdout:(24/32): libarrow-doc-9.0.0-11.el9.noarch.rpm 379 kB/s | 26 kB 00:00 2024-09-13T12:43:33.426 INFO:teuthology.orchestra.run.smithi086.stdout:(11/32): python3-rbd-19.3.0-4697.gd58f7306.el9. 5.1 MB/s | 305 kB 00:00 2024-09-13T12:43:33.439 INFO:teuthology.orchestra.run.smithi105.stdout:(25/32): liboath-2.6.7-2.el9.x86_64.rpm 970 kB/s | 49 kB 00:00 2024-09-13T12:43:33.451 INFO:teuthology.orchestra.run.smithi086.stdout:(12/32): python3-rgw-19.3.0-4697.gd58f7306.el9. 1.7 MB/s | 99 kB 00:00 2024-09-13T12:43:33.464 INFO:teuthology.orchestra.run.smithi105.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 1.3 MB/s | 67 kB 00:00 2024-09-13T12:43:33.515 INFO:teuthology.orchestra.run.smithi105.stdout:(27/32): re2-20211101-20.el9.x86_64.rpm 3.7 MB/s | 191 kB 00:00 2024-09-13T12:43:33.548 INFO:teuthology.orchestra.run.smithi105.stdout:(28/32): parquet-libs-9.0.0-11.el9.x86_64.rpm 7.5 MB/s | 839 kB 00:00 2024-09-13T12:43:33.568 INFO:teuthology.orchestra.run.smithi086.stdout:(13/32): ceph-radosgw-19.3.0-4697.gd58f7306.el9 6.1 MB/s | 11 MB 00:01 2024-09-13T12:43:33.635 INFO:teuthology.orchestra.run.smithi086.stdout:(14/32): boost-program-options-1.75.0-8.el9.x86 512 kB/s | 107 kB 00:00 2024-09-13T12:43:33.677 INFO:teuthology.orchestra.run.smithi086.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 418 kB/s | 45 kB 00:00 2024-09-13T12:43:33.682 INFO:teuthology.orchestra.run.smithi105.stdout:(29/32): thrift-0.15.0-2.el9.x86_64.rpm 9.5 MB/s | 1.6 MB 00:00 2024-09-13T12:43:33.702 INFO:teuthology.orchestra.run.smithi086.stdout:(16/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 639 kB/s | 160 kB 00:00 2024-09-13T12:43:33.745 INFO:teuthology.orchestra.run.smithi070.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 62 kB/s | 36 kB 00:00 2024-09-13T12:43:33.752 INFO:teuthology.orchestra.run.smithi086.stdout:(17/32): python3-prettytable-0.7.2-27.el9.noarc 847 kB/s | 42 kB 00:00 2024-09-13T12:43:33.791 INFO:teuthology.orchestra.run.smithi105.stdout:(30/32): libarrow-9.0.0-11.el9.x86_64.rpm 9.1 MB/s | 4.4 MB 00:00 2024-09-13T12:43:33.794 INFO:teuthology.orchestra.run.smithi086.stdout:(18/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.4 MB/s | 292 kB 00:00 2024-09-13T12:43:33.795 INFO:teuthology.orchestra.run.smithi070.stdout:(21/32): gperftools-libs-2.9.1-3.el9.x86_64.rpm 6.1 MB/s | 308 kB 00:00 2024-09-13T12:43:33.812 INFO:teuthology.orchestra.run.smithi070.stdout:(22/32): qatlib-24.02.0-1.el9.x86_64.rpm 273 kB/s | 221 kB 00:00 2024-09-13T12:43:33.828 INFO:teuthology.orchestra.run.smithi086.stdout:(19/32): qatlib-24.02.0-1.el9.x86_64.rpm 2.9 MB/s | 221 kB 00:00 2024-09-13T12:43:33.853 INFO:teuthology.orchestra.run.smithi086.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 613 kB/s | 36 kB 00:00 2024-09-13T12:43:33.862 INFO:teuthology.orchestra.run.smithi070.stdout:(23/32): libarrow-doc-9.0.0-11.el9.noarch.rpm 520 kB/s | 26 kB 00:00 2024-09-13T12:43:33.878 INFO:teuthology.orchestra.run.smithi086.stdout:(21/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 948 kB/s | 47 kB 00:00 2024-09-13T12:43:33.887 INFO:teuthology.orchestra.run.smithi070.stdout:(24/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 76 kB/s | 47 kB 00:00 2024-09-13T12:43:33.913 INFO:teuthology.orchestra.run.smithi070.stdout:(25/32): liboath-2.6.7-2.el9.x86_64.rpm 987 kB/s | 49 kB 00:00 2024-09-13T12:43:33.929 INFO:teuthology.orchestra.run.smithi086.stdout:(22/32): gperftools-libs-2.9.1-3.el9.x86_64.rpm 4.0 MB/s | 308 kB 00:00 2024-09-13T12:43:33.933 INFO:teuthology.orchestra.run.smithi105.stdout:(31/32): librbd1-19.3.0-4697.gd58f7306.el9.x86_ 13 MB/s | 3.2 MB 00:00 2024-09-13T12:43:33.954 INFO:teuthology.orchestra.run.smithi086.stdout:(23/32): libarrow-doc-9.0.0-11.el9.noarch.rpm 1.0 MB/s | 26 kB 00:00 2024-09-13T12:43:33.963 INFO:teuthology.orchestra.run.smithi070.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 896 kB/s | 67 kB 00:00 2024-09-13T12:43:33.988 INFO:teuthology.orchestra.run.smithi086.stdout:(24/32): librdkafka-1.6.1-102.el9.x86_64.rpm 1.8 MB/s | 662 kB 00:00 2024-09-13T12:43:33.991 INFO:teuthology.orchestra.run.smithi105.stdout:(32/32): librados2-19.3.0-4697.gd58f7306.el9.x8 7.8 MB/s | 3.5 MB 00:00 2024-09-13T12:43:33.996 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:43:33.996 INFO:teuthology.orchestra.run.smithi105.stdout:Total 16 MB/s | 62 MB 00:03 2024-09-13T12:43:34.005 INFO:teuthology.orchestra.run.smithi070.stdout:(27/32): re2-20211101-20.el9.x86_64.rpm 4.5 MB/s | 191 kB 00:00 2024-09-13T12:43:34.013 INFO:teuthology.orchestra.run.smithi086.stdout:(25/32): liboath-2.6.7-2.el9.x86_64.rpm 829 kB/s | 49 kB 00:00 2024-09-13T12:43:34.063 INFO:teuthology.orchestra.run.smithi086.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 900 kB/s | 67 kB 00:00 2024-09-13T12:43:34.063 INFO:teuthology.orchestra.run.smithi070.stdout:(28/32): parquet-libs-9.0.0-11.el9.x86_64.rpm 5.7 MB/s | 839 kB 00:00 2024-09-13T12:43:34.096 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:43:34.131 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:43:34.131 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:43:34.188 INFO:teuthology.orchestra.run.smithi086.stdout:(27/32): re2-20211101-20.el9.x86_64.rpm 1.5 MB/s | 191 kB 00:00 2024-09-13T12:43:34.214 INFO:teuthology.orchestra.run.smithi070.stdout:(29/32): libarrow-9.0.0-11.el9.x86_64.rpm 11 MB/s | 4.4 MB 00:00 2024-09-13T12:43:34.230 INFO:teuthology.orchestra.run.smithi086.stdout:(28/32): parquet-libs-9.0.0-11.el9.x86_64.rpm 3.9 MB/s | 839 kB 00:00 2024-09-13T12:43:34.247 INFO:teuthology.orchestra.run.smithi070.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 6.5 MB/s | 1.6 MB 00:00 2024-09-13T12:43:34.373 INFO:teuthology.orchestra.run.smithi070.stdout:(31/32): librados2-19.3.0-4697.gd58f7306.el9.x8 11 MB/s | 3.5 MB 00:00 2024-09-13T12:43:34.380 INFO:teuthology.orchestra.run.smithi086.stdout:(29/32): libarrow-9.0.0-11.el9.x86_64.rpm 8.8 MB/s | 4.4 MB 00:00 2024-09-13T12:43:34.423 INFO:teuthology.orchestra.run.smithi086.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 6.8 MB/s | 1.6 MB 00:00 2024-09-13T12:43:34.515 INFO:teuthology.orchestra.run.smithi086.stdout:(31/32): librados2-19.3.0-4697.gd58f7306.el9.x8 12 MB/s | 3.5 MB 00:00 2024-09-13T12:43:34.531 INFO:teuthology.orchestra.run.smithi070.stdout:(32/32): librbd1-19.3.0-4697.gd58f7306.el9.x86_ 10 MB/s | 3.2 MB 00:00 2024-09-13T12:43:34.538 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:43:34.538 INFO:teuthology.orchestra.run.smithi070.stdout:Total 14 MB/s | 62 MB 00:04 2024-09-13T12:43:34.623 INFO:teuthology.orchestra.run.smithi086.stdout:(32/32): librbd1-19.3.0-4697.gd58f7306.el9.x86_ 13 MB/s | 3.2 MB 00:00 2024-09-13T12:43:34.629 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:43:34.629 INFO:teuthology.orchestra.run.smithi086.stdout:Total 20 MB/s | 62 MB 00:03 2024-09-13T12:43:34.643 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:43:34.645 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:43:34.646 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:43:34.679 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:43:34.680 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:43:34.737 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:43:34.773 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:43:34.773 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:43:35.193 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:43:35.194 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:43:35.302 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:43:35.302 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:43:36.113 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:43:36.203 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-09-13T12:43:36.257 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-09-13T12:43:36.289 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-09-13T12:43:36.311 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-09-13T12:43:36.335 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-09-13T12:43:36.505 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-09-13T12:43:36.557 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-09-13T12:43:36.641 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:43:36.719 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-09-13T12:43:36.761 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-09-13T12:43:36.771 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:43:36.794 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-09-13T12:43:36.817 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-09-13T12:43:36.836 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-09-13T12:43:36.850 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-09-13T12:43:36.878 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-09-13T12:43:36.902 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-09-13T12:43:36.911 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-09-13T12:43:36.934 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-09-13T12:43:36.961 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-09-13T12:43:37.011 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-09-13T12:43:37.023 INFO:teuthology.orchestra.run.smithi105.stdout: Upgrading : librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 7/34 2024-09-13T12:43:37.064 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-09-13T12:43:37.118 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 7/34 2024-09-13T12:43:37.120 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-09-13T12:43:37.173 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-09-13T12:43:37.208 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-rados-2:19.3.0-4697.gd58f7306.el9.x86_64 8/34 2024-09-13T12:43:37.235 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 9/34 2024-09-13T12:43:37.301 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 9/34 2024-09-13T12:43:37.339 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-09-13T12:43:37.388 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-ceph-argparse-2:19.3.0-4697.gd58f7306.el9. 11/34 2024-09-13T12:43:37.454 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-09-13T12:43:37.465 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-cephfs-2:19.3.0-4697.gd58f7306.el9.x86_64 12/34 2024-09-13T12:43:37.487 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libradosstriper1-2:19.3.0-4697.gd58f7306.el9.x86_6 13/34 2024-09-13T12:43:37.502 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-09-13T12:43:37.507 INFO:teuthology.orchestra.run.smithi070.stdout: Upgrading : librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 7/34 2024-09-13T12:43:37.550 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: libradosstriper1-2:19.3.0-4697.gd58f7306.el9.x86_6 13/34 2024-09-13T12:43:37.583 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 7/34 2024-09-13T12:43:37.585 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-09-13T12:43:37.613 INFO:teuthology.orchestra.run.smithi086.stdout: Upgrading : librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 7/34 2024-09-13T12:43:37.674 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-rados-2:19.3.0-4697.gd58f7306.el9.x86_64 8/34 2024-09-13T12:43:37.695 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 7/34 2024-09-13T12:43:37.702 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/34 2024-09-13T12:43:37.709 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 9/34 2024-09-13T12:43:37.753 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 16/34 2024-09-13T12:43:37.755 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 9/34 2024-09-13T12:43:37.784 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-09-13T12:43:37.785 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-rados-2:19.3.0-4697.gd58f7306.el9.x86_64 8/34 2024-09-13T12:43:37.794 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-09-13T12:43:37.821 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 9/34 2024-09-13T12:43:37.828 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-ceph-argparse-2:19.3.0-4697.gd58f7306.el9. 11/34 2024-09-13T12:43:37.834 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/34 2024-09-13T12:43:37.863 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 19/34 2024-09-13T12:43:37.875 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 9/34 2024-09-13T12:43:37.899 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-cephfs-2:19.3.0-4697.gd58f7306.el9.x86_64 12/34 2024-09-13T12:43:37.914 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-09-13T12:43:37.920 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : libradosstriper1-2:19.3.0-4697.gd58f7306.el9.x86_6 13/34 2024-09-13T12:43:37.921 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-09-13T12:43:37.964 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-ceph-argparse-2:19.3.0-4697.gd58f7306.el9. 11/34 2024-09-13T12:43:37.975 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: libradosstriper1-2:19.3.0-4697.gd58f7306.el9.x86_6 13/34 2024-09-13T12:43:38.002 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-09-13T12:43:38.033 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-cephfs-2:19.3.0-4697.gd58f7306.el9.x86_64 12/34 2024-09-13T12:43:38.057 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : libradosstriper1-2:19.3.0-4697.gd58f7306.el9.x86_6 13/34 2024-09-13T12:43:38.120 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: libradosstriper1-2:19.3.0-4697.gd58f7306.el9.x86_6 13/34 2024-09-13T12:43:38.121 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/34 2024-09-13T12:43:38.153 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 16/34 2024-09-13T12:43:38.155 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-09-13T12:43:38.194 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-09-13T12:43:38.226 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/34 2024-09-13T12:43:38.235 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-09-13T12:43:38.255 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 19/34 2024-09-13T12:43:38.271 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/34 2024-09-13T12:43:38.288 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-09-13T12:43:38.331 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 16/34 2024-09-13T12:43:38.372 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-09-13T12:43:38.404 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/34 2024-09-13T12:43:38.433 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 19/34 2024-09-13T12:43:38.446 INFO:teuthology.orchestra.run.smithi105.stdout: Upgrading : librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 22/34 2024-09-13T12:43:38.469 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-09-13T12:43:38.534 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 22/34 2024-09-13T12:43:38.564 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-rbd-2:19.3.0-4697.gd58f7306.el9.x86_64 23/34 2024-09-13T12:43:38.600 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-09-13T12:43:38.613 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-09-13T12:43:38.659 INFO:teuthology.orchestra.run.smithi070.stdout: Upgrading : librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 22/34 2024-09-13T12:43:38.742 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 22/34 2024-09-13T12:43:38.781 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-rbd-2:19.3.0-4697.gd58f7306.el9.x86_64 23/34 2024-09-13T12:43:38.792 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-09-13T12:43:38.817 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-09-13T12:43:38.829 INFO:teuthology.orchestra.run.smithi086.stdout: Upgrading : librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 22/34 2024-09-13T12:43:38.919 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 22/34 2024-09-13T12:43:38.951 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-rbd-2:19.3.0-4697.gd58f7306.el9.x86_64 23/34 2024-09-13T12:43:38.986 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-09-13T12:43:39.089 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 25/34 2024-09-13T12:43:39.112 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : librgw2-2:19.3.0-4697.gd58f7306.el9.x86_64 26/34 2024-09-13T12:43:39.175 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: librgw2-2:19.3.0-4697.gd58f7306.el9.x86_64 26/34 2024-09-13T12:43:39.235 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-rgw-2:19.3.0-4697.gd58f7306.el9.x86_64 27/34 2024-09-13T12:43:39.264 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-ceph-common-2:19.3.0-4697.gd58f7306.el9.x8 28/34 2024-09-13T12:43:39.307 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 25/34 2024-09-13T12:43:39.345 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : librgw2-2:19.3.0-4697.gd58f7306.el9.x86_64 26/34 2024-09-13T12:43:39.416 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: librgw2-2:19.3.0-4697.gd58f7306.el9.x86_64 26/34 2024-09-13T12:43:39.477 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 25/34 2024-09-13T12:43:39.494 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-rgw-2:19.3.0-4697.gd58f7306.el9.x86_64 27/34 2024-09-13T12:43:39.515 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : librgw2-2:19.3.0-4697.gd58f7306.el9.x86_64 26/34 2024-09-13T12:43:39.522 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-ceph-common-2:19.3.0-4697.gd58f7306.el9.x8 28/34 2024-09-13T12:43:39.586 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: librgw2-2:19.3.0-4697.gd58f7306.el9.x86_64 26/34 2024-09-13T12:43:39.672 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-rgw-2:19.3.0-4697.gd58f7306.el9.x86_64 27/34 2024-09-13T12:43:39.700 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-ceph-common-2:19.3.0-4697.gd58f7306.el9.x8 28/34 2024-09-13T12:43:41.589 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 29/34 2024-09-13T12:43:41.644 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 29/34 2024-09-13T12:43:41.876 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 29/34 2024-09-13T12:43:41.919 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 29/34 2024-09-13T12:43:42.039 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 29/34 2024-09-13T12:43:42.079 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 29/34 2024-09-13T12:43:42.232 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 29/34 2024-09-13T12:43:42.264 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 30/34 2024-09-13T12:43:42.373 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 30/34 2024-09-13T12:43:42.373 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-13T12:43:42.373 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-13T12:43:42.373 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:42.407 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-selinux-2:19.3.0-4697.gd58f7306.el9.x86_64 31/34 2024-09-13T12:43:42.494 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 29/34 2024-09-13T12:43:42.530 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 30/34 2024-09-13T12:43:42.618 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 30/34 2024-09-13T12:43:42.618 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-13T12:43:42.619 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-13T12:43:42.619 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:42.657 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-selinux-2:19.3.0-4697.gd58f7306.el9.x86_64 31/34 2024-09-13T12:43:42.672 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 29/34 2024-09-13T12:43:42.708 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 30/34 2024-09-13T12:43:42.781 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 30/34 2024-09-13T12:43:42.781 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-09-13T12:43:42.782 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-09-13T12:43:42.782 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:42.817 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-selinux-2:19.3.0-4697.gd58f7306.el9.x86_64 31/34 2024-09-13T12:43:52.367 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-selinux-2:19.3.0-4697.gd58f7306.el9.x86_64 31/34 2024-09-13T12:43:52.367 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /sys 2024-09-13T12:43:52.367 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /proc 2024-09-13T12:43:52.368 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /mnt 2024-09-13T12:43:52.368 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /var/tmp 2024-09-13T12:43:52.368 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /home 2024-09-13T12:43:52.368 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /root 2024-09-13T12:43:52.368 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /tmp 2024-09-13T12:43:52.368 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:52.572 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-selinux-2:19.3.0-4697.gd58f7306.el9.x86_64 31/34 2024-09-13T12:43:52.572 INFO:teuthology.orchestra.run.smithi070.stdout:skipping the directory /sys 2024-09-13T12:43:52.572 INFO:teuthology.orchestra.run.smithi070.stdout:skipping the directory /proc 2024-09-13T12:43:52.572 INFO:teuthology.orchestra.run.smithi070.stdout:skipping the directory /mnt 2024-09-13T12:43:52.572 INFO:teuthology.orchestra.run.smithi070.stdout:skipping the directory /var/tmp 2024-09-13T12:43:52.572 INFO:teuthology.orchestra.run.smithi070.stdout:skipping the directory /home 2024-09-13T12:43:52.572 INFO:teuthology.orchestra.run.smithi070.stdout:skipping the directory /root 2024-09-13T12:43:52.572 INFO:teuthology.orchestra.run.smithi070.stdout:skipping the directory /tmp 2024-09-13T12:43:52.573 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:52.681 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-selinux-2:19.3.0-4697.gd58f7306.el9.x86_64 31/34 2024-09-13T12:43:52.681 INFO:teuthology.orchestra.run.smithi086.stdout:skipping the directory /sys 2024-09-13T12:43:52.681 INFO:teuthology.orchestra.run.smithi086.stdout:skipping the directory /proc 2024-09-13T12:43:52.681 INFO:teuthology.orchestra.run.smithi086.stdout:skipping the directory /mnt 2024-09-13T12:43:52.681 INFO:teuthology.orchestra.run.smithi086.stdout:skipping the directory /var/tmp 2024-09-13T12:43:52.681 INFO:teuthology.orchestra.run.smithi086.stdout:skipping the directory /home 2024-09-13T12:43:52.681 INFO:teuthology.orchestra.run.smithi086.stdout:skipping the directory /root 2024-09-13T12:43:52.682 INFO:teuthology.orchestra.run.smithi086.stdout:skipping the directory /tmp 2024-09-13T12:43:52.682 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:53.385 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-radosgw-2:19.3.0-4697.gd58f7306.el9.x86_64 32/34 2024-09-13T12:43:53.408 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-radosgw-2:19.3.0-4697.gd58f7306.el9.x86_64 32/34 2024-09-13T12:43:53.408 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:43:53.408 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-13T12:43:53.408 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-13T12:43:53.408 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-13T12:43:53.408 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:53.410 INFO:teuthology.orchestra.run.smithi105.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-09-13T12:43:53.493 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-09-13T12:43:53.493 INFO:teuthology.orchestra.run.smithi105.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-09-13T12:43:53.608 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-radosgw-2:19.3.0-4697.gd58f7306.el9.x86_64 32/34 2024-09-13T12:43:53.634 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-radosgw-2:19.3.0-4697.gd58f7306.el9.x86_64 32/34 2024-09-13T12:43:53.634 INFO:teuthology.orchestra.run.smithi070.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:43:53.635 INFO:teuthology.orchestra.run.smithi070.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-13T12:43:53.635 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-13T12:43:53.635 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-13T12:43:53.635 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:53.636 INFO:teuthology.orchestra.run.smithi070.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-09-13T12:43:53.656 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-radosgw-2:19.3.0-4697.gd58f7306.el9.x86_64 32/34 2024-09-13T12:43:53.682 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-radosgw-2:19.3.0-4697.gd58f7306.el9.x86_64 32/34 2024-09-13T12:43:53.682 INFO:teuthology.orchestra.run.smithi086.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:43:53.682 INFO:teuthology.orchestra.run.smithi086.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-09-13T12:43:53.682 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-13T12:43:53.682 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-09-13T12:43:53.682 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:53.684 INFO:teuthology.orchestra.run.smithi086.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-09-13T12:43:53.735 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-09-13T12:43:53.735 INFO:teuthology.orchestra.run.smithi070.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-09-13T12:43:53.767 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-09-13T12:43:53.767 INFO:teuthology.orchestra.run.smithi086.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-09-13T12:43:54.616 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-09-13T12:43:54.616 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 1/34 2024-09-13T12:43:54.616 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 2/34 2024-09-13T12:43:54.616 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-radosgw-2:19.3.0-4697.gd58f7306.el9.x86_64 3/34 2024-09-13T12:43:54.616 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-selinux-2:19.3.0-4697.gd58f7306.el9.x86_64 4/34 2024-09-13T12:43:54.616 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 5/34 2024-09-13T12:43:54.617 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libradosstriper1-2:19.3.0-4697.gd58f7306.el9.x86_6 6/34 2024-09-13T12:43:54.617 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librgw2-2:19.3.0-4697.gd58f7306.el9.x86_64 7/34 2024-09-13T12:43:54.617 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-ceph-argparse-2:19.3.0-4697.gd58f7306.el9. 8/34 2024-09-13T12:43:54.617 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-ceph-common-2:19.3.0-4697.gd58f7306.el9.x8 9/34 2024-09-13T12:43:54.617 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-cephfs-2:19.3.0-4697.gd58f7306.el9.x86_64 10/34 2024-09-13T12:43:54.617 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-rados-2:19.3.0-4697.gd58f7306.el9.x86_64 11/34 2024-09-13T12:43:54.617 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-rbd-2:19.3.0-4697.gd58f7306.el9.x86_64 12/34 2024-09-13T12:43:54.617 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-rgw-2:19.3.0-4697.gd58f7306.el9.x86_64 13/34 2024-09-13T12:43:54.617 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-09-13T12:43:54.617 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-09-13T12:43:54.617 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-09-13T12:43:54.617 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-09-13T12:43:54.617 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-09-13T12:43:54.618 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-09-13T12:43:54.618 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-09-13T12:43:54.618 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-09-13T12:43:54.618 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-09-13T12:43:54.618 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 23/34 2024-09-13T12:43:54.618 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 24/34 2024-09-13T12:43:54.618 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 25/34 2024-09-13T12:43:54.618 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-09-13T12:43:54.618 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-09-13T12:43:54.618 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 28/34 2024-09-13T12:43:54.618 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : re2-1:20211101-20.el9.x86_64 29/34 2024-09-13T12:43:54.618 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-09-13T12:43:54.619 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 31/34 2024-09-13T12:43:54.619 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-09-13T12:43:54.619 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 33/34 2024-09-13T12:43:54.881 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-09-13T12:43:54.881 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 1/34 2024-09-13T12:43:54.881 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 2/34 2024-09-13T12:43:54.881 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-radosgw-2:19.3.0-4697.gd58f7306.el9.x86_64 3/34 2024-09-13T12:43:54.881 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-selinux-2:19.3.0-4697.gd58f7306.el9.x86_64 4/34 2024-09-13T12:43:54.881 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 5/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : libradosstriper1-2:19.3.0-4697.gd58f7306.el9.x86_6 6/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : librgw2-2:19.3.0-4697.gd58f7306.el9.x86_64 7/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-ceph-argparse-2:19.3.0-4697.gd58f7306.el9. 8/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-ceph-common-2:19.3.0-4697.gd58f7306.el9.x8 9/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-cephfs-2:19.3.0-4697.gd58f7306.el9.x86_64 10/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-rados-2:19.3.0-4697.gd58f7306.el9.x86_64 11/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-rbd-2:19.3.0-4697.gd58f7306.el9.x86_64 12/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-rgw-2:19.3.0-4697.gd58f7306.el9.x86_64 13/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-09-13T12:43:54.882 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-09-13T12:43:54.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-09-13T12:43:54.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-09-13T12:43:54.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-09-13T12:43:54.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 23/34 2024-09-13T12:43:54.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 24/34 2024-09-13T12:43:54.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 25/34 2024-09-13T12:43:54.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-09-13T12:43:54.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-09-13T12:43:54.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 28/34 2024-09-13T12:43:54.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : re2-1:20211101-20.el9.x86_64 29/34 2024-09-13T12:43:54.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-09-13T12:43:54.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 31/34 2024-09-13T12:43:54.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-09-13T12:43:54.884 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 33/34 2024-09-13T12:43:54.934 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-09-13T12:43:54.934 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 1/34 2024-09-13T12:43:54.934 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 2/34 2024-09-13T12:43:54.934 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-radosgw-2:19.3.0-4697.gd58f7306.el9.x86_64 3/34 2024-09-13T12:43:54.934 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-selinux-2:19.3.0-4697.gd58f7306.el9.x86_64 4/34 2024-09-13T12:43:54.934 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 5/34 2024-09-13T12:43:54.934 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : libradosstriper1-2:19.3.0-4697.gd58f7306.el9.x86_6 6/34 2024-09-13T12:43:54.934 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : librgw2-2:19.3.0-4697.gd58f7306.el9.x86_64 7/34 2024-09-13T12:43:54.934 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-ceph-argparse-2:19.3.0-4697.gd58f7306.el9. 8/34 2024-09-13T12:43:54.934 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-ceph-common-2:19.3.0-4697.gd58f7306.el9.x8 9/34 2024-09-13T12:43:54.935 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-cephfs-2:19.3.0-4697.gd58f7306.el9.x86_64 10/34 2024-09-13T12:43:54.935 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-rados-2:19.3.0-4697.gd58f7306.el9.x86_64 11/34 2024-09-13T12:43:54.935 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-rbd-2:19.3.0-4697.gd58f7306.el9.x86_64 12/34 2024-09-13T12:43:54.935 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-rgw-2:19.3.0-4697.gd58f7306.el9.x86_64 13/34 2024-09-13T12:43:54.935 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-09-13T12:43:54.935 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-09-13T12:43:54.935 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-09-13T12:43:54.935 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-09-13T12:43:54.935 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-09-13T12:43:54.935 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-09-13T12:43:54.935 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-09-13T12:43:54.935 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-09-13T12:43:54.936 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-09-13T12:43:54.936 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 23/34 2024-09-13T12:43:54.936 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 24/34 2024-09-13T12:43:54.936 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 25/34 2024-09-13T12:43:54.936 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-09-13T12:43:54.936 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-09-13T12:43:54.936 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 28/34 2024-09-13T12:43:54.936 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : re2-1:20211101-20.el9.x86_64 29/34 2024-09-13T12:43:54.936 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-09-13T12:43:54.936 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 31/34 2024-09-13T12:43:54.936 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-09-13T12:43:54.936 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 33/34 2024-09-13T12:43:55.541 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-09-13T12:43:55.542 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:55.542 INFO:teuthology.orchestra.run.smithi105.stdout:Upgraded: 2024-09-13T12:43:55.542 INFO:teuthology.orchestra.run.smithi105.stdout: librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.542 INFO:teuthology.orchestra.run.smithi105.stdout: librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.542 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:43:55.542 INFO:teuthology.orchestra.run.smithi105.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-13T12:43:55.542 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.542 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.542 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-radosgw-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.542 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-selinux-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.542 INFO:teuthology.orchestra.run.smithi105.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-13T12:43:55.543 INFO:teuthology.orchestra.run.smithi105.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-13T12:43:55.543 INFO:teuthology.orchestra.run.smithi105.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-13T12:43:55.543 INFO:teuthology.orchestra.run.smithi105.stdout: libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.543 INFO:teuthology.orchestra.run.smithi105.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-13T12:43:55.543 INFO:teuthology.orchestra.run.smithi105.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-13T12:43:55.543 INFO:teuthology.orchestra.run.smithi105.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-13T12:43:55.543 INFO:teuthology.orchestra.run.smithi105.stdout: libradosstriper1-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.543 INFO:teuthology.orchestra.run.smithi105.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-13T12:43:55.543 INFO:teuthology.orchestra.run.smithi105.stdout: librgw2-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.543 INFO:teuthology.orchestra.run.smithi105.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-13T12:43:55.543 INFO:teuthology.orchestra.run.smithi105.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-13T12:43:55.543 INFO:teuthology.orchestra.run.smithi105.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-13T12:43:55.544 INFO:teuthology.orchestra.run.smithi105.stdout: python3-ceph-argparse-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.544 INFO:teuthology.orchestra.run.smithi105.stdout: python3-ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.544 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cephfs-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.544 INFO:teuthology.orchestra.run.smithi105.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-13T12:43:55.544 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rados-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.544 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rbd-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.544 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rgw-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.544 INFO:teuthology.orchestra.run.smithi105.stdout: qatlib-24.02.0-1.el9.x86_64 2024-09-13T12:43:55.544 INFO:teuthology.orchestra.run.smithi105.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-09-13T12:43:55.544 INFO:teuthology.orchestra.run.smithi105.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-09-13T12:43:55.544 INFO:teuthology.orchestra.run.smithi105.stdout: re2-1:20211101-20.el9.x86_64 2024-09-13T12:43:55.544 INFO:teuthology.orchestra.run.smithi105.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-13T12:43:55.544 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:55.545 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:43:55.826 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-09-13T12:43:55.826 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:55.826 INFO:teuthology.orchestra.run.smithi070.stdout:Upgraded: 2024-09-13T12:43:55.827 INFO:teuthology.orchestra.run.smithi070.stdout: librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.827 INFO:teuthology.orchestra.run.smithi070.stdout: librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.827 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:43:55.827 INFO:teuthology.orchestra.run.smithi070.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-13T12:43:55.827 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.827 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.827 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-radosgw-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.827 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-selinux-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.827 INFO:teuthology.orchestra.run.smithi070.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-13T12:43:55.827 INFO:teuthology.orchestra.run.smithi070.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-13T12:43:55.827 INFO:teuthology.orchestra.run.smithi070.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-13T12:43:55.827 INFO:teuthology.orchestra.run.smithi070.stdout: libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.828 INFO:teuthology.orchestra.run.smithi070.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-13T12:43:55.828 INFO:teuthology.orchestra.run.smithi070.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-13T12:43:55.828 INFO:teuthology.orchestra.run.smithi070.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-13T12:43:55.828 INFO:teuthology.orchestra.run.smithi070.stdout: libradosstriper1-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.828 INFO:teuthology.orchestra.run.smithi070.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-13T12:43:55.828 INFO:teuthology.orchestra.run.smithi070.stdout: librgw2-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.828 INFO:teuthology.orchestra.run.smithi070.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-13T12:43:55.828 INFO:teuthology.orchestra.run.smithi070.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-13T12:43:55.828 INFO:teuthology.orchestra.run.smithi070.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-13T12:43:55.828 INFO:teuthology.orchestra.run.smithi070.stdout: python3-ceph-argparse-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.828 INFO:teuthology.orchestra.run.smithi070.stdout: python3-ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.828 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cephfs-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.828 INFO:teuthology.orchestra.run.smithi070.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-13T12:43:55.829 INFO:teuthology.orchestra.run.smithi070.stdout: python3-rados-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.829 INFO:teuthology.orchestra.run.smithi070.stdout: python3-rbd-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.829 INFO:teuthology.orchestra.run.smithi070.stdout: python3-rgw-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:55.829 INFO:teuthology.orchestra.run.smithi070.stdout: qatlib-24.02.0-1.el9.x86_64 2024-09-13T12:43:55.829 INFO:teuthology.orchestra.run.smithi070.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-09-13T12:43:55.829 INFO:teuthology.orchestra.run.smithi070.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-09-13T12:43:55.829 INFO:teuthology.orchestra.run.smithi070.stdout: re2-1:20211101-20.el9.x86_64 2024-09-13T12:43:55.829 INFO:teuthology.orchestra.run.smithi070.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-13T12:43:55.829 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:55.829 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:43:55.933 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-test 2024-09-13T12:43:55.999 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-09-13T12:43:55.999 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:56.000 INFO:teuthology.orchestra.run.smithi086.stdout:Upgraded: 2024-09-13T12:43:56.000 INFO:teuthology.orchestra.run.smithi086.stdout: librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.000 INFO:teuthology.orchestra.run.smithi086.stdout: librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.000 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:43:56.000 INFO:teuthology.orchestra.run.smithi086.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-09-13T12:43:56.000 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.000 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.000 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-radosgw-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.000 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-selinux-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.000 INFO:teuthology.orchestra.run.smithi086.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2024-09-13T12:43:56.000 INFO:teuthology.orchestra.run.smithi086.stdout: libarrow-9.0.0-11.el9.x86_64 2024-09-13T12:43:56.001 INFO:teuthology.orchestra.run.smithi086.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-09-13T12:43:56.001 INFO:teuthology.orchestra.run.smithi086.stdout: libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.001 INFO:teuthology.orchestra.run.smithi086.stdout: liboath-2.6.7-2.el9.x86_64 2024-09-13T12:43:56.001 INFO:teuthology.orchestra.run.smithi086.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-09-13T12:43:56.001 INFO:teuthology.orchestra.run.smithi086.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-09-13T12:43:56.001 INFO:teuthology.orchestra.run.smithi086.stdout: libradosstriper1-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.001 INFO:teuthology.orchestra.run.smithi086.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-09-13T12:43:56.001 INFO:teuthology.orchestra.run.smithi086.stdout: librgw2-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.001 INFO:teuthology.orchestra.run.smithi086.stdout: libunwind-1.6.2-1.el9.x86_64 2024-09-13T12:43:56.001 INFO:teuthology.orchestra.run.smithi086.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-09-13T12:43:56.001 INFO:teuthology.orchestra.run.smithi086.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-09-13T12:43:56.001 INFO:teuthology.orchestra.run.smithi086.stdout: python3-ceph-argparse-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.002 INFO:teuthology.orchestra.run.smithi086.stdout: python3-ceph-common-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.002 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cephfs-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.002 INFO:teuthology.orchestra.run.smithi086.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-09-13T12:43:56.002 INFO:teuthology.orchestra.run.smithi086.stdout: python3-rados-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.002 INFO:teuthology.orchestra.run.smithi086.stdout: python3-rbd-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.002 INFO:teuthology.orchestra.run.smithi086.stdout: python3-rgw-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:43:56.002 INFO:teuthology.orchestra.run.smithi086.stdout: qatlib-24.02.0-1.el9.x86_64 2024-09-13T12:43:56.002 INFO:teuthology.orchestra.run.smithi086.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-09-13T12:43:56.002 INFO:teuthology.orchestra.run.smithi086.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-09-13T12:43:56.002 INFO:teuthology.orchestra.run.smithi086.stdout: re2-1:20211101-20.el9.x86_64 2024-09-13T12:43:56.002 INFO:teuthology.orchestra.run.smithi086.stdout: thrift-0.15.0-2.el9.x86_64 2024-09-13T12:43:56.002 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:56.002 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:43:56.213 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install ceph-test 2024-09-13T12:43:56.375 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install ceph-test 2024-09-13T12:43:56.504 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:00:29 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:43:56.636 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:43:56.636 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:43:56.636 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-09-13T12:43:56.636 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:43:56.636 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:43:56.637 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-test x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 50 M 2024-09-13T12:43:56.637 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-09-13T12:43:56.637 INFO:teuthology.orchestra.run.smithi105.stdout: libcephsqlite x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 161 k 2024-09-13T12:43:56.637 INFO:teuthology.orchestra.run.smithi105.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-13T12:43:56.637 INFO:teuthology.orchestra.run.smithi105.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-13T12:43:56.637 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:56.637 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:43:56.637 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:43:56.637 INFO:teuthology.orchestra.run.smithi105.stdout:Install 4 Packages 2024-09-13T12:43:56.637 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:43:56.638 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 51 M 2024-09-13T12:43:56.638 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 216 M 2024-09-13T12:43:56.638 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:43:56.788 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:00:29 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:43:56.833 INFO:teuthology.orchestra.run.smithi105.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 2.1 MB/s | 304 kB 00:00 2024-09-13T12:43:56.867 INFO:teuthology.orchestra.run.smithi105.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.9 MB/s | 64 kB 00:00 2024-09-13T12:43:56.917 INFO:teuthology.orchestra.run.smithi105.stdout:(3/4): libcephsqlite-19.3.0-4697.gd58f7306.el9. 706 kB/s | 161 kB 00:00 2024-09-13T12:43:56.919 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:43:56.920 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:43:56.920 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repository Size 2024-09-13T12:43:56.920 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:43:56.921 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:43:56.921 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-test x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 50 M 2024-09-13T12:43:56.921 INFO:teuthology.orchestra.run.smithi070.stdout:Installing dependencies: 2024-09-13T12:43:56.921 INFO:teuthology.orchestra.run.smithi070.stdout: libcephsqlite x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 161 k 2024-09-13T12:43:56.921 INFO:teuthology.orchestra.run.smithi070.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-13T12:43:56.921 INFO:teuthology.orchestra.run.smithi070.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-13T12:43:56.921 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:56.921 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:43:56.922 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:43:56.922 INFO:teuthology.orchestra.run.smithi070.stdout:Install 4 Packages 2024-09-13T12:43:56.922 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:43:56.922 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 51 M 2024-09-13T12:43:56.923 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 216 M 2024-09-13T12:43:56.923 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:43:56.938 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:00:27 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:43:57.067 INFO:teuthology.orchestra.run.smithi070.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 2.4 MB/s | 304 kB 00:00 2024-09-13T12:43:57.069 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:43:57.070 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:43:57.070 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repository Size 2024-09-13T12:43:57.070 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:43:57.070 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:43:57.070 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-test x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 50 M 2024-09-13T12:43:57.070 INFO:teuthology.orchestra.run.smithi086.stdout:Installing dependencies: 2024-09-13T12:43:57.070 INFO:teuthology.orchestra.run.smithi086.stdout: libcephsqlite x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 161 k 2024-09-13T12:43:57.071 INFO:teuthology.orchestra.run.smithi086.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-09-13T12:43:57.071 INFO:teuthology.orchestra.run.smithi086.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-09-13T12:43:57.071 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:57.071 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:43:57.071 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:43:57.071 INFO:teuthology.orchestra.run.smithi086.stdout:Install 4 Packages 2024-09-13T12:43:57.071 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:43:57.071 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 51 M 2024-09-13T12:43:57.072 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 216 M 2024-09-13T12:43:57.072 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:43:57.101 INFO:teuthology.orchestra.run.smithi070.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.9 MB/s | 64 kB 00:00 2024-09-13T12:43:57.168 INFO:teuthology.orchestra.run.smithi070.stdout:(3/4): libcephsqlite-19.3.0-4697.gd58f7306.el9. 723 kB/s | 161 kB 00:00 2024-09-13T12:43:57.250 INFO:teuthology.orchestra.run.smithi086.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 2.3 MB/s | 304 kB 00:00 2024-09-13T12:43:57.292 INFO:teuthology.orchestra.run.smithi086.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.5 MB/s | 64 kB 00:00 2024-09-13T12:43:57.483 INFO:teuthology.orchestra.run.smithi086.stdout:(3/4): libcephsqlite-19.3.0-4697.gd58f7306.el9. 442 kB/s | 161 kB 00:00 2024-09-13T12:43:58.359 INFO:teuthology.orchestra.run.smithi105.stdout:(4/4): ceph-test-19.3.0-4697.gd58f7306.el9.x86_ 30 MB/s | 50 MB 00:01 2024-09-13T12:43:58.361 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:43:58.361 INFO:teuthology.orchestra.run.smithi105.stdout:Total 29 MB/s | 51 MB 00:01 2024-09-13T12:43:58.389 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:43:58.409 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:43:58.409 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:43:58.792 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:43:58.792 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:43:59.340 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:43:59.424 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-13T12:43:59.443 INFO:teuthology.orchestra.run.smithi070.stdout:(4/4): ceph-test-19.3.0-4697.gd58f7306.el9.x86_ 20 MB/s | 50 MB 00:02 2024-09-13T12:43:59.445 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:43:59.445 INFO:teuthology.orchestra.run.smithi070.stdout:Total 20 MB/s | 51 MB 00:02 2024-09-13T12:43:59.473 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:43:59.483 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-13T12:43:59.493 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:43:59.493 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:43:59.511 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libcephsqlite-2:19.3.0-4697.gd58f7306.el9.x86_64 3/4 2024-09-13T12:43:59.875 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:43:59.875 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:44:00.175 INFO:teuthology.orchestra.run.smithi086.stdout:(4/4): ceph-test-19.3.0-4697.gd58f7306.el9.x86_ 16 MB/s | 50 MB 00:03 2024-09-13T12:44:00.177 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:00.178 INFO:teuthology.orchestra.run.smithi086.stdout:Total 16 MB/s | 51 MB 00:03 2024-09-13T12:44:00.206 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:44:00.226 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:44:00.227 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:44:00.441 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:44:00.519 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-13T12:44:00.563 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-13T12:44:00.586 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : libcephsqlite-2:19.3.0-4697.gd58f7306.el9.x86_64 3/4 2024-09-13T12:44:00.607 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:44:00.608 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:44:01.136 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:44:01.230 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-09-13T12:44:01.280 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-09-13T12:44:01.302 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : libcephsqlite-2:19.3.0-4697.gd58f7306.el9.x86_64 3/4 2024-09-13T12:44:04.263 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: libcephsqlite-2:19.3.0-4697.gd58f7306.el9.x86_64 3/4 2024-09-13T12:44:04.351 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-test-2:19.3.0-4697.gd58f7306.el9.x86_64 4/4 2024-09-13T12:44:05.368 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: libcephsqlite-2:19.3.0-4697.gd58f7306.el9.x86_64 3/4 2024-09-13T12:44:05.442 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-test-2:19.3.0-4697.gd58f7306.el9.x86_64 4/4 2024-09-13T12:44:06.068 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: libcephsqlite-2:19.3.0-4697.gd58f7306.el9.x86_64 3/4 2024-09-13T12:44:06.142 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-test-2:19.3.0-4697.gd58f7306.el9.x86_64 4/4 2024-09-13T12:44:06.781 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-test-2:19.3.0-4697.gd58f7306.el9.x86_64 4/4 2024-09-13T12:44:06.781 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-test-2:19.3.0-4697.gd58f7306.el9.x86_64 1/4 2024-09-13T12:44:06.781 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libcephsqlite-2:19.3.0-4697.gd58f7306.el9.x86_64 2/4 2024-09-13T12:44:06.782 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-13T12:44:07.092 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-13T12:44:07.092 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:07.092 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:44:07.092 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-test-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:07.092 INFO:teuthology.orchestra.run.smithi105.stdout: libcephsqlite-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:07.093 INFO:teuthology.orchestra.run.smithi105.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-13T12:44:07.093 INFO:teuthology.orchestra.run.smithi105.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-13T12:44:07.093 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:07.093 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:44:07.408 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph 2024-09-13T12:44:07.863 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-test-2:19.3.0-4697.gd58f7306.el9.x86_64 4/4 2024-09-13T12:44:07.863 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-test-2:19.3.0-4697.gd58f7306.el9.x86_64 1/4 2024-09-13T12:44:07.863 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : libcephsqlite-2:19.3.0-4697.gd58f7306.el9.x86_64 2/4 2024-09-13T12:44:07.863 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-13T12:44:07.973 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:00:40 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:08.118 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:44:08.121 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:08.121 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-09-13T12:44:08.121 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:08.121 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:44:08.121 INFO:teuthology.orchestra.run.smithi105.stdout: ceph x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 6.6 k 2024-09-13T12:44:08.121 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-09-13T12:44:08.121 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mds x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 2.4 M 2024-09-13T12:44:08.122 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 1.5 M 2024-09-13T12:44:08.122 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-modules-core noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 291 k 2024-09-13T12:44:08.122 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mon x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 4.8 M 2024-09-13T12:44:08.122 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-osd x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 17 M 2024-09-13T12:44:08.122 INFO:teuthology.orchestra.run.smithi105.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-09-13T12:44:08.122 INFO:teuthology.orchestra.run.smithi105.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-09-13T12:44:08.122 INFO:teuthology.orchestra.run.smithi105.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2024-09-13T12:44:08.122 INFO:teuthology.orchestra.run.smithi105.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-13T12:44:08.122 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-13T12:44:08.122 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-13T12:44:08.122 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-13T12:44:08.122 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-13T12:44:08.123 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-13T12:44:08.123 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-13T12:44:08.123 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-collections 2024-09-13T12:44:08.123 INFO:teuthology.orchestra.run.smithi105.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-13T12:44:08.123 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-13T12:44:08.123 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-13T12:44:08.123 INFO:teuthology.orchestra.run.smithi105.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-13T12:44:08.123 INFO:teuthology.orchestra.run.smithi105.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-13T12:44:08.123 INFO:teuthology.orchestra.run.smithi105.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-13T12:44:08.123 INFO:teuthology.orchestra.run.smithi105.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-13T12:44:08.123 INFO:teuthology.orchestra.run.smithi105.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-13T12:44:08.123 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-13T12:44:08.124 INFO:teuthology.orchestra.run.smithi105.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-13T12:44:08.124 INFO:teuthology.orchestra.run.smithi105.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-13T12:44:08.124 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-13T12:44:08.124 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-13T12:44:08.124 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-13T12:44:08.124 INFO:teuthology.orchestra.run.smithi105.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-13T12:44:08.124 INFO:teuthology.orchestra.run.smithi105.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-13T12:44:08.124 INFO:teuthology.orchestra.run.smithi105.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-13T12:44:08.124 INFO:teuthology.orchestra.run.smithi105.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-13T12:44:08.124 INFO:teuthology.orchestra.run.smithi105.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-13T12:44:08.124 INFO:teuthology.orchestra.run.smithi105.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-13T12:44:08.124 INFO:teuthology.orchestra.run.smithi105.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-13T12:44:08.124 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:08.125 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:44:08.125 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:08.125 INFO:teuthology.orchestra.run.smithi105.stdout:Install 37 Packages 2024-09-13T12:44:08.125 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:08.125 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 31 M 2024-09-13T12:44:08.125 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 109 M 2024-09-13T12:44:08.126 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:44:08.151 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-13T12:44:08.151 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:08.151 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:44:08.151 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-test-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:08.151 INFO:teuthology.orchestra.run.smithi070.stdout: libcephsqlite-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:08.151 INFO:teuthology.orchestra.run.smithi070.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-13T12:44:08.151 INFO:teuthology.orchestra.run.smithi070.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-13T12:44:08.151 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:08.151 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:44:08.450 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install ceph 2024-09-13T12:44:08.584 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-test-2:19.3.0-4697.gd58f7306.el9.x86_64 4/4 2024-09-13T12:44:08.584 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-test-2:19.3.0-4697.gd58f7306.el9.x86_64 1/4 2024-09-13T12:44:08.584 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : libcephsqlite-2:19.3.0-4697.gd58f7306.el9.x86_64 2/4 2024-09-13T12:44:08.585 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-09-13T12:44:08.678 INFO:teuthology.orchestra.run.smithi105.stdout:(1/37): ceph-19.3.0-4697.gd58f7306.el9.x86_64.r 55 kB/s | 6.6 kB 00:00 2024-09-13T12:44:08.862 INFO:teuthology.orchestra.run.smithi105.stdout:(2/37): ceph-mds-19.3.0-4697.gd58f7306.el9.x86_ 7.8 MB/s | 2.4 MB 00:00 2024-09-13T12:44:08.896 INFO:teuthology.orchestra.run.smithi105.stdout:(3/37): ceph-mgr-19.3.0-4697.gd58f7306.el9.x86_ 4.5 MB/s | 1.5 MB 00:00 2024-09-13T12:44:08.925 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-09-13T12:44:08.926 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:08.926 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:44:08.926 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-test-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:08.926 INFO:teuthology.orchestra.run.smithi086.stdout: libcephsqlite-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:08.926 INFO:teuthology.orchestra.run.smithi086.stdout: socat-1.7.4.1-6.el9.x86_64 2024-09-13T12:44:08.926 INFO:teuthology.orchestra.run.smithi086.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-09-13T12:44:08.927 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:08.927 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:44:08.988 INFO:teuthology.orchestra.run.smithi105.stdout:(4/37): ceph-mgr-modules-core-19.3.0-4697.gd58f 3.1 MB/s | 291 kB 00:00 2024-09-13T12:44:09.036 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:00:42 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:09.163 INFO:teuthology.orchestra.run.smithi105.stdout:(5/37): ceph-mon-19.3.0-4697.gd58f7306.el9.x86_ 9.9 MB/s | 4.8 MB 00:00 2024-09-13T12:44:09.180 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:44:09.182 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:09.182 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repository Size 2024-09-13T12:44:09.183 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:09.183 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:44:09.183 INFO:teuthology.orchestra.run.smithi070.stdout: ceph x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 6.6 k 2024-09-13T12:44:09.183 INFO:teuthology.orchestra.run.smithi070.stdout:Installing dependencies: 2024-09-13T12:44:09.183 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mds x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 2.4 M 2024-09-13T12:44:09.184 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 1.5 M 2024-09-13T12:44:09.184 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-modules-core noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 291 k 2024-09-13T12:44:09.184 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mon x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 4.8 M 2024-09-13T12:44:09.184 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-osd x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 17 M 2024-09-13T12:44:09.184 INFO:teuthology.orchestra.run.smithi070.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-09-13T12:44:09.184 INFO:teuthology.orchestra.run.smithi070.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-09-13T12:44:09.185 INFO:teuthology.orchestra.run.smithi070.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2024-09-13T12:44:09.185 INFO:teuthology.orchestra.run.smithi070.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-13T12:44:09.185 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-13T12:44:09.185 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-13T12:44:09.185 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-13T12:44:09.185 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-13T12:44:09.186 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-13T12:44:09.186 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-13T12:44:09.186 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jaraco-collections 2024-09-13T12:44:09.186 INFO:teuthology.orchestra.run.smithi070.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-13T12:44:09.186 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-13T12:44:09.187 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-13T12:44:09.187 INFO:teuthology.orchestra.run.smithi070.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-13T12:44:09.187 INFO:teuthology.orchestra.run.smithi070.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-13T12:44:09.187 INFO:teuthology.orchestra.run.smithi070.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-13T12:44:09.187 INFO:teuthology.orchestra.run.smithi070.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-13T12:44:09.188 INFO:teuthology.orchestra.run.smithi070.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-13T12:44:09.188 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-13T12:44:09.188 INFO:teuthology.orchestra.run.smithi070.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-13T12:44:09.189 INFO:teuthology.orchestra.run.smithi070.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-13T12:44:09.189 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-13T12:44:09.189 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-13T12:44:09.189 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-13T12:44:09.189 INFO:teuthology.orchestra.run.smithi070.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-13T12:44:09.189 INFO:teuthology.orchestra.run.smithi070.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-13T12:44:09.189 INFO:teuthology.orchestra.run.smithi070.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-13T12:44:09.190 INFO:teuthology.orchestra.run.smithi070.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-13T12:44:09.190 INFO:teuthology.orchestra.run.smithi070.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-13T12:44:09.190 INFO:teuthology.orchestra.run.smithi070.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-13T12:44:09.190 INFO:teuthology.orchestra.run.smithi070.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-13T12:44:09.190 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:09.190 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:44:09.191 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:09.191 INFO:teuthology.orchestra.run.smithi070.stdout:Install 37 Packages 2024-09-13T12:44:09.191 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:09.191 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 31 M 2024-09-13T12:44:09.192 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 109 M 2024-09-13T12:44:09.192 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:44:09.308 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install ceph 2024-09-13T12:44:09.430 INFO:teuthology.orchestra.run.smithi105.stdout:(6/37): ceph-osd-19.3.0-4697.gd58f7306.el9.x86_ 30 MB/s | 17 MB 00:00 2024-09-13T12:44:09.548 INFO:teuthology.orchestra.run.smithi070.stdout:(1/37): ceph-19.3.0-4697.gd58f7306.el9.x86_64.r 56 kB/s | 6.6 kB 00:00 2024-09-13T12:44:09.731 INFO:teuthology.orchestra.run.smithi070.stdout:(2/37): ceph-mgr-19.3.0-4697.gd58f7306.el9.x86_ 5.1 MB/s | 1.5 MB 00:00 2024-09-13T12:44:09.781 INFO:teuthology.orchestra.run.smithi070.stdout:(3/37): ceph-mds-19.3.0-4697.gd58f7306.el9.x86_ 6.7 MB/s | 2.4 MB 00:00 2024-09-13T12:44:09.857 INFO:teuthology.orchestra.run.smithi070.stdout:(4/37): ceph-mgr-modules-core-19.3.0-4697.gd58f 3.8 MB/s | 291 kB 00:00 2024-09-13T12:44:09.900 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:00:40 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:44:09.905 INFO:teuthology.orchestra.run.smithi105.stdout:(7/37): python3-cffi-1.14.5-5.el9.x86_64.rpm 276 kB/s | 253 kB 00:00 2024-09-13T12:44:09.949 INFO:teuthology.orchestra.run.smithi070.stdout:(5/37): ceph-mon-19.3.0-4697.gd58f7306.el9.x86_ 12 MB/s | 4.8 MB 00:00 2024-09-13T12:44:10.016 INFO:teuthology.orchestra.run.smithi070.stdout:(6/37): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.6 MB/s | 253 kB 00:00 2024-09-13T12:44:10.042 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:44:10.044 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:10.044 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repository Size 2024-09-13T12:44:10.044 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:10.045 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:44:10.045 INFO:teuthology.orchestra.run.smithi086.stdout: ceph x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 6.6 k 2024-09-13T12:44:10.045 INFO:teuthology.orchestra.run.smithi086.stdout:Installing dependencies: 2024-09-13T12:44:10.045 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mds x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 2.4 M 2024-09-13T12:44:10.045 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 1.5 M 2024-09-13T12:44:10.046 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-modules-core noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 291 k 2024-09-13T12:44:10.046 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mon x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 4.8 M 2024-09-13T12:44:10.046 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-osd x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 17 M 2024-09-13T12:44:10.046 INFO:teuthology.orchestra.run.smithi086.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-09-13T12:44:10.046 INFO:teuthology.orchestra.run.smithi086.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-09-13T12:44:10.046 INFO:teuthology.orchestra.run.smithi086.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2024-09-13T12:44:10.047 INFO:teuthology.orchestra.run.smithi086.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-09-13T12:44:10.047 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-09-13T12:44:10.047 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-09-13T12:44:10.047 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-09-13T12:44:10.047 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-09-13T12:44:10.047 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-09-13T12:44:10.047 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-09-13T12:44:10.047 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jaraco-collections 2024-09-13T12:44:10.048 INFO:teuthology.orchestra.run.smithi086.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-09-13T12:44:10.048 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-09-13T12:44:10.048 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-09-13T12:44:10.048 INFO:teuthology.orchestra.run.smithi086.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-09-13T12:44:10.048 INFO:teuthology.orchestra.run.smithi086.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-09-13T12:44:10.048 INFO:teuthology.orchestra.run.smithi086.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-09-13T12:44:10.048 INFO:teuthology.orchestra.run.smithi086.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-09-13T12:44:10.048 INFO:teuthology.orchestra.run.smithi086.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-09-13T12:44:10.048 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-09-13T12:44:10.048 INFO:teuthology.orchestra.run.smithi086.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-09-13T12:44:10.048 INFO:teuthology.orchestra.run.smithi086.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-09-13T12:44:10.048 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-09-13T12:44:10.049 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-09-13T12:44:10.049 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-09-13T12:44:10.049 INFO:teuthology.orchestra.run.smithi086.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-09-13T12:44:10.049 INFO:teuthology.orchestra.run.smithi086.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-09-13T12:44:10.049 INFO:teuthology.orchestra.run.smithi086.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-09-13T12:44:10.049 INFO:teuthology.orchestra.run.smithi086.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-09-13T12:44:10.049 INFO:teuthology.orchestra.run.smithi086.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2024-09-13T12:44:10.049 INFO:teuthology.orchestra.run.smithi086.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-09-13T12:44:10.049 INFO:teuthology.orchestra.run.smithi086.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-09-13T12:44:10.049 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:10.049 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:44:10.049 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:10.049 INFO:teuthology.orchestra.run.smithi086.stdout:Install 37 Packages 2024-09-13T12:44:10.050 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:10.050 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 31 M 2024-09-13T12:44:10.050 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 109 M 2024-09-13T12:44:10.050 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:44:10.057 INFO:teuthology.orchestra.run.smithi070.stdout:(7/37): python3-ply-3.11-14.el9.noarch.rpm 2.5 MB/s | 106 kB 00:00 2024-09-13T12:44:10.099 INFO:teuthology.orchestra.run.smithi070.stdout:(8/37): python3-pycparser-2.20-6.el9.noarch.rpm 3.2 MB/s | 135 kB 00:00 2024-09-13T12:44:10.122 INFO:teuthology.orchestra.run.smithi105.stdout:(8/37): python3-ply-3.11-14.el9.noarch.rpm 154 kB/s | 106 kB 00:00 2024-09-13T12:44:10.133 INFO:teuthology.orchestra.run.smithi070.stdout:(9/37): python3-cryptography-36.0.1-4.el9.x86_6 6.7 MB/s | 1.2 MB 00:00 2024-09-13T12:44:10.161 INFO:teuthology.orchestra.run.smithi070.stdout:(10/37): python3-requests-2.25.1-8.el9.noarch.r 2.1 MB/s | 125 kB 00:00 2024-09-13T12:44:10.184 INFO:teuthology.orchestra.run.smithi070.stdout:(11/37): python3-urllib3-1.26.5-6.el9.noarch.rp 4.2 MB/s | 215 kB 00:00 2024-09-13T12:44:10.256 INFO:teuthology.orchestra.run.smithi105.stdout:(9/37): python3-cryptography-36.0.1-4.el9.x86_6 1.1 MB/s | 1.2 MB 00:01 2024-09-13T12:44:10.401 INFO:teuthology.orchestra.run.smithi070.stdout:(12/37): ceph-osd-19.3.0-4697.gd58f7306.el9.x86 26 MB/s | 17 MB 00:00 2024-09-13T12:44:10.492 INFO:teuthology.orchestra.run.smithi070.stdout:(13/37): lua-5.4.4-4.el9.x86_64.rpm 565 kB/s | 188 kB 00:00 2024-09-13T12:44:10.518 INFO:teuthology.orchestra.run.smithi070.stdout:(14/37): python3-mako-1.1.4-6.el9.noarch.rpm 516 kB/s | 172 kB 00:00 2024-09-13T12:44:10.559 INFO:teuthology.orchestra.run.smithi070.stdout:(15/37): python3-markupsafe-1.1.1-12.el9.x86_64 219 kB/s | 35 kB 00:00 2024-09-13T12:44:10.585 INFO:teuthology.orchestra.run.smithi070.stdout:(16/37): python3-packaging-20.9-5.el9.noarch.rp 838 kB/s | 77 kB 00:00 2024-09-13T12:44:10.627 INFO:teuthology.orchestra.run.smithi070.stdout:(17/37): python3-toml-0.10.2-6.el9.noarch.rpm 623 kB/s | 42 kB 00:00 2024-09-13T12:44:10.652 INFO:teuthology.orchestra.run.smithi070.stdout:(18/37): python3-pytz-2021.1-5.el9.noarch.rpm 553 kB/s | 51 kB 00:00 2024-09-13T12:44:10.664 INFO:teuthology.orchestra.run.smithi105.stdout:(10/37): python3-pycparser-2.20-6.el9.noarch.rp 178 kB/s | 135 kB 00:00 2024-09-13T12:44:10.677 INFO:teuthology.orchestra.run.smithi070.stdout:(19/37): lua-devel-5.4.4-4.el9.x86_64.rpm 242 kB/s | 22 kB 00:00 2024-09-13T12:44:10.728 INFO:teuthology.orchestra.run.smithi070.stdout:(20/37): luarocks-3.9.2-5.el9.noarch.rpm 1.5 MB/s | 151 kB 00:00 2024-09-13T12:44:10.753 INFO:teuthology.orchestra.run.smithi070.stdout:(21/37): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 432 kB/s | 43 kB 00:00 2024-09-13T12:44:10.778 INFO:teuthology.orchestra.run.smithi070.stdout:(22/37): python3-jaraco-8.2.1-3.el9.noarch.rpm 429 kB/s | 11 kB 00:00 2024-09-13T12:44:10.803 INFO:teuthology.orchestra.run.smithi070.stdout:(23/37): python3-jaraco-classes-3.2.1-5.el9.noa 706 kB/s | 18 kB 00:00 2024-09-13T12:44:10.806 INFO:teuthology.orchestra.run.smithi105.stdout:(11/37): python3-requests-2.25.1-8.el9.noarch.r 183 kB/s | 125 kB 00:00 2024-09-13T12:44:10.807 INFO:teuthology.orchestra.run.smithi086.stdout:(1/37): ceph-19.3.0-4697.gd58f7306.el9.x86_64.r 53 kB/s | 6.6 kB 00:00 2024-09-13T12:44:10.829 INFO:teuthology.orchestra.run.smithi070.stdout:(24/37): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.2 MB/s | 172 kB 00:00 2024-09-13T12:44:10.854 INFO:teuthology.orchestra.run.smithi070.stdout:(25/37): python3-jaraco-collections-3.0.0-8.el9 460 kB/s | 23 kB 00:00 2024-09-13T12:44:10.856 INFO:teuthology.orchestra.run.smithi105.stdout:(12/37): lua-5.4.4-4.el9.x86_64.rpm 984 kB/s | 188 kB 00:00 2024-09-13T12:44:10.879 INFO:teuthology.orchestra.run.smithi070.stdout:(26/37): python3-jaraco-functools-3.5.0-2.el9.n 388 kB/s | 19 kB 00:00 2024-09-13T12:44:10.896 INFO:teuthology.orchestra.run.smithi070.stdout:(27/37): python3-jaraco-text-3.2.0-6.el9.noarch 471 kB/s | 20 kB 00:00 2024-09-13T12:44:10.906 INFO:teuthology.orchestra.run.smithi105.stdout:(13/37): python3-markupsafe-1.1.1-12.el9.x86_64 695 kB/s | 35 kB 00:00 2024-09-13T12:44:10.922 INFO:teuthology.orchestra.run.smithi070.stdout:(28/37): python3-logutils-0.3.5-21.el9.noarch.r 1.1 MB/s | 46 kB 00:00 2024-09-13T12:44:10.947 INFO:teuthology.orchestra.run.smithi070.stdout:(29/37): python3-cherrypy-18.6.1-2.el9.noarch.r 1.6 MB/s | 358 kB 00:00 2024-09-13T12:44:10.957 INFO:teuthology.orchestra.run.smithi105.stdout:(14/37): python3-packaging-20.9-5.el9.noarch.rp 1.5 MB/s | 77 kB 00:00 2024-09-13T12:44:10.972 INFO:teuthology.orchestra.run.smithi070.stdout:(30/37): python3-more-itertools-8.12.0-2.el9.no 1.0 MB/s | 79 kB 00:00 2024-09-13T12:44:10.989 INFO:teuthology.orchestra.run.smithi070.stdout:(31/37): python3-portend-3.1.0-2.el9.noarch.rpm 391 kB/s | 16 kB 00:00 2024-09-13T12:44:10.999 INFO:teuthology.orchestra.run.smithi105.stdout:(15/37): python3-urllib3-1.26.5-6.el9.noarch.rp 289 kB/s | 215 kB 00:00 2024-09-13T12:44:10.999 INFO:teuthology.orchestra.run.smithi086.stdout:(2/37): ceph-mgr-19.3.0-4697.gd58f7306.el9.x86_ 4.8 MB/s | 1.5 MB 00:00 2024-09-13T12:44:11.006 INFO:teuthology.orchestra.run.smithi070.stdout:(32/37): python3-tempora-5.0.0-2.el9.noarch.rpm 2.1 MB/s | 36 kB 00:00 2024-09-13T12:44:11.024 INFO:teuthology.orchestra.run.smithi105.stdout:(16/37): python3-mako-1.1.4-6.el9.noarch.rpm 790 kB/s | 172 kB 00:00 2024-09-13T12:44:11.031 INFO:teuthology.orchestra.run.smithi070.stdout:(33/37): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.5 MB/s | 90 kB 00:00 2024-09-13T12:44:11.049 INFO:teuthology.orchestra.run.smithi105.stdout:(17/37): python3-pytz-2021.1-5.el9.noarch.rpm 553 kB/s | 51 kB 00:00 2024-09-13T12:44:11.050 INFO:teuthology.orchestra.run.smithi086.stdout:(3/37): ceph-mds-19.3.0-4697.gd58f7306.el9.x86_ 6.4 MB/s | 2.4 MB 00:00 2024-09-13T12:44:11.056 INFO:teuthology.orchestra.run.smithi070.stdout:(34/37): python3-pecan-1.4.2-3.el9.noarch.rpm 2.0 MB/s | 272 kB 00:00 2024-09-13T12:44:11.074 INFO:teuthology.orchestra.run.smithi070.stdout:(35/37): python3-zc-lockfile-2.0-10.el9.noarch. 1.2 MB/s | 20 kB 00:00 2024-09-13T12:44:11.099 INFO:teuthology.orchestra.run.smithi105.stdout:(18/37): luarocks-3.9.2-5.el9.noarch.rpm 3.0 MB/s | 151 kB 00:00 2024-09-13T12:44:11.107 INFO:teuthology.orchestra.run.smithi070.stdout:(36/37): python3-webob-1.8.8-2.el9.noarch.rpm 2.2 MB/s | 230 kB 00:00 2024-09-13T12:44:11.125 INFO:teuthology.orchestra.run.smithi105.stdout:(19/37): lua-devel-5.4.4-4.el9.x86_64.rpm 297 kB/s | 22 kB 00:00 2024-09-13T12:44:11.132 INFO:teuthology.orchestra.run.smithi070.stdout:(37/37): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.2 MB/s | 427 kB 00:00 2024-09-13T12:44:11.136 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:11.136 INFO:teuthology.orchestra.run.smithi070.stdout:Total 16 MB/s | 31 MB 00:01 2024-09-13T12:44:11.141 INFO:teuthology.orchestra.run.smithi086.stdout:(4/37): ceph-mgr-modules-core-19.3.0-4697.gd58f 3.1 MB/s | 291 kB 00:00 2024-09-13T12:44:11.150 INFO:teuthology.orchestra.run.smithi105.stdout:(20/37): python3-toml-0.10.2-6.el9.noarch.rpm 276 kB/s | 42 kB 00:00 2024-09-13T12:44:11.184 INFO:teuthology.orchestra.run.smithi105.stdout:(21/37): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 518 kB/s | 43 kB 00:00 2024-09-13T12:44:11.217 INFO:teuthology.orchestra.run.smithi105.stdout:(22/37): python3-jaraco-8.2.1-3.el9.noarch.rpm 464 kB/s | 11 kB 00:00 2024-09-13T12:44:11.243 INFO:teuthology.orchestra.run.smithi105.stdout:(23/37): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.4 MB/s | 172 kB 00:00 2024-09-13T12:44:11.258 INFO:teuthology.orchestra.run.smithi086.stdout:(5/37): ceph-mon-19.3.0-4697.gd58f7306.el9.x86_ 11 MB/s | 4.8 MB 00:00 2024-09-13T12:44:11.268 INFO:teuthology.orchestra.run.smithi105.stdout:(24/37): python3-jaraco-classes-3.2.1-5.el9.noa 364 kB/s | 18 kB 00:00 2024-09-13T12:44:11.285 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:44:11.293 INFO:teuthology.orchestra.run.smithi105.stdout:(25/37): python3-jaraco-collections-3.0.0-8.el9 462 kB/s | 23 kB 00:00 2024-09-13T12:44:11.318 INFO:teuthology.orchestra.run.smithi105.stdout:(26/37): python3-jaraco-functools-3.5.0-2.el9.n 388 kB/s | 19 kB 00:00 2024-09-13T12:44:11.325 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:44:11.325 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:44:11.344 INFO:teuthology.orchestra.run.smithi105.stdout:(27/37): python3-jaraco-text-3.2.0-6.el9.noarch 393 kB/s | 20 kB 00:00 2024-09-13T12:44:11.369 INFO:teuthology.orchestra.run.smithi105.stdout:(28/37): python3-logutils-0.3.5-21.el9.noarch.r 922 kB/s | 46 kB 00:00 2024-09-13T12:44:11.392 INFO:teuthology.orchestra.run.smithi086.stdout:(6/37): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.0 MB/s | 253 kB 00:00 2024-09-13T12:44:11.394 INFO:teuthology.orchestra.run.smithi105.stdout:(29/37): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2024-09-13T12:44:11.420 INFO:teuthology.orchestra.run.smithi105.stdout:(30/37): python3-cherrypy-18.6.1-2.el9.noarch.r 1.3 MB/s | 358 kB 00:00 2024-09-13T12:44:11.445 INFO:teuthology.orchestra.run.smithi105.stdout:(31/37): python3-portend-3.1.0-2.el9.noarch.rpm 328 kB/s | 16 kB 00:00 2024-09-13T12:44:11.451 INFO:teuthology.orchestra.run.smithi086.stdout:(7/37): python3-ply-3.11-14.el9.noarch.rpm 1.8 MB/s | 106 kB 00:00 2024-09-13T12:44:11.470 INFO:teuthology.orchestra.run.smithi105.stdout:(32/37): python3-pecan-1.4.2-3.el9.noarch.rpm 2.6 MB/s | 272 kB 00:00 2024-09-13T12:44:11.495 INFO:teuthology.orchestra.run.smithi105.stdout:(33/37): python3-tempora-5.0.0-2.el9.noarch.rpm 714 kB/s | 36 kB 00:00 2024-09-13T12:44:11.537 INFO:teuthology.orchestra.run.smithi105.stdout:(34/37): python3-pyOpenSSL-21.0.0-1.el9.noarch. 977 kB/s | 90 kB 00:00 2024-09-13T12:44:11.562 INFO:teuthology.orchestra.run.smithi105.stdout:(35/37): python3-zc-lockfile-2.0-10.el9.noarch. 800 kB/s | 20 kB 00:00 2024-09-13T12:44:11.588 INFO:teuthology.orchestra.run.smithi105.stdout:(36/37): python3-webob-1.8.8-2.el9.noarch.rpm 1.9 MB/s | 230 kB 00:00 2024-09-13T12:44:11.613 INFO:teuthology.orchestra.run.smithi105.stdout:(37/37): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.6 MB/s | 427 kB 00:00 2024-09-13T12:44:11.618 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:11.618 INFO:teuthology.orchestra.run.smithi105.stdout:Total 8.8 MB/s | 31 MB 00:03 2024-09-13T12:44:11.634 INFO:teuthology.orchestra.run.smithi086.stdout:(8/37): python3-cryptography-36.0.1-4.el9.x86_6 3.3 MB/s | 1.2 MB 00:00 2024-09-13T12:44:11.668 INFO:teuthology.orchestra.run.smithi086.stdout:(9/37): python3-pycparser-2.20-6.el9.noarch.rpm 623 kB/s | 135 kB 00:00 2024-09-13T12:44:11.693 INFO:teuthology.orchestra.run.smithi086.stdout:(10/37): python3-requests-2.25.1-8.el9.noarch.r 2.1 MB/s | 125 kB 00:00 2024-09-13T12:44:11.768 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:44:11.800 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:44:11.800 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:44:11.808 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:44:11.808 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:44:11.868 INFO:teuthology.orchestra.run.smithi086.stdout:(11/37): ceph-osd-19.3.0-4697.gd58f7306.el9.x86 20 MB/s | 17 MB 00:00 2024-09-13T12:44:11.894 INFO:teuthology.orchestra.run.smithi086.stdout:(12/37): python3-urllib3-1.26.5-6.el9.noarch.rp 952 kB/s | 215 kB 00:00 2024-09-13T12:44:12.266 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:44:12.266 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:44:12.452 INFO:teuthology.orchestra.run.smithi086.stdout:(13/37): python3-markupsafe-1.1.1-12.el9.x86_64 62 kB/s | 35 kB 00:00 2024-09-13T12:44:12.519 INFO:teuthology.orchestra.run.smithi086.stdout:(14/37): lua-5.4.4-4.el9.x86_64.rpm 228 kB/s | 188 kB 00:00 2024-09-13T12:44:12.594 INFO:teuthology.orchestra.run.smithi086.stdout:(15/37): python3-mako-1.1.4-6.el9.noarch.rpm 237 kB/s | 172 kB 00:00 2024-09-13T12:44:13.086 INFO:teuthology.orchestra.run.smithi086.stdout:(16/37): python3-packaging-20.9-5.el9.noarch.rp 122 kB/s | 77 kB 00:00 2024-09-13T12:44:13.120 INFO:teuthology.orchestra.run.smithi086.stdout:(17/37): python3-pytz-2021.1-5.el9.noarch.rpm 85 kB/s | 51 kB 00:00 2024-09-13T12:44:13.162 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:44:13.170 INFO:teuthology.orchestra.run.smithi086.stdout:(18/37): luarocks-3.9.2-5.el9.noarch.rpm 3.0 MB/s | 151 kB 00:00 2024-09-13T12:44:13.195 INFO:teuthology.orchestra.run.smithi086.stdout:(19/37): python3-toml-0.10.2-6.el9.noarch.rpm 69 kB/s | 42 kB 00:00 2024-09-13T12:44:13.220 INFO:teuthology.orchestra.run.smithi086.stdout:(20/37): lua-devel-5.4.4-4.el9.x86_64.rpm 167 kB/s | 22 kB 00:00 2024-09-13T12:44:13.226 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/37 2024-09-13T12:44:13.246 INFO:teuthology.orchestra.run.smithi086.stdout:(21/37): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 583 kB/s | 43 kB 00:00 2024-09-13T12:44:13.259 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/37 2024-09-13T12:44:13.287 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/37 2024-09-13T12:44:13.288 INFO:teuthology.orchestra.run.smithi086.stdout:(22/37): python3-jaraco-8.2.1-3.el9.noarch.rpm 400 kB/s | 11 kB 00:00 2024-09-13T12:44:13.313 INFO:teuthology.orchestra.run.smithi086.stdout:(23/37): python3-jaraco-classes-3.2.1-5.el9.noa 767 kB/s | 18 kB 00:00 2024-09-13T12:44:13.338 INFO:teuthology.orchestra.run.smithi086.stdout:(24/37): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.4 MB/s | 172 kB 00:00 2024-09-13T12:44:13.358 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/37 2024-09-13T12:44:13.363 INFO:teuthology.orchestra.run.smithi086.stdout:(25/37): python3-jaraco-collections-3.0.0-8.el9 462 kB/s | 23 kB 00:00 2024-09-13T12:44:13.389 INFO:teuthology.orchestra.run.smithi086.stdout:(26/37): python3-jaraco-functools-3.5.0-2.el9.n 387 kB/s | 19 kB 00:00 2024-09-13T12:44:13.403 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : luarocks-3.9.2-5.el9.noarch 5/37 2024-09-13T12:44:13.414 INFO:teuthology.orchestra.run.smithi086.stdout:(27/37): python3-jaraco-text-3.2.0-6.el9.noarch 392 kB/s | 20 kB 00:00 2024-09-13T12:44:13.436 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/37 2024-09-13T12:44:13.441 INFO:teuthology.orchestra.run.smithi086.stdout:(28/37): python3-logutils-0.3.5-21.el9.noarch.r 921 kB/s | 46 kB 00:00 2024-09-13T12:44:13.465 INFO:teuthology.orchestra.run.smithi086.stdout:(29/37): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2024-09-13T12:44:13.498 INFO:teuthology.orchestra.run.smithi086.stdout:(30/37): python3-cherrypy-18.6.1-2.el9.noarch.r 1.3 MB/s | 358 kB 00:00 2024-09-13T12:44:13.524 INFO:teuthology.orchestra.run.smithi086.stdout:(31/37): python3-portend-3.1.0-2.el9.noarch.rpm 280 kB/s | 16 kB 00:00 2024-09-13T12:44:13.526 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/37 2024-09-13T12:44:13.549 INFO:teuthology.orchestra.run.smithi086.stdout:(32/37): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.8 MB/s | 90 kB 00:00 2024-09-13T12:44:13.574 INFO:teuthology.orchestra.run.smithi086.stdout:(33/37): python3-tempora-5.0.0-2.el9.noarch.rpm 715 kB/s | 36 kB 00:00 2024-09-13T12:44:13.590 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:44:13.599 INFO:teuthology.orchestra.run.smithi086.stdout:(34/37): python3-pecan-1.4.2-3.el9.noarch.rpm 1.7 MB/s | 272 kB 00:00 2024-09-13T12:44:13.605 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/37 2024-09-13T12:44:13.625 INFO:teuthology.orchestra.run.smithi086.stdout:(35/37): python3-zc-lockfile-2.0-10.el9.noarch. 811 kB/s | 20 kB 00:00 2024-09-13T12:44:13.646 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 9/37 2024-09-13T12:44:13.650 INFO:teuthology.orchestra.run.smithi086.stdout:(36/37): python3-webob-1.8.8-2.el9.noarch.rpm 2.2 MB/s | 230 kB 00:00 2024-09-13T12:44:13.657 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/37 2024-09-13T12:44:13.675 INFO:teuthology.orchestra.run.smithi086.stdout:(37/37): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.1 MB/s | 427 kB 00:00 2024-09-13T12:44:13.680 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:13.680 INFO:teuthology.orchestra.run.smithi086.stdout:Total 8.5 MB/s | 31 MB 00:03 2024-09-13T12:44:13.681 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/37 2024-09-13T12:44:13.690 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/37 2024-09-13T12:44:13.711 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/37 2024-09-13T12:44:13.718 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/37 2024-09-13T12:44:13.746 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/37 2024-09-13T12:44:13.779 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/37 2024-09-13T12:44:13.789 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/37 2024-09-13T12:44:13.820 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/37 2024-09-13T12:44:13.827 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : luarocks-3.9.2-5.el9.noarch 5/37 2024-09-13T12:44:13.834 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:44:13.855 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/37 2024-09-13T12:44:13.860 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/37 2024-09-13T12:44:13.875 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:44:13.875 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:44:13.889 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/37 2024-09-13T12:44:13.937 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/37 2024-09-13T12:44:13.952 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/37 2024-09-13T12:44:13.970 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/37 2024-09-13T12:44:14.030 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/37 2024-09-13T12:44:14.043 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/37 2024-09-13T12:44:14.071 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 9/37 2024-09-13T12:44:14.114 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/37 2024-09-13T12:44:14.144 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/37 2024-09-13T12:44:14.178 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/37 2024-09-13T12:44:14.180 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 20/37 2024-09-13T12:44:14.212 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/37 2024-09-13T12:44:14.252 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/37 2024-09-13T12:44:14.261 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 21/37 2024-09-13T12:44:14.287 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/37 2024-09-13T12:44:14.322 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 22/37 2024-09-13T12:44:14.322 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/37 2024-09-13T12:44:14.346 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:44:14.347 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:44:14.361 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 23/37 2024-09-13T12:44:14.369 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/37 2024-09-13T12:44:14.403 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/37 2024-09-13T12:44:14.410 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-ply-3.11-14.el9.noarch 24/37 2024-09-13T12:44:14.466 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 25/37 2024-09-13T12:44:14.476 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/37 2024-09-13T12:44:14.624 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 20/37 2024-09-13T12:44:14.652 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 26/37 2024-09-13T12:44:14.707 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 27/37 2024-09-13T12:44:14.711 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 21/37 2024-09-13T12:44:14.764 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 22/37 2024-09-13T12:44:14.776 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 28/37 2024-09-13T12:44:14.802 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 23/37 2024-09-13T12:44:14.850 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-ply-3.11-14.el9.noarch 24/37 2024-09-13T12:44:14.865 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 29/37 2024-09-13T12:44:14.906 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 25/37 2024-09-13T12:44:14.906 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 30/37 2024-09-13T12:44:15.033 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 31/37 2024-09-13T12:44:15.100 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 26/37 2024-09-13T12:44:15.147 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 27/37 2024-09-13T12:44:15.197 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-mgr-modules-core-2:19.3.0-4697.gd58f7306.el9. 32/37 2024-09-13T12:44:15.217 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 28/37 2024-09-13T12:44:15.227 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 33/37 2024-09-13T12:44:15.253 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 33/37 2024-09-13T12:44:15.254 INFO:teuthology.orchestra.run.smithi070.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:15.254 INFO:teuthology.orchestra.run.smithi070.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-13T12:44:15.254 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-13T12:44:15.254 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-13T12:44:15.254 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:15.306 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 29/37 2024-09-13T12:44:15.346 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 30/37 2024-09-13T12:44:15.476 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 31/37 2024-09-13T12:44:15.635 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mgr-modules-core-2:19.3.0-4697.gd58f7306.el9. 32/37 2024-09-13T12:44:15.665 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 33/37 2024-09-13T12:44:15.691 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 33/37 2024-09-13T12:44:15.691 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:15.691 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-13T12:44:15.692 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-13T12:44:15.692 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-13T12:44:15.692 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:15.697 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:44:15.761 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/37 2024-09-13T12:44:15.794 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/37 2024-09-13T12:44:15.822 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/37 2024-09-13T12:44:15.893 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/37 2024-09-13T12:44:15.929 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : luarocks-3.9.2-5.el9.noarch 5/37 2024-09-13T12:44:15.961 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/37 2024-09-13T12:44:16.062 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/37 2024-09-13T12:44:16.141 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/37 2024-09-13T12:44:16.181 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 9/37 2024-09-13T12:44:16.224 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/37 2024-09-13T12:44:16.263 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/37 2024-09-13T12:44:16.297 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/37 2024-09-13T12:44:16.330 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/37 2024-09-13T12:44:16.371 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/37 2024-09-13T12:44:16.414 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/37 2024-09-13T12:44:16.449 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/37 2024-09-13T12:44:16.497 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/37 2024-09-13T12:44:16.529 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/37 2024-09-13T12:44:16.603 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/37 2024-09-13T12:44:16.728 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-osd-2:19.3.0-4697.gd58f7306.el9.x86_64 34/37 2024-09-13T12:44:16.741 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 20/37 2024-09-13T12:44:16.755 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-osd-2:19.3.0-4697.gd58f7306.el9.x86_64 34/37 2024-09-13T12:44:16.755 INFO:teuthology.orchestra.run.smithi070.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:16.755 INFO:teuthology.orchestra.run.smithi070.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-13T12:44:16.755 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-13T12:44:16.755 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-13T12:44:16.755 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:16.821 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 21/37 2024-09-13T12:44:16.874 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 22/37 2024-09-13T12:44:16.912 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 23/37 2024-09-13T12:44:16.969 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-ply-3.11-14.el9.noarch 24/37 2024-09-13T12:44:17.025 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 25/37 2024-09-13T12:44:17.174 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-osd-2:19.3.0-4697.gd58f7306.el9.x86_64 34/37 2024-09-13T12:44:17.202 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-osd-2:19.3.0-4697.gd58f7306.el9.x86_64 34/37 2024-09-13T12:44:17.202 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:17.202 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-13T12:44:17.202 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-13T12:44:17.202 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-13T12:44:17.202 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:17.212 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-mon-2:19.3.0-4697.gd58f7306.el9.x86_64 35/37 2024-09-13T12:44:17.213 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 26/37 2024-09-13T12:44:17.235 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-mon-2:19.3.0-4697.gd58f7306.el9.x86_64 35/37 2024-09-13T12:44:17.235 INFO:teuthology.orchestra.run.smithi070.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:17.236 INFO:teuthology.orchestra.run.smithi070.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-13T12:44:17.236 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-13T12:44:17.236 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-13T12:44:17.236 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:17.266 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 27/37 2024-09-13T12:44:17.344 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 28/37 2024-09-13T12:44:17.449 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 29/37 2024-09-13T12:44:17.462 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-mds-2:19.3.0-4697.gd58f7306.el9.x86_64 36/37 2024-09-13T12:44:17.486 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-mds-2:19.3.0-4697.gd58f7306.el9.x86_64 36/37 2024-09-13T12:44:17.486 INFO:teuthology.orchestra.run.smithi070.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:17.486 INFO:teuthology.orchestra.run.smithi070.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-13T12:44:17.486 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-13T12:44:17.487 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-13T12:44:17.487 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:17.489 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 30/37 2024-09-13T12:44:17.551 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-2:19.3.0-4697.gd58f7306.el9.x86_64 37/37 2024-09-13T12:44:17.620 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 31/37 2024-09-13T12:44:17.642 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mon-2:19.3.0-4697.gd58f7306.el9.x86_64 35/37 2024-09-13T12:44:17.665 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mon-2:19.3.0-4697.gd58f7306.el9.x86_64 35/37 2024-09-13T12:44:17.666 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:17.666 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-13T12:44:17.666 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-13T12:44:17.666 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-13T12:44:17.666 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:17.787 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-mgr-modules-core-2:19.3.0-4697.gd58f7306.el9. 32/37 2024-09-13T12:44:17.817 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 33/37 2024-09-13T12:44:17.844 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 33/37 2024-09-13T12:44:17.844 INFO:teuthology.orchestra.run.smithi086.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:17.844 INFO:teuthology.orchestra.run.smithi086.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-09-13T12:44:17.844 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-13T12:44:17.844 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-09-13T12:44:17.844 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:17.884 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mds-2:19.3.0-4697.gd58f7306.el9.x86_64 36/37 2024-09-13T12:44:17.908 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mds-2:19.3.0-4697.gd58f7306.el9.x86_64 36/37 2024-09-13T12:44:17.908 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:17.908 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-13T12:44:17.908 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-13T12:44:17.908 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-13T12:44:17.908 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:17.964 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-2:19.3.0-4697.gd58f7306.el9.x86_64 37/37 2024-09-13T12:44:19.343 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-osd-2:19.3.0-4697.gd58f7306.el9.x86_64 34/37 2024-09-13T12:44:19.371 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-osd-2:19.3.0-4697.gd58f7306.el9.x86_64 34/37 2024-09-13T12:44:19.371 INFO:teuthology.orchestra.run.smithi086.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:19.371 INFO:teuthology.orchestra.run.smithi086.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-09-13T12:44:19.371 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-13T12:44:19.371 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-09-13T12:44:19.372 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:19.395 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-2:19.3.0-4697.gd58f7306.el9.x86_64 37/37 2024-09-13T12:44:19.396 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-2:19.3.0-4697.gd58f7306.el9.x86_64 1/37 2024-09-13T12:44:19.396 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-mds-2:19.3.0-4697.gd58f7306.el9.x86_64 2/37 2024-09-13T12:44:19.396 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 3/37 2024-09-13T12:44:19.396 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-mon-2:19.3.0-4697.gd58f7306.el9.x86_64 4/37 2024-09-13T12:44:19.396 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-osd-2:19.3.0-4697.gd58f7306.el9.x86_64 5/37 2024-09-13T12:44:19.396 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-mgr-modules-core-2:19.3.0-4697.gd58f7306.el9. 6/37 2024-09-13T12:44:19.396 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/37 2024-09-13T12:44:19.396 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/37 2024-09-13T12:44:19.396 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/37 2024-09-13T12:44:19.396 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/37 2024-09-13T12:44:19.396 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/37 2024-09-13T12:44:19.396 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/37 2024-09-13T12:44:19.397 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/37 2024-09-13T12:44:19.397 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/37 2024-09-13T12:44:19.397 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/37 2024-09-13T12:44:19.397 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 16/37 2024-09-13T12:44:19.397 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 17/37 2024-09-13T12:44:19.397 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 18/37 2024-09-13T12:44:19.397 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 19/37 2024-09-13T12:44:19.397 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 20/37 2024-09-13T12:44:19.397 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 21/37 2024-09-13T12:44:19.397 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 22/37 2024-09-13T12:44:19.397 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 23/37 2024-09-13T12:44:19.397 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 24/37 2024-09-13T12:44:19.397 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 25/37 2024-09-13T12:44:19.398 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 26/37 2024-09-13T12:44:19.398 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 27/37 2024-09-13T12:44:19.399 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 28/37 2024-09-13T12:44:19.399 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 29/37 2024-09-13T12:44:19.399 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 30/37 2024-09-13T12:44:19.399 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 31/37 2024-09-13T12:44:19.399 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 32/37 2024-09-13T12:44:19.399 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 33/37 2024-09-13T12:44:19.399 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 34/37 2024-09-13T12:44:19.399 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 35/37 2024-09-13T12:44:19.399 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 36/37 2024-09-13T12:44:19.645 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-2:19.3.0-4697.gd58f7306.el9.x86_64 37/37 2024-09-13T12:44:19.645 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-2:19.3.0-4697.gd58f7306.el9.x86_64 1/37 2024-09-13T12:44:19.646 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mds-2:19.3.0-4697.gd58f7306.el9.x86_64 2/37 2024-09-13T12:44:19.646 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 3/37 2024-09-13T12:44:19.646 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mon-2:19.3.0-4697.gd58f7306.el9.x86_64 4/37 2024-09-13T12:44:19.646 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-osd-2:19.3.0-4697.gd58f7306.el9.x86_64 5/37 2024-09-13T12:44:19.646 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mgr-modules-core-2:19.3.0-4697.gd58f7306.el9. 6/37 2024-09-13T12:44:19.646 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/37 2024-09-13T12:44:19.646 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/37 2024-09-13T12:44:19.646 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/37 2024-09-13T12:44:19.646 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/37 2024-09-13T12:44:19.646 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/37 2024-09-13T12:44:19.646 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/37 2024-09-13T12:44:19.646 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/37 2024-09-13T12:44:19.646 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/37 2024-09-13T12:44:19.647 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/37 2024-09-13T12:44:19.647 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 16/37 2024-09-13T12:44:19.647 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 17/37 2024-09-13T12:44:19.647 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 18/37 2024-09-13T12:44:19.647 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 19/37 2024-09-13T12:44:19.647 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 20/37 2024-09-13T12:44:19.647 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 21/37 2024-09-13T12:44:19.647 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 22/37 2024-09-13T12:44:19.647 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 23/37 2024-09-13T12:44:19.647 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 24/37 2024-09-13T12:44:19.647 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 25/37 2024-09-13T12:44:19.647 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 26/37 2024-09-13T12:44:19.647 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 27/37 2024-09-13T12:44:19.648 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 28/37 2024-09-13T12:44:19.648 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 29/37 2024-09-13T12:44:19.649 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 30/37 2024-09-13T12:44:19.649 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 31/37 2024-09-13T12:44:19.649 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 32/37 2024-09-13T12:44:19.649 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 33/37 2024-09-13T12:44:19.649 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 34/37 2024-09-13T12:44:19.649 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 35/37 2024-09-13T12:44:19.649 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 36/37 2024-09-13T12:44:19.827 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-mon-2:19.3.0-4697.gd58f7306.el9.x86_64 35/37 2024-09-13T12:44:19.851 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-mon-2:19.3.0-4697.gd58f7306.el9.x86_64 35/37 2024-09-13T12:44:19.851 INFO:teuthology.orchestra.run.smithi086.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:19.851 INFO:teuthology.orchestra.run.smithi086.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-09-13T12:44:19.851 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-13T12:44:19.851 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-09-13T12:44:19.851 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:20.078 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-mds-2:19.3.0-4697.gd58f7306.el9.x86_64 36/37 2024-09-13T12:44:20.101 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-mds-2:19.3.0-4697.gd58f7306.el9.x86_64 36/37 2024-09-13T12:44:20.102 INFO:teuthology.orchestra.run.smithi086.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:20.102 INFO:teuthology.orchestra.run.smithi086.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-09-13T12:44:20.102 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-13T12:44:20.102 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-09-13T12:44:20.102 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:20.165 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-2:19.3.0-4697.gd58f7306.el9.x86_64 37/37 2024-09-13T12:44:20.592 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 37/37 2024-09-13T12:44:20.592 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:20.592 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:44:20.592 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:20.592 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mds-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:20.593 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:20.593 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-modules-core-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:20.593 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mon-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:20.593 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-osd-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:20.593 INFO:teuthology.orchestra.run.smithi070.stdout: lua-5.4.4-4.el9.x86_64 2024-09-13T12:44:20.593 INFO:teuthology.orchestra.run.smithi070.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-09-13T12:44:20.593 INFO:teuthology.orchestra.run.smithi070.stdout: luarocks-3.9.2-5.el9.noarch 2024-09-13T12:44:20.593 INFO:teuthology.orchestra.run.smithi070.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-13T12:44:20.593 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-13T12:44:20.593 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-13T12:44:20.593 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-13T12:44:20.593 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-13T12:44:20.593 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-13T12:44:20.594 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-13T12:44:20.594 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-13T12:44:20.594 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-13T12:44:20.594 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-13T12:44:20.594 INFO:teuthology.orchestra.run.smithi070.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-13T12:44:20.594 INFO:teuthology.orchestra.run.smithi070.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-13T12:44:20.594 INFO:teuthology.orchestra.run.smithi070.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-13T12:44:20.594 INFO:teuthology.orchestra.run.smithi070.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-13T12:44:20.595 INFO:teuthology.orchestra.run.smithi070.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-13T12:44:20.595 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-13T12:44:20.595 INFO:teuthology.orchestra.run.smithi070.stdout: python3-ply-3.11-14.el9.noarch 2024-09-13T12:44:20.595 INFO:teuthology.orchestra.run.smithi070.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-13T12:44:20.595 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-13T12:44:20.595 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-13T12:44:20.595 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-13T12:44:20.595 INFO:teuthology.orchestra.run.smithi070.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-13T12:44:20.595 INFO:teuthology.orchestra.run.smithi070.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-13T12:44:20.595 INFO:teuthology.orchestra.run.smithi070.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-13T12:44:20.596 INFO:teuthology.orchestra.run.smithi070.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-13T12:44:20.596 INFO:teuthology.orchestra.run.smithi070.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-13T12:44:20.596 INFO:teuthology.orchestra.run.smithi070.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-13T12:44:20.596 INFO:teuthology.orchestra.run.smithi070.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-13T12:44:20.596 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:20.596 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:44:20.621 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 37/37 2024-09-13T12:44:20.621 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:20.621 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:44:20.621 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:20.621 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mds-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:20.621 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:20.621 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-modules-core-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:20.621 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mon-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:20.622 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-osd-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:20.622 INFO:teuthology.orchestra.run.smithi105.stdout: lua-5.4.4-4.el9.x86_64 2024-09-13T12:44:20.622 INFO:teuthology.orchestra.run.smithi105.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-09-13T12:44:20.622 INFO:teuthology.orchestra.run.smithi105.stdout: luarocks-3.9.2-5.el9.noarch 2024-09-13T12:44:20.622 INFO:teuthology.orchestra.run.smithi105.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-13T12:44:20.622 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-13T12:44:20.622 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-13T12:44:20.622 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-13T12:44:20.622 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-13T12:44:20.622 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-13T12:44:20.622 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-13T12:44:20.622 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-13T12:44:20.623 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-13T12:44:20.623 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-13T12:44:20.623 INFO:teuthology.orchestra.run.smithi105.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-13T12:44:20.623 INFO:teuthology.orchestra.run.smithi105.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-13T12:44:20.623 INFO:teuthology.orchestra.run.smithi105.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-13T12:44:20.623 INFO:teuthology.orchestra.run.smithi105.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-13T12:44:20.623 INFO:teuthology.orchestra.run.smithi105.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-13T12:44:20.623 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-13T12:44:20.623 INFO:teuthology.orchestra.run.smithi105.stdout: python3-ply-3.11-14.el9.noarch 2024-09-13T12:44:20.623 INFO:teuthology.orchestra.run.smithi105.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-13T12:44:20.623 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-13T12:44:20.623 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-13T12:44:20.623 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-13T12:44:20.624 INFO:teuthology.orchestra.run.smithi105.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-13T12:44:20.624 INFO:teuthology.orchestra.run.smithi105.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-13T12:44:20.624 INFO:teuthology.orchestra.run.smithi105.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-13T12:44:20.624 INFO:teuthology.orchestra.run.smithi105.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-13T12:44:20.624 INFO:teuthology.orchestra.run.smithi105.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-13T12:44:20.624 INFO:teuthology.orchestra.run.smithi105.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-13T12:44:20.624 INFO:teuthology.orchestra.run.smithi105.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-13T12:44:20.624 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:20.624 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:44:20.978 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install ceph-base 2024-09-13T12:44:21.007 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-base 2024-09-13T12:44:21.537 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:00:54 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:21.574 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:00:54 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:21.626 INFO:teuthology.orchestra.run.smithi070.stdout:Package ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:44:21.663 INFO:teuthology.orchestra.run.smithi105.stdout:Package ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:44:21.668 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:44:21.669 INFO:teuthology.orchestra.run.smithi070.stdout:Nothing to do. 2024-09-13T12:44:21.669 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:44:21.707 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:44:21.708 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-09-13T12:44:21.708 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:44:21.748 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install cephadm 2024-09-13T12:44:21.765 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install cephadm 2024-09-13T12:44:21.988 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-2:19.3.0-4697.gd58f7306.el9.x86_64 37/37 2024-09-13T12:44:21.988 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-2:19.3.0-4697.gd58f7306.el9.x86_64 1/37 2024-09-13T12:44:21.988 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-mds-2:19.3.0-4697.gd58f7306.el9.x86_64 2/37 2024-09-13T12:44:21.988 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 3/37 2024-09-13T12:44:21.988 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-mon-2:19.3.0-4697.gd58f7306.el9.x86_64 4/37 2024-09-13T12:44:21.988 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-osd-2:19.3.0-4697.gd58f7306.el9.x86_64 5/37 2024-09-13T12:44:21.989 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-mgr-modules-core-2:19.3.0-4697.gd58f7306.el9. 6/37 2024-09-13T12:44:21.989 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/37 2024-09-13T12:44:21.989 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/37 2024-09-13T12:44:21.989 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/37 2024-09-13T12:44:21.989 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/37 2024-09-13T12:44:21.989 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/37 2024-09-13T12:44:21.989 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/37 2024-09-13T12:44:21.989 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/37 2024-09-13T12:44:21.989 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/37 2024-09-13T12:44:21.989 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/37 2024-09-13T12:44:21.989 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 16/37 2024-09-13T12:44:21.989 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 17/37 2024-09-13T12:44:21.990 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 18/37 2024-09-13T12:44:21.990 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 19/37 2024-09-13T12:44:21.990 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 20/37 2024-09-13T12:44:21.990 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 21/37 2024-09-13T12:44:21.990 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 22/37 2024-09-13T12:44:21.990 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 23/37 2024-09-13T12:44:21.990 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 24/37 2024-09-13T12:44:21.990 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 25/37 2024-09-13T12:44:21.990 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 26/37 2024-09-13T12:44:21.990 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 27/37 2024-09-13T12:44:21.991 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 28/37 2024-09-13T12:44:21.992 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 29/37 2024-09-13T12:44:21.992 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 30/37 2024-09-13T12:44:21.992 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 31/37 2024-09-13T12:44:21.992 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 32/37 2024-09-13T12:44:21.992 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 33/37 2024-09-13T12:44:21.992 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 34/37 2024-09-13T12:44:21.992 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 35/37 2024-09-13T12:44:21.992 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 36/37 2024-09-13T12:44:22.302 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:00:55 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:22.324 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:00:55 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:22.437 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:44:22.438 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:22.438 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repository Size 2024-09-13T12:44:22.438 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:22.438 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:44:22.438 INFO:teuthology.orchestra.run.smithi070.stdout: cephadm noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 783 k 2024-09-13T12:44:22.438 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:22.438 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:44:22.438 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:22.438 INFO:teuthology.orchestra.run.smithi070.stdout:Install 1 Package 2024-09-13T12:44:22.438 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:22.438 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 783 k 2024-09-13T12:44:22.438 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 789 k 2024-09-13T12:44:22.439 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:44:22.455 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:44:22.455 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:22.455 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-09-13T12:44:22.456 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:22.456 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:44:22.456 INFO:teuthology.orchestra.run.smithi105.stdout: cephadm noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 783 k 2024-09-13T12:44:22.456 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:22.456 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:44:22.456 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:22.456 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-09-13T12:44:22.456 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:22.457 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 783 k 2024-09-13T12:44:22.457 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 789 k 2024-09-13T12:44:22.457 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:44:22.709 INFO:teuthology.orchestra.run.smithi105.stdout:cephadm-19.3.0-4697.gd58f7306.el9.noarch.rpm 3.0 MB/s | 783 kB 00:00 2024-09-13T12:44:22.710 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:22.710 INFO:teuthology.orchestra.run.smithi105.stdout:Total 3.0 MB/s | 783 kB 00:00 2024-09-13T12:44:22.710 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:44:22.711 INFO:teuthology.orchestra.run.smithi070.stdout:cephadm-19.3.0-4697.gd58f7306.el9.noarch.rpm 2.8 MB/s | 783 kB 00:00 2024-09-13T12:44:22.712 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:22.712 INFO:teuthology.orchestra.run.smithi070.stdout:Total 2.8 MB/s | 783 kB 00:00 2024-09-13T12:44:22.713 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:44:22.715 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:44:22.715 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:44:22.718 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:44:22.718 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:44:22.721 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:44:22.722 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:44:22.724 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:44:22.724 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:44:22.795 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:44:22.798 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:44:23.145 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 37/37 2024-09-13T12:44:23.145 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:23.145 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:44:23.145 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:23.146 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mds-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:23.146 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:23.146 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-modules-core-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:23.146 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mon-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:23.146 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-osd-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:23.146 INFO:teuthology.orchestra.run.smithi086.stdout: lua-5.4.4-4.el9.x86_64 2024-09-13T12:44:23.146 INFO:teuthology.orchestra.run.smithi086.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-09-13T12:44:23.146 INFO:teuthology.orchestra.run.smithi086.stdout: luarocks-3.9.2-5.el9.noarch 2024-09-13T12:44:23.146 INFO:teuthology.orchestra.run.smithi086.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-09-13T12:44:23.146 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-09-13T12:44:23.146 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-09-13T12:44:23.146 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-09-13T12:44:23.147 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-09-13T12:44:23.147 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-09-13T12:44:23.147 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-09-13T12:44:23.147 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-09-13T12:44:23.147 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-09-13T12:44:23.147 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-09-13T12:44:23.147 INFO:teuthology.orchestra.run.smithi086.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-09-13T12:44:23.147 INFO:teuthology.orchestra.run.smithi086.stdout: python3-mako-1.1.4-6.el9.noarch 2024-09-13T12:44:23.147 INFO:teuthology.orchestra.run.smithi086.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-09-13T12:44:23.147 INFO:teuthology.orchestra.run.smithi086.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-09-13T12:44:23.147 INFO:teuthology.orchestra.run.smithi086.stdout: python3-packaging-20.9-5.el9.noarch 2024-09-13T12:44:23.148 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-09-13T12:44:23.148 INFO:teuthology.orchestra.run.smithi086.stdout: python3-ply-3.11-14.el9.noarch 2024-09-13T12:44:23.148 INFO:teuthology.orchestra.run.smithi086.stdout: python3-portend-3.1.0-2.el9.noarch 2024-09-13T12:44:23.148 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-09-13T12:44:23.148 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pycparser-2.20-6.el9.noarch 2024-09-13T12:44:23.148 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pytz-2021.1-5.el9.noarch 2024-09-13T12:44:23.148 INFO:teuthology.orchestra.run.smithi086.stdout: python3-requests-2.25.1-8.el9.noarch 2024-09-13T12:44:23.148 INFO:teuthology.orchestra.run.smithi086.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-09-13T12:44:23.148 INFO:teuthology.orchestra.run.smithi086.stdout: python3-toml-0.10.2-6.el9.noarch 2024-09-13T12:44:23.148 INFO:teuthology.orchestra.run.smithi086.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-09-13T12:44:23.148 INFO:teuthology.orchestra.run.smithi086.stdout: python3-webob-1.8.8-2.el9.noarch 2024-09-13T12:44:23.149 INFO:teuthology.orchestra.run.smithi086.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-09-13T12:44:23.149 INFO:teuthology.orchestra.run.smithi086.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-09-13T12:44:23.149 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:23.149 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:44:23.165 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:44:23.260 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:44:23.278 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:44:23.362 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:44:23.508 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install ceph-base 2024-09-13T12:44:23.641 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:44:23.707 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:44:23.883 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:44:23.884 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:23.884 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:44:23.884 INFO:teuthology.orchestra.run.smithi070.stdout: cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:23.884 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:23.884 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:44:23.947 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:44:23.947 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:23.947 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:44:23.947 INFO:teuthology.orchestra.run.smithi105.stdout: cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:23.947 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:23.947 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:44:24.083 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:00:55 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:44:24.097 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install ceph-immutable-object-cache 2024-09-13T12:44:24.138 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-immutable-object-cache 2024-09-13T12:44:24.174 INFO:teuthology.orchestra.run.smithi086.stdout:Package ceph-base-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:44:24.217 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:44:24.217 INFO:teuthology.orchestra.run.smithi086.stdout:Nothing to do. 2024-09-13T12:44:24.217 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:44:24.288 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install cephadm 2024-09-13T12:44:24.671 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:00:57 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:24.709 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:00:57 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:24.806 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:44:24.807 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:24.807 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repo Size 2024-09-13T12:44:24.807 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:24.807 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:44:24.807 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-immutable-object-cache x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 145 k 2024-09-13T12:44:24.807 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:24.808 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:44:24.808 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:24.808 INFO:teuthology.orchestra.run.smithi070.stdout:Install 1 Package 2024-09-13T12:44:24.808 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:24.808 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 145 k 2024-09-13T12:44:24.808 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 432 k 2024-09-13T12:44:24.808 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:44:24.842 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:44:24.843 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:24.843 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repo Size 2024-09-13T12:44:24.843 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:24.843 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:44:24.843 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-immutable-object-cache x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 145 k 2024-09-13T12:44:24.843 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:24.843 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:44:24.843 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:24.843 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-09-13T12:44:24.843 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:24.844 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 145 k 2024-09-13T12:44:24.844 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 432 k 2024-09-13T12:44:24.844 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:44:24.846 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:00:55 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:44:24.980 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:44:24.981 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:24.981 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repository Size 2024-09-13T12:44:24.981 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:24.981 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:44:24.981 INFO:teuthology.orchestra.run.smithi086.stdout: cephadm noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 783 k 2024-09-13T12:44:24.981 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:24.981 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:44:24.981 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:24.981 INFO:teuthology.orchestra.run.smithi086.stdout:Install 1 Package 2024-09-13T12:44:24.981 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:24.982 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 783 k 2024-09-13T12:44:24.982 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 789 k 2024-09-13T12:44:24.982 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:44:25.018 INFO:teuthology.orchestra.run.smithi070.stdout:ceph-immutable-object-cache-19.3.0-4697.gd58f73 689 kB/s | 145 kB 00:00 2024-09-13T12:44:25.019 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:25.019 INFO:teuthology.orchestra.run.smithi070.stdout:Total 684 kB/s | 145 kB 00:00 2024-09-13T12:44:25.019 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:44:25.026 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:44:25.027 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:44:25.057 INFO:teuthology.orchestra.run.smithi105.stdout:ceph-immutable-object-cache-19.3.0-4697.gd58f73 682 kB/s | 145 kB 00:00 2024-09-13T12:44:25.058 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:25.058 INFO:teuthology.orchestra.run.smithi105.stdout:Total 676 kB/s | 145 kB 00:00 2024-09-13T12:44:25.058 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:44:25.065 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:44:25.066 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:44:25.084 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:44:25.084 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:44:25.123 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:44:25.123 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:44:25.230 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:44:25.243 INFO:teuthology.orchestra.run.smithi086.stdout:cephadm-19.3.0-4697.gd58f7306.el9.noarch.rpm 2.9 MB/s | 783 kB 00:00 2024-09-13T12:44:25.244 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:25.244 INFO:teuthology.orchestra.run.smithi086.stdout:Total 2.9 MB/s | 783 kB 00:00 2024-09-13T12:44:25.244 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:44:25.249 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:44:25.249 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:44:25.255 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:44:25.256 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:44:25.275 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:44:25.311 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-immutable-object-cache-2:19.3.0-4697.gd58f7306. 1/1 2024-09-13T12:44:25.324 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:44:25.335 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.3.0-4697.gd58f7306. 1/1 2024-09-13T12:44:25.335 INFO:teuthology.orchestra.run.smithi070.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:25.335 INFO:teuthology.orchestra.run.smithi070.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-13T12:44:25.335 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:25.350 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-immutable-object-cache-2:19.3.0-4697.gd58f7306. 1/1 2024-09-13T12:44:25.375 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.3.0-4697.gd58f7306. 1/1 2024-09-13T12:44:25.375 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:25.375 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-13T12:44:25.375 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:25.764 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:44:25.856 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:44:26.204 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:44:26.250 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-immutable-object-cache-2:19.3.0-4697.gd58f7306. 1/1 2024-09-13T12:44:26.250 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:26.251 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:44:26.251 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-immutable-object-cache-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:26.251 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:26.251 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:44:26.313 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-immutable-object-cache-2:19.3.0-4697.gd58f7306. 1/1 2024-09-13T12:44:26.313 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:26.313 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:44:26.313 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-immutable-object-cache-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:26.313 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:26.313 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:44:26.457 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:44:26.457 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:26.458 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:44:26.458 INFO:teuthology.orchestra.run.smithi086.stdout: cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:26.458 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:26.458 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:44:26.470 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install ceph-mgr 2024-09-13T12:44:26.527 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-mgr 2024-09-13T12:44:26.690 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install ceph-immutable-object-cache 2024-09-13T12:44:27.047 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:00 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:27.099 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:00 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:27.142 INFO:teuthology.orchestra.run.smithi070.stdout:Package ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:44:27.184 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:44:27.185 INFO:teuthology.orchestra.run.smithi070.stdout:Nothing to do. 2024-09-13T12:44:27.185 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:44:27.193 INFO:teuthology.orchestra.run.smithi105.stdout:Package ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:44:27.236 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:44:27.237 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-09-13T12:44:27.237 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:44:27.247 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install ceph-mgr-dashboard 2024-09-13T12:44:27.257 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:00:58 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:44:27.297 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-mgr-dashboard 2024-09-13T12:44:27.390 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:44:27.391 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:27.391 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repo Size 2024-09-13T12:44:27.391 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:27.391 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:44:27.391 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-immutable-object-cache x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 145 k 2024-09-13T12:44:27.391 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:27.391 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:44:27.392 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:27.392 INFO:teuthology.orchestra.run.smithi086.stdout:Install 1 Package 2024-09-13T12:44:27.392 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:27.392 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 145 k 2024-09-13T12:44:27.392 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 432 k 2024-09-13T12:44:27.392 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:44:27.599 INFO:teuthology.orchestra.run.smithi086.stdout:ceph-immutable-object-cache-19.3.0-4697.gd58f73 702 kB/s | 145 kB 00:00 2024-09-13T12:44:27.599 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:27.600 INFO:teuthology.orchestra.run.smithi086.stdout:Total 696 kB/s | 145 kB 00:00 2024-09-13T12:44:27.600 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:44:27.607 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:44:27.607 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:44:27.664 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:44:27.665 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:44:27.801 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:00 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:27.843 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:44:27.853 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:00 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:27.917 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-immutable-object-cache-2:19.3.0-4697.gd58f7306. 1/1 2024-09-13T12:44:27.933 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:44:27.934 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:27.934 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repository Size 2024-09-13T12:44:27.934 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:27.934 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:44:27.934 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-dashboard noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 14 M 2024-09-13T12:44:27.934 INFO:teuthology.orchestra.run.smithi070.stdout:Installing dependencies: 2024-09-13T12:44:27.935 INFO:teuthology.orchestra.run.smithi070.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-09-13T12:44:27.935 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-grafana-dashboards noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 34 k 2024-09-13T12:44:27.935 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-prometheus-alerts noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 16 k 2024-09-13T12:44:27.935 INFO:teuthology.orchestra.run.smithi070.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-09-13T12:44:27.935 INFO:teuthology.orchestra.run.smithi070.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-09-13T12:44:27.935 INFO:teuthology.orchestra.run.smithi070.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-09-13T12:44:27.935 INFO:teuthology.orchestra.run.smithi070.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-09-13T12:44:27.935 INFO:teuthology.orchestra.run.smithi070.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-09-13T12:44:27.935 INFO:teuthology.orchestra.run.smithi070.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-09-13T12:44:27.935 INFO:teuthology.orchestra.run.smithi070.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-13T12:44:27.935 INFO:teuthology.orchestra.run.smithi070.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-13T12:44:27.935 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:27.936 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:44:27.936 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:27.936 INFO:teuthology.orchestra.run.smithi070.stdout:Install 12 Packages 2024-09-13T12:44:27.936 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:27.936 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 19 M 2024-09-13T12:44:27.936 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 159 M 2024-09-13T12:44:27.937 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:44:27.941 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.3.0-4697.gd58f7306. 1/1 2024-09-13T12:44:27.941 INFO:teuthology.orchestra.run.smithi086.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:44:27.941 INFO:teuthology.orchestra.run.smithi086.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-09-13T12:44:27.941 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:27.985 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:44:27.986 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:27.986 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-09-13T12:44:27.986 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:27.986 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:44:27.986 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-dashboard noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 14 M 2024-09-13T12:44:27.986 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-09-13T12:44:27.987 INFO:teuthology.orchestra.run.smithi105.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-09-13T12:44:27.987 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-grafana-dashboards noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 34 k 2024-09-13T12:44:27.987 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-prometheus-alerts noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 16 k 2024-09-13T12:44:27.987 INFO:teuthology.orchestra.run.smithi105.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-09-13T12:44:27.987 INFO:teuthology.orchestra.run.smithi105.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-09-13T12:44:27.987 INFO:teuthology.orchestra.run.smithi105.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-09-13T12:44:27.987 INFO:teuthology.orchestra.run.smithi105.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-09-13T12:44:27.987 INFO:teuthology.orchestra.run.smithi105.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-09-13T12:44:27.987 INFO:teuthology.orchestra.run.smithi105.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-09-13T12:44:27.987 INFO:teuthology.orchestra.run.smithi105.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-13T12:44:27.987 INFO:teuthology.orchestra.run.smithi105.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-13T12:44:27.987 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:27.987 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:44:27.988 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:27.988 INFO:teuthology.orchestra.run.smithi105.stdout:Install 12 Packages 2024-09-13T12:44:27.988 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:27.988 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 19 M 2024-09-13T12:44:27.988 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 159 M 2024-09-13T12:44:27.988 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:44:28.344 INFO:teuthology.orchestra.run.smithi105.stdout:(1/12): ceph-prometheus-alerts-19.3.0-4697.gd58 98 kB/s | 16 kB 00:00 2024-09-13T12:44:28.370 INFO:teuthology.orchestra.run.smithi105.stdout:(2/12): ceph-grafana-dashboards-19.3.0-4697.gd5 177 kB/s | 34 kB 00:00 2024-09-13T12:44:28.372 INFO:teuthology.orchestra.run.smithi070.stdout:(1/12): ceph-grafana-dashboards-19.3.0-4697.gd5 221 kB/s | 34 kB 00:00 2024-09-13T12:44:28.397 INFO:teuthology.orchestra.run.smithi070.stdout:(2/12): ceph-prometheus-alerts-19.3.0-4697.gd58 91 kB/s | 16 kB 00:00 2024-09-13T12:44:28.545 INFO:teuthology.orchestra.run.smithi105.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.5 MB/s | 269 kB 00:00 2024-09-13T12:44:28.547 INFO:teuthology.orchestra.run.smithi070.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.8 MB/s | 269 kB 00:00 2024-09-13T12:44:28.595 INFO:teuthology.orchestra.run.smithi105.stdout:(4/12): protobuf-3.14.0-13.el9.x86_64.rpm 4.0 MB/s | 1.0 MB 00:00 2024-09-13T12:44:28.597 INFO:teuthology.orchestra.run.smithi070.stdout:(4/12): protobuf-3.14.0-13.el9.x86_64.rpm 4.5 MB/s | 1.0 MB 00:00 2024-09-13T12:44:28.662 INFO:teuthology.orchestra.run.smithi105.stdout:(5/12): protobuf-compiler-3.14.0-13.el9.x86_64. 7.2 MB/s | 863 kB 00:00 2024-09-13T12:44:28.673 INFO:teuthology.orchestra.run.smithi070.stdout:(5/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 7.1 MB/s | 548 kB 00:00 2024-09-13T12:44:28.687 INFO:teuthology.orchestra.run.smithi105.stdout:(6/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 5.8 MB/s | 548 kB 00:00 2024-09-13T12:44:28.698 INFO:teuthology.orchestra.run.smithi070.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 784 kB/s | 19 kB 00:00 2024-09-13T12:44:28.782 INFO:teuthology.orchestra.run.smithi070.stdout:(7/12): protobuf-compiler-3.14.0-13.el9.x86_64. 3.6 MB/s | 863 kB 00:00 2024-09-13T12:44:28.840 INFO:teuthology.orchestra.run.smithi070.stdout:(8/12): python3-grpcio-1.46.7-10.el9.x86_64.rpm 14 MB/s | 2.0 MB 00:00 2024-09-13T12:44:28.849 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-immutable-object-cache-2:19.3.0-4697.gd58f7306. 1/1 2024-09-13T12:44:28.849 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:28.849 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:44:28.849 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-immutable-object-cache-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:44:28.849 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:28.849 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:44:28.854 INFO:teuthology.orchestra.run.smithi105.stdout:(7/12): ceph-mgr-dashboard-19.3.0-4697.gd58f730 21 MB/s | 14 MB 00:00 2024-09-13T12:44:28.865 INFO:teuthology.orchestra.run.smithi070.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 1.2 MB/s | 31 kB 00:00 2024-09-13T12:44:28.880 INFO:teuthology.orchestra.run.smithi105.stdout:(8/12): grpc-data-1.46.7-10.el9.noarch.rpm 89 kB/s | 19 kB 00:00 2024-09-13T12:44:28.899 INFO:teuthology.orchestra.run.smithi070.stdout:(10/12): python3-grpcio-tools-1.46.7-10.el9.x86 1.2 MB/s | 144 kB 00:00 2024-09-13T12:44:28.913 INFO:teuthology.orchestra.run.smithi105.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 1.1 MB/s | 31 kB 00:00 2024-09-13T12:44:28.933 INFO:teuthology.orchestra.run.smithi070.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 2.8 MB/s | 188 kB 00:00 2024-09-13T12:44:28.964 INFO:teuthology.orchestra.run.smithi105.stdout:(10/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 7.6 MB/s | 2.0 MB 00:00 2024-09-13T12:44:28.989 INFO:teuthology.orchestra.run.smithi105.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 2.5 MB/s | 188 kB 00:00 2024-09-13T12:44:29.014 INFO:teuthology.orchestra.run.smithi105.stdout:(12/12): python3-grpcio-tools-1.46.7-10.el9.x86 909 kB/s | 144 kB 00:00 2024-09-13T12:44:29.018 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:29.019 INFO:teuthology.orchestra.run.smithi105.stdout:Total 19 MB/s | 19 MB 00:01 2024-09-13T12:44:29.066 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:44:29.084 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:44:29.084 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:44:29.094 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install ceph-mgr 2024-09-13T12:44:29.346 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:44:29.346 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:44:29.442 INFO:teuthology.orchestra.run.smithi070.stdout:(12/12): ceph-mgr-dashboard-19.3.0-4697.gd58f73 12 MB/s | 14 MB 00:01 2024-09-13T12:44:29.446 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:29.446 INFO:teuthology.orchestra.run.smithi070.stdout:Total 13 MB/s | 19 MB 00:01 2024-09-13T12:44:29.492 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:44:29.510 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:44:29.510 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:44:29.670 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:00 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:44:29.764 INFO:teuthology.orchestra.run.smithi086.stdout:Package ceph-mgr-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:44:29.774 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:44:29.774 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:44:29.806 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:44:29.807 INFO:teuthology.orchestra.run.smithi086.stdout:Nothing to do. 2024-09-13T12:44:29.807 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:44:29.875 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install ceph-mgr-dashboard 2024-09-13T12:44:29.951 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:44:30.031 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-09-13T12:44:30.066 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-09-13T12:44:30.114 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-09-13T12:44:30.143 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-09-13T12:44:30.247 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-09-13T12:44:30.369 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-09-13T12:44:30.401 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:44:30.442 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:01 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:44:30.472 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-09-13T12:44:30.483 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-09-13T12:44:30.527 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-09-13T12:44:30.537 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-09-13T12:44:30.568 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-09-13T12:44:30.573 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-09-13T12:44:30.576 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:44:30.578 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:30.578 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repository Size 2024-09-13T12:44:30.578 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:30.578 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:44:30.578 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-dashboard noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 14 M 2024-09-13T12:44:30.578 INFO:teuthology.orchestra.run.smithi086.stdout:Installing dependencies: 2024-09-13T12:44:30.578 INFO:teuthology.orchestra.run.smithi086.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-09-13T12:44:30.578 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-grafana-dashboards noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 34 k 2024-09-13T12:44:30.578 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-prometheus-alerts noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 16 k 2024-09-13T12:44:30.578 INFO:teuthology.orchestra.run.smithi086.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-09-13T12:44:30.578 INFO:teuthology.orchestra.run.smithi086.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-09-13T12:44:30.579 INFO:teuthology.orchestra.run.smithi086.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-09-13T12:44:30.579 INFO:teuthology.orchestra.run.smithi086.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-09-13T12:44:30.579 INFO:teuthology.orchestra.run.smithi086.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-09-13T12:44:30.579 INFO:teuthology.orchestra.run.smithi086.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-09-13T12:44:30.579 INFO:teuthology.orchestra.run.smithi086.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-09-13T12:44:30.579 INFO:teuthology.orchestra.run.smithi086.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-09-13T12:44:30.579 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:30.579 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:44:30.579 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:30.579 INFO:teuthology.orchestra.run.smithi086.stdout:Install 12 Packages 2024-09-13T12:44:30.579 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:30.580 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 19 M 2024-09-13T12:44:30.580 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 159 M 2024-09-13T12:44:30.580 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:44:30.600 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-prometheus-alerts-2:19.3.0-4697.gd58f7306.el9 10/12 2024-09-13T12:44:30.612 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-09-13T12:44:30.711 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-09-13T12:44:30.845 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-09-13T12:44:30.939 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-09-13T12:44:30.984 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-09-13T12:44:31.013 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-09-13T12:44:31.045 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-prometheus-alerts-2:19.3.0-4697.gd58f7306.el9 10/12 2024-09-13T12:44:31.194 INFO:teuthology.orchestra.run.smithi086.stdout:(1/12): ceph-grafana-dashboards-19.3.0-4697.gd5 209 kB/s | 34 kB 00:00 2024-09-13T12:44:31.210 INFO:teuthology.orchestra.run.smithi086.stdout:(2/12): ceph-prometheus-alerts-19.3.0-4697.gd58 91 kB/s | 16 kB 00:00 2024-09-13T12:44:31.411 INFO:teuthology.orchestra.run.smithi086.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.3 MB/s | 269 kB 00:00 2024-09-13T12:44:31.536 INFO:teuthology.orchestra.run.smithi086.stdout:(4/12): protobuf-3.14.0-13.el9.x86_64.rpm 2.9 MB/s | 1.0 MB 00:00 2024-09-13T12:44:31.703 INFO:teuthology.orchestra.run.smithi086.stdout:(5/12): ceph-mgr-dashboard-19.3.0-4697.gd58f730 21 MB/s | 14 MB 00:00 2024-09-13T12:44:31.753 INFO:teuthology.orchestra.run.smithi086.stdout:(6/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 2.5 MB/s | 548 kB 00:00 2024-09-13T12:44:31.770 INFO:teuthology.orchestra.run.smithi086.stdout:(7/12): grpc-data-1.46.7-10.el9.noarch.rpm 300 kB/s | 19 kB 00:00 2024-09-13T12:44:31.804 INFO:teuthology.orchestra.run.smithi086.stdout:(8/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 4.2 MB/s | 144 kB 00:00 2024-09-13T12:44:31.821 INFO:teuthology.orchestra.run.smithi086.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 1.8 MB/s | 31 kB 00:00 2024-09-13T12:44:31.863 INFO:teuthology.orchestra.run.smithi086.stdout:(10/12): python3-routes-2.5.1-5.el9.noarch.rpm 4.4 MB/s | 188 kB 00:00 2024-09-13T12:44:31.905 INFO:teuthology.orchestra.run.smithi086.stdout:(11/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 14 MB/s | 2.0 MB 00:00 2024-09-13T12:44:32.263 INFO:teuthology.orchestra.run.smithi086.stdout:(12/12): protobuf-compiler-3.14.0-13.el9.x86_64 1.0 MB/s | 863 kB 00:00 2024-09-13T12:44:32.267 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:32.267 INFO:teuthology.orchestra.run.smithi086.stdout:Total 11 MB/s | 19 MB 00:01 2024-09-13T12:44:32.316 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:44:32.336 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:44:32.336 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:44:32.609 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:44:32.610 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:44:33.206 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:44:33.289 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-09-13T12:44:33.323 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-09-13T12:44:33.370 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-09-13T12:44:33.409 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-09-13T12:44:33.505 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-09-13T12:44:33.634 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-09-13T12:44:33.728 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-09-13T12:44:33.751 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-grafana-dashboards-2:19.3.0-4697.gd58f7306.el 11/12 2024-09-13T12:44:33.771 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-09-13T12:44:33.800 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-09-13T12:44:33.805 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mgr-dashboard-2:19.3.0-4697.gd58f7306.el9.noa 12/12 2024-09-13T12:44:33.850 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-prometheus-alerts-2:19.3.0-4697.gd58f7306.el9 10/12 2024-09-13T12:44:34.188 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-grafana-dashboards-2:19.3.0-4697.gd58f7306.el 11/12 2024-09-13T12:44:34.241 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-mgr-dashboard-2:19.3.0-4697.gd58f7306.el9.noa 12/12 2024-09-13T12:44:35.800 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.3.0-4697.gd58f7306.el9.noa 12/12 2024-09-13T12:44:35.800 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-grafana-dashboards-2:19.3.0-4697.gd58f7306.el 1/12 2024-09-13T12:44:35.801 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mgr-dashboard-2:19.3.0-4697.gd58f7306.el9.noa 2/12 2024-09-13T12:44:35.801 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-prometheus-alerts-2:19.3.0-4697.gd58f7306.el9 3/12 2024-09-13T12:44:35.801 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-09-13T12:44:35.801 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-09-13T12:44:35.801 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-09-13T12:44:35.801 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-09-13T12:44:35.801 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-09-13T12:44:35.801 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-09-13T12:44:35.801 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-09-13T12:44:35.801 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-09-13T12:44:36.113 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-09-13T12:44:36.113 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:36.114 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:44:36.114 INFO:teuthology.orchestra.run.smithi105.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-09-13T12:44:36.114 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-grafana-dashboards-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:36.114 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-dashboard-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:36.114 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-prometheus-alerts-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:36.114 INFO:teuthology.orchestra.run.smithi105.stdout: grpc-data-1.46.7-10.el9.noarch 2024-09-13T12:44:36.114 INFO:teuthology.orchestra.run.smithi105.stdout: protobuf-3.14.0-13.el9.x86_64 2024-09-13T12:44:36.114 INFO:teuthology.orchestra.run.smithi105.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-09-13T12:44:36.114 INFO:teuthology.orchestra.run.smithi105.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-09-13T12:44:36.114 INFO:teuthology.orchestra.run.smithi105.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-09-13T12:44:36.114 INFO:teuthology.orchestra.run.smithi105.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-09-13T12:44:36.114 INFO:teuthology.orchestra.run.smithi105.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-13T12:44:36.114 INFO:teuthology.orchestra.run.smithi105.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-13T12:44:36.115 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:36.115 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:44:36.267 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.3.0-4697.gd58f7306.el9.noa 12/12 2024-09-13T12:44:36.268 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-grafana-dashboards-2:19.3.0-4697.gd58f7306.el 1/12 2024-09-13T12:44:36.268 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-mgr-dashboard-2:19.3.0-4697.gd58f7306.el9.noa 2/12 2024-09-13T12:44:36.268 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-prometheus-alerts-2:19.3.0-4697.gd58f7306.el9 3/12 2024-09-13T12:44:36.268 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-09-13T12:44:36.268 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-09-13T12:44:36.268 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-09-13T12:44:36.268 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-09-13T12:44:36.268 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-09-13T12:44:36.268 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-09-13T12:44:36.268 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-09-13T12:44:36.268 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-09-13T12:44:36.332 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-13T12:44:36.587 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-09-13T12:44:36.587 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:36.588 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:44:36.588 INFO:teuthology.orchestra.run.smithi070.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-09-13T12:44:36.588 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-grafana-dashboards-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:36.588 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-dashboard-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:36.588 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-prometheus-alerts-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:36.588 INFO:teuthology.orchestra.run.smithi070.stdout: grpc-data-1.46.7-10.el9.noarch 2024-09-13T12:44:36.588 INFO:teuthology.orchestra.run.smithi070.stdout: protobuf-3.14.0-13.el9.x86_64 2024-09-13T12:44:36.588 INFO:teuthology.orchestra.run.smithi070.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-09-13T12:44:36.588 INFO:teuthology.orchestra.run.smithi070.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-09-13T12:44:36.588 INFO:teuthology.orchestra.run.smithi070.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-09-13T12:44:36.588 INFO:teuthology.orchestra.run.smithi070.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-09-13T12:44:36.589 INFO:teuthology.orchestra.run.smithi070.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-13T12:44:36.589 INFO:teuthology.orchestra.run.smithi070.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-13T12:44:36.589 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:36.589 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:44:36.882 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-13T12:44:36.891 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:09 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:37.024 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:44:37.025 INFO:teuthology.orchestra.run.smithi105.stdout:======================================================================================= 2024-09-13T12:44:37.025 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-09-13T12:44:37.025 INFO:teuthology.orchestra.run.smithi105.stdout:======================================================================================= 2024-09-13T12:44:37.025 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:44:37.025 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-diskprediction-local noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 7.4 M 2024-09-13T12:44:37.025 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-09-13T12:44:37.025 INFO:teuthology.orchestra.run.smithi105.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-13T12:44:37.025 INFO:teuthology.orchestra.run.smithi105.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-13T12:44:37.025 INFO:teuthology.orchestra.run.smithi105.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-13T12:44:37.025 INFO:teuthology.orchestra.run.smithi105.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-13T12:44:37.026 INFO:teuthology.orchestra.run.smithi105.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-13T12:44:37.026 INFO:teuthology.orchestra.run.smithi105.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-13T12:44:37.026 INFO:teuthology.orchestra.run.smithi105.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-13T12:44:37.026 INFO:teuthology.orchestra.run.smithi105.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-13T12:44:37.026 INFO:teuthology.orchestra.run.smithi105.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-13T12:44:37.026 INFO:teuthology.orchestra.run.smithi105.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-13T12:44:37.026 INFO:teuthology.orchestra.run.smithi105.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-13T12:44:37.026 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:37.026 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:44:37.026 INFO:teuthology.orchestra.run.smithi105.stdout:======================================================================================= 2024-09-13T12:44:37.026 INFO:teuthology.orchestra.run.smithi105.stdout:Install 12 Packages 2024-09-13T12:44:37.026 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:37.027 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 38 M 2024-09-13T12:44:37.027 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 212 M 2024-09-13T12:44:37.027 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:44:37.032 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-grafana-dashboards-2:19.3.0-4697.gd58f7306.el 11/12 2024-09-13T12:44:37.087 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-mgr-dashboard-2:19.3.0-4697.gd58f7306.el9.noa 12/12 2024-09-13T12:44:37.444 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:10 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:37.578 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:44:37.579 INFO:teuthology.orchestra.run.smithi070.stdout:======================================================================================= 2024-09-13T12:44:37.579 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repository Size 2024-09-13T12:44:37.579 INFO:teuthology.orchestra.run.smithi070.stdout:======================================================================================= 2024-09-13T12:44:37.579 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:44:37.579 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-diskprediction-local noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 7.4 M 2024-09-13T12:44:37.579 INFO:teuthology.orchestra.run.smithi070.stdout:Installing dependencies: 2024-09-13T12:44:37.579 INFO:teuthology.orchestra.run.smithi070.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-13T12:44:37.580 INFO:teuthology.orchestra.run.smithi070.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-13T12:44:37.580 INFO:teuthology.orchestra.run.smithi070.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-13T12:44:37.580 INFO:teuthology.orchestra.run.smithi070.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-13T12:44:37.580 INFO:teuthology.orchestra.run.smithi070.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-13T12:44:37.580 INFO:teuthology.orchestra.run.smithi070.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-13T12:44:37.580 INFO:teuthology.orchestra.run.smithi070.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-13T12:44:37.580 INFO:teuthology.orchestra.run.smithi070.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-13T12:44:37.580 INFO:teuthology.orchestra.run.smithi070.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-13T12:44:37.580 INFO:teuthology.orchestra.run.smithi070.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-13T12:44:37.580 INFO:teuthology.orchestra.run.smithi070.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-13T12:44:37.580 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:37.580 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:44:37.581 INFO:teuthology.orchestra.run.smithi070.stdout:======================================================================================= 2024-09-13T12:44:37.581 INFO:teuthology.orchestra.run.smithi070.stdout:Install 12 Packages 2024-09-13T12:44:37.581 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:37.582 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 38 M 2024-09-13T12:44:37.582 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 212 M 2024-09-13T12:44:37.582 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:44:37.587 INFO:teuthology.orchestra.run.smithi105.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.1 MB/s | 191 kB 00:00 2024-09-13T12:44:37.621 INFO:teuthology.orchestra.run.smithi105.stdout:(2/12): libgfortran-11.5.0-2.el9.x86_64.rpm 3.7 MB/s | 801 kB 00:00 2024-09-13T12:44:37.721 INFO:teuthology.orchestra.run.smithi105.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 245 kB/s | 33 kB 00:00 2024-09-13T12:44:37.788 INFO:teuthology.orchestra.run.smithi105.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 273 kB/s | 18 kB 00:00 2024-09-13T12:44:37.848 INFO:teuthology.orchestra.run.smithi070.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.5 MB/s | 191 kB 00:00 2024-09-13T12:44:37.890 INFO:teuthology.orchestra.run.smithi070.stdout:(2/12): libgfortran-11.5.0-2.el9.x86_64.rpm 4.8 MB/s | 801 kB 00:00 2024-09-13T12:44:37.938 INFO:teuthology.orchestra.run.smithi105.stdout:(5/12): ceph-mgr-diskprediction-local-19.3.0-46 14 MB/s | 7.4 MB 00:00 2024-09-13T12:44:37.964 INFO:teuthology.orchestra.run.smithi105.stdout:(6/12): openblas-0.3.26-2.el9.x86_64.rpm 219 kB/s | 38 kB 00:00 2024-09-13T12:44:37.990 INFO:teuthology.orchestra.run.smithi070.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 230 kB/s | 33 kB 00:00 2024-09-13T12:44:38.031 INFO:teuthology.orchestra.run.smithi105.stdout:(7/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 7.3 MB/s | 3.0 MB 00:00 2024-09-13T12:44:38.041 INFO:teuthology.orchestra.run.smithi070.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 363 kB/s | 18 kB 00:00 2024-09-13T12:44:38.073 INFO:teuthology.orchestra.run.smithi105.stdout:(8/12): python3-devel-3.9.19-8.el9.x86_64.rpm 2.2 MB/s | 245 kB 00:00 2024-09-13T12:44:38.091 INFO:teuthology.orchestra.run.smithi070.stdout:(5/12): openblas-0.3.26-2.el9.x86_64.rpm 772 kB/s | 38 kB 00:00 2024-09-13T12:44:38.165 INFO:teuthology.orchestra.run.smithi105.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.7 MB/s | 250 kB 00:00 2024-09-13T12:44:38.216 INFO:teuthology.orchestra.run.smithi070.stdout:(6/12): ceph-mgr-diskprediction-local-19.3.0-46 15 MB/s | 7.4 MB 00:00 2024-09-13T12:44:38.265 INFO:teuthology.orchestra.run.smithi105.stdout:(10/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 15 MB/s | 4.9 MB 00:00 2024-09-13T12:44:38.332 INFO:teuthology.orchestra.run.smithi105.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 17 MB/s | 5.1 MB 00:00 2024-09-13T12:44:38.366 INFO:teuthology.orchestra.run.smithi070.stdout:(7/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 6.3 MB/s | 3.0 MB 00:00 2024-09-13T12:44:38.425 INFO:teuthology.orchestra.run.smithi070.stdout:(8/12): python3-devel-3.9.19-8.el9.x86_64.rpm 1.1 MB/s | 245 kB 00:00 2024-09-13T12:44:38.509 INFO:teuthology.orchestra.run.smithi070.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.9 MB/s | 250 kB 00:00 2024-09-13T12:44:38.577 INFO:teuthology.orchestra.run.smithi070.stdout:(10/12): openblas-openmp-0.3.26-2.el9.x86_64.rp 10 MB/s | 4.9 MB 00:00 2024-09-13T12:44:38.665 INFO:teuthology.orchestra.run.smithi105.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 32 MB/s | 16 MB 00:00 2024-09-13T12:44:38.666 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:38.666 INFO:teuthology.orchestra.run.smithi105.stdout:Total 23 MB/s | 38 MB 00:01 2024-09-13T12:44:38.726 INFO:teuthology.orchestra.run.smithi070.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 14 MB/s | 5.1 MB 00:00 2024-09-13T12:44:39.024 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:44:39.050 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:44:39.050 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:44:39.176 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.3.0-4697.gd58f7306.el9.noa 12/12 2024-09-13T12:44:39.176 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-grafana-dashboards-2:19.3.0-4697.gd58f7306.el 1/12 2024-09-13T12:44:39.176 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-mgr-dashboard-2:19.3.0-4697.gd58f7306.el9.noa 2/12 2024-09-13T12:44:39.177 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-prometheus-alerts-2:19.3.0-4697.gd58f7306.el9 3/12 2024-09-13T12:44:39.177 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-09-13T12:44:39.177 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-09-13T12:44:39.177 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-09-13T12:44:39.177 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-09-13T12:44:39.177 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-09-13T12:44:39.177 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-09-13T12:44:39.177 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-09-13T12:44:39.177 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-09-13T12:44:39.309 INFO:teuthology.orchestra.run.smithi070.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 20 MB/s | 16 MB 00:00 2024-09-13T12:44:39.310 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:39.310 INFO:teuthology.orchestra.run.smithi070.stdout:Total 22 MB/s | 38 MB 00:01 2024-09-13T12:44:39.482 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:44:39.482 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:44:39.498 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-09-13T12:44:39.498 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:39.498 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:44:39.499 INFO:teuthology.orchestra.run.smithi086.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-09-13T12:44:39.499 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-grafana-dashboards-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:39.499 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-dashboard-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:39.499 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-prometheus-alerts-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:39.499 INFO:teuthology.orchestra.run.smithi086.stdout: grpc-data-1.46.7-10.el9.noarch 2024-09-13T12:44:39.499 INFO:teuthology.orchestra.run.smithi086.stdout: protobuf-3.14.0-13.el9.x86_64 2024-09-13T12:44:39.499 INFO:teuthology.orchestra.run.smithi086.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-09-13T12:44:39.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-09-13T12:44:39.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-09-13T12:44:39.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-09-13T12:44:39.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-09-13T12:44:39.499 INFO:teuthology.orchestra.run.smithi086.stdout: python3-routes-2.5.1-5.el9.noarch 2024-09-13T12:44:39.500 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:39.500 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:44:39.661 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:44:39.687 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:44:39.687 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:44:39.747 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install ceph-mgr-diskprediction-local 2024-09-13T12:44:40.116 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:44:40.117 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:44:40.247 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:44:40.317 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-13T12:44:40.322 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:11 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:44:40.355 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-13T12:44:40.455 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-13T12:44:40.464 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:44:40.465 INFO:teuthology.orchestra.run.smithi086.stdout:======================================================================================= 2024-09-13T12:44:40.465 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repository Size 2024-09-13T12:44:40.465 INFO:teuthology.orchestra.run.smithi086.stdout:======================================================================================= 2024-09-13T12:44:40.465 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:44:40.465 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-diskprediction-local noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 7.4 M 2024-09-13T12:44:40.465 INFO:teuthology.orchestra.run.smithi086.stdout:Installing dependencies: 2024-09-13T12:44:40.466 INFO:teuthology.orchestra.run.smithi086.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-09-13T12:44:40.466 INFO:teuthology.orchestra.run.smithi086.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-09-13T12:44:40.466 INFO:teuthology.orchestra.run.smithi086.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-09-13T12:44:40.466 INFO:teuthology.orchestra.run.smithi086.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-09-13T12:44:40.466 INFO:teuthology.orchestra.run.smithi086.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-09-13T12:44:40.466 INFO:teuthology.orchestra.run.smithi086.stdout: openblas x86_64 0.3.26-2.el9 appstream 38 k 2024-09-13T12:44:40.466 INFO:teuthology.orchestra.run.smithi086.stdout: openblas-openmp x86_64 0.3.26-2.el9 appstream 4.9 M 2024-09-13T12:44:40.466 INFO:teuthology.orchestra.run.smithi086.stdout: python3-devel x86_64 3.9.19-8.el9 appstream 245 k 2024-09-13T12:44:40.466 INFO:teuthology.orchestra.run.smithi086.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-09-13T12:44:40.466 INFO:teuthology.orchestra.run.smithi086.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-09-13T12:44:40.466 INFO:teuthology.orchestra.run.smithi086.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-09-13T12:44:40.466 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:40.466 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:44:40.467 INFO:teuthology.orchestra.run.smithi086.stdout:======================================================================================= 2024-09-13T12:44:40.467 INFO:teuthology.orchestra.run.smithi086.stdout:Install 12 Packages 2024-09-13T12:44:40.467 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:40.467 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 38 M 2024-09-13T12:44:40.467 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 212 M 2024-09-13T12:44:40.467 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:44:40.490 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-13T12:44:40.664 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-13T12:44:40.697 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-13T12:44:40.773 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-13T12:44:40.845 INFO:teuthology.orchestra.run.smithi086.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 1.1 MB/s | 191 kB 00:00 2024-09-13T12:44:40.884 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:44:40.886 INFO:teuthology.orchestra.run.smithi086.stdout:(2/12): libgfortran-11.5.0-2.el9.x86_64.rpm 3.8 MB/s | 801 kB 00:00 2024-09-13T12:44:40.912 INFO:teuthology.orchestra.run.smithi086.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 490 kB/s | 33 kB 00:00 2024-09-13T12:44:40.951 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-13T12:44:40.953 INFO:teuthology.orchestra.run.smithi086.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 437 kB/s | 18 kB 00:00 2024-09-13T12:44:40.990 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-13T12:44:41.029 INFO:teuthology.orchestra.run.smithi086.stdout:(5/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 21 MB/s | 3.0 MB 00:00 2024-09-13T12:44:41.054 INFO:teuthology.orchestra.run.smithi086.stdout:(6/12): openblas-0.3.26-2.el9.x86_64.rpm 384 kB/s | 38 kB 00:00 2024-09-13T12:44:41.096 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-13T12:44:41.142 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-13T12:44:41.171 INFO:teuthology.orchestra.run.smithi086.stdout:(7/12): openblas-openmp-0.3.26-2.el9.x86_64.rpm 35 MB/s | 4.9 MB 00:00 2024-09-13T12:44:41.196 INFO:teuthology.orchestra.run.smithi086.stdout:(8/12): python3-devel-3.9.19-8.el9.x86_64.rpm 1.7 MB/s | 245 kB 00:00 2024-09-13T12:44:41.313 INFO:teuthology.orchestra.run.smithi086.stdout:(9/12): ceph-mgr-diskprediction-local-19.3.0-46 12 MB/s | 7.4 MB 00:00 2024-09-13T12:44:41.317 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-13T12:44:41.338 INFO:teuthology.orchestra.run.smithi086.stdout:(10/12): python3-numpy-f2py-1.20.1-5.el9.x86_64 1.7 MB/s | 250 kB 00:00 2024-09-13T12:44:41.376 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-13T12:44:41.414 INFO:teuthology.orchestra.run.smithi086.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 21 MB/s | 5.1 MB 00:00 2024-09-13T12:44:41.431 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-13T12:44:41.466 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-13T12:44:41.552 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-13T12:44:42.116 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-13T12:44:42.181 INFO:teuthology.orchestra.run.smithi086.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 19 MB/s | 16 MB 00:00 2024-09-13T12:44:42.181 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:42.182 INFO:teuthology.orchestra.run.smithi086.stdout:Total 22 MB/s | 38 MB 00:01 2024-09-13T12:44:42.228 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-13T12:44:42.534 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:44:42.561 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:44:42.561 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:44:42.768 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-13T12:44:42.995 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:44:42.996 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:44:43.445 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-13T12:44:43.748 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:44:43.804 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-13T12:44:43.819 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-09-13T12:44:43.830 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mgr-diskprediction-local-2:19.3.0-4697.gd58f7 12/12 2024-09-13T12:44:43.870 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-09-13T12:44:43.969 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-09-13T12:44:44.014 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-devel-3.9.19-8.el9.x86_64 4/12 2024-09-13T12:44:44.197 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : openblas-0.3.26-2.el9.x86_64 5/12 2024-09-13T12:44:44.229 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : openblas-openmp-0.3.26-2.el9.x86_64 6/12 2024-09-13T12:44:44.312 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-09-13T12:44:44.484 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-13T12:44:44.516 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-mgr-diskprediction-local-2:19.3.0-4697.gd58f7 12/12 2024-09-13T12:44:44.992 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-09-13T12:44:45.109 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-09-13T12:44:46.339 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-09-13T12:44:46.372 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.3.0-4697.gd58f7 12/12 2024-09-13T12:44:46.372 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.3.0-4697.gd58f7 1/12 2024-09-13T12:44:46.373 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-13T12:44:46.373 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-13T12:44:46.373 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-13T12:44:46.373 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-13T12:44:46.373 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-13T12:44:46.373 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-13T12:44:46.373 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-13T12:44:46.373 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-13T12:44:46.373 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-13T12:44:46.373 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-13T12:44:46.767 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-13T12:44:46.767 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:46.767 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:44:46.768 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-diskprediction-local-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:46.768 INFO:teuthology.orchestra.run.smithi105.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-13T12:44:46.768 INFO:teuthology.orchestra.run.smithi105.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-13T12:44:46.768 INFO:teuthology.orchestra.run.smithi105.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-13T12:44:46.768 INFO:teuthology.orchestra.run.smithi105.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-13T12:44:46.768 INFO:teuthology.orchestra.run.smithi105.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-13T12:44:46.768 INFO:teuthology.orchestra.run.smithi105.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-13T12:44:46.768 INFO:teuthology.orchestra.run.smithi105.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-13T12:44:46.768 INFO:teuthology.orchestra.run.smithi105.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-13T12:44:46.768 INFO:teuthology.orchestra.run.smithi105.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-13T12:44:46.768 INFO:teuthology.orchestra.run.smithi105.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-13T12:44:46.768 INFO:teuthology.orchestra.run.smithi105.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-13T12:44:46.769 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:46.769 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:44:47.026 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.3.0-4697.gd58f7 12/12 2024-09-13T12:44:47.026 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.3.0-4697.gd58f7 1/12 2024-09-13T12:44:47.026 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-13T12:44:47.027 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-13T12:44:47.027 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-13T12:44:47.027 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-13T12:44:47.027 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-13T12:44:47.027 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-13T12:44:47.027 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-13T12:44:47.027 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-13T12:44:47.027 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-13T12:44:47.027 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-13T12:44:47.131 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-mgr-rook 2024-09-13T12:44:47.373 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-09-13T12:44:47.402 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-mgr-diskprediction-local-2:19.3.0-4697.gd58f7 12/12 2024-09-13T12:44:47.403 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-13T12:44:47.403 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:47.403 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:44:47.403 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-diskprediction-local-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:47.403 INFO:teuthology.orchestra.run.smithi070.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-13T12:44:47.403 INFO:teuthology.orchestra.run.smithi070.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-13T12:44:47.403 INFO:teuthology.orchestra.run.smithi070.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-13T12:44:47.403 INFO:teuthology.orchestra.run.smithi070.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-13T12:44:47.404 INFO:teuthology.orchestra.run.smithi070.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-13T12:44:47.404 INFO:teuthology.orchestra.run.smithi070.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-13T12:44:47.404 INFO:teuthology.orchestra.run.smithi070.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-13T12:44:47.404 INFO:teuthology.orchestra.run.smithi070.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-13T12:44:47.404 INFO:teuthology.orchestra.run.smithi070.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-13T12:44:47.404 INFO:teuthology.orchestra.run.smithi070.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-13T12:44:47.404 INFO:teuthology.orchestra.run.smithi070.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-13T12:44:47.404 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:47.404 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:44:47.707 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:20 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:47.792 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install ceph-mgr-rook 2024-09-13T12:44:47.841 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:44:47.842 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:47.843 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-09-13T12:44:47.843 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:47.843 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:44:47.843 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-rook noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 49 k 2024-09-13T12:44:47.843 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-09-13T12:44:47.843 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-13T12:44:47.843 INFO:teuthology.orchestra.run.smithi105.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-13T12:44:47.843 INFO:teuthology.orchestra.run.smithi105.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-13T12:44:47.843 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-13T12:44:47.843 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-13T12:44:47.843 INFO:teuthology.orchestra.run.smithi105.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-13T12:44:47.843 INFO:teuthology.orchestra.run.smithi105.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-13T12:44:47.844 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-13T12:44:47.844 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-13T12:44:47.844 INFO:teuthology.orchestra.run.smithi105.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-13T12:44:47.844 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-13T12:44:47.844 INFO:teuthology.orchestra.run.smithi105.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-13T12:44:47.844 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:47.844 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:44:47.844 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:47.844 INFO:teuthology.orchestra.run.smithi105.stdout:Install 13 Packages 2024-09-13T12:44:47.844 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:47.845 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 2.2 M 2024-09-13T12:44:47.845 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 26 M 2024-09-13T12:44:47.845 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:44:48.090 INFO:teuthology.orchestra.run.smithi105.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 173 kB/s | 19 kB 00:00 2024-09-13T12:44:48.115 INFO:teuthology.orchestra.run.smithi105.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 189 kB/s | 26 kB 00:00 2024-09-13T12:44:48.140 INFO:teuthology.orchestra.run.smithi105.stdout:(3/13): ceph-mgr-rook-19.3.0-4697.gd58f7306.el9 306 kB/s | 49 kB 00:00 2024-09-13T12:44:48.240 INFO:teuthology.orchestra.run.smithi105.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.2 MB/s | 159 kB 00:00 2024-09-13T12:44:48.266 INFO:teuthology.orchestra.run.smithi105.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.2 MB/s | 222 kB 00:00 2024-09-13T12:44:48.291 INFO:teuthology.orchestra.run.smithi105.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.0 MB/s | 54 kB 00:00 2024-09-13T12:44:48.341 INFO:teuthology.orchestra.run.smithi105.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.4 MB/s | 279 kB 00:00 2024-09-13T12:44:48.366 INFO:teuthology.orchestra.run.smithi105.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 320 kB/s | 32 kB 00:00 2024-09-13T12:44:48.369 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:21 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:48.409 INFO:teuthology.orchestra.run.smithi105.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 128 kB/s | 14 kB 00:00 2024-09-13T12:44:48.434 INFO:teuthology.orchestra.run.smithi105.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 2.5 MB/s | 59 kB 00:00 2024-09-13T12:44:48.460 INFO:teuthology.orchestra.run.smithi105.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 3.5 MB/s | 90 kB 00:00 2024-09-13T12:44:48.484 INFO:teuthology.orchestra.run.smithi105.stdout:(12/13): python3-google-auth-2.34.0-1.el9.noarc 1.5 MB/s | 220 kB 00:00 2024-09-13T12:44:48.504 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:44:48.505 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:48.505 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repository Size 2024-09-13T12:44:48.505 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:48.505 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:44:48.505 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-rook noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 49 k 2024-09-13T12:44:48.505 INFO:teuthology.orchestra.run.smithi070.stdout:Installing dependencies: 2024-09-13T12:44:48.506 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-13T12:44:48.506 INFO:teuthology.orchestra.run.smithi070.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-13T12:44:48.506 INFO:teuthology.orchestra.run.smithi070.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-13T12:44:48.506 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-13T12:44:48.506 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-13T12:44:48.506 INFO:teuthology.orchestra.run.smithi070.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-13T12:44:48.506 INFO:teuthology.orchestra.run.smithi070.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-13T12:44:48.506 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-13T12:44:48.506 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-13T12:44:48.506 INFO:teuthology.orchestra.run.smithi070.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-13T12:44:48.506 INFO:teuthology.orchestra.run.smithi070.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-13T12:44:48.506 INFO:teuthology.orchestra.run.smithi070.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-13T12:44:48.506 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:48.507 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:44:48.507 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:48.507 INFO:teuthology.orchestra.run.smithi070.stdout:Install 13 Packages 2024-09-13T12:44:48.507 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:48.507 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 2.2 M 2024-09-13T12:44:48.507 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 26 M 2024-09-13T12:44:48.507 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:44:48.518 INFO:teuthology.orchestra.run.smithi105.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 7.1 MB/s | 1.0 MB 00:00 2024-09-13T12:44:48.521 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:48.521 INFO:teuthology.orchestra.run.smithi105.stdout:Total 3.3 MB/s | 2.2 MB 00:00 2024-09-13T12:44:48.585 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:44:48.600 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:44:48.601 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:44:48.690 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:44:48.692 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:44:48.718 INFO:teuthology.orchestra.run.smithi070.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 252 kB/s | 19 kB 00:00 2024-09-13T12:44:48.735 INFO:teuthology.orchestra.run.smithi070.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 276 kB/s | 26 kB 00:00 2024-09-13T12:44:48.801 INFO:teuthology.orchestra.run.smithi070.stdout:(3/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 2.3 MB/s | 159 kB 00:00 2024-09-13T12:44:48.827 INFO:teuthology.orchestra.run.smithi070.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.0 MB/s | 222 kB 00:00 2024-09-13T12:44:48.844 INFO:teuthology.orchestra.run.smithi070.stdout:(5/13): ceph-mgr-rook-19.3.0-4697.gd58f7306.el9 244 kB/s | 49 kB 00:00 2024-09-13T12:44:48.861 INFO:teuthology.orchestra.run.smithi070.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.6 MB/s | 54 kB 00:00 2024-09-13T12:44:48.886 INFO:teuthology.orchestra.run.smithi070.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 3.2 MB/s | 279 kB 00:00 2024-09-13T12:44:48.928 INFO:teuthology.orchestra.run.smithi070.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 384 kB/s | 32 kB 00:00 2024-09-13T12:44:48.945 INFO:teuthology.orchestra.run.smithi070.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 168 kB/s | 14 kB 00:00 2024-09-13T12:44:48.962 INFO:teuthology.orchestra.run.smithi070.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 3.6 MB/s | 59 kB 00:00 2024-09-13T12:44:48.987 INFO:teuthology.orchestra.run.smithi070.stdout:(11/13): python3-google-auth-2.34.0-1.el9.noarc 2.5 MB/s | 220 kB 00:00 2024-09-13T12:44:49.012 INFO:teuthology.orchestra.run.smithi070.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.7 MB/s | 90 kB 00:00 2024-09-13T12:44:49.046 INFO:teuthology.orchestra.run.smithi070.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 8.8 MB/s | 1.0 MB 00:00 2024-09-13T12:44:49.049 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:49.049 INFO:teuthology.orchestra.run.smithi070.stdout:Total 4.1 MB/s | 2.2 MB 00:00 2024-09-13T12:44:49.110 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:44:49.125 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:44:49.126 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:44:49.193 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:44:49.215 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:44:49.215 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:44:49.350 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-13T12:44:49.402 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-13T12:44:49.466 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-13T12:44:49.503 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-13T12:44:49.544 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-13T12:44:49.647 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-13T12:44:49.720 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:44:49.756 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-13T12:44:49.804 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-13T12:44:49.891 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-13T12:44:49.947 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-13T12:44:49.998 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.3.0-4697.gd58f7 12/12 2024-09-13T12:44:49.998 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.3.0-4697.gd58f7 1/12 2024-09-13T12:44:49.998 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-09-13T12:44:49.998 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-09-13T12:44:49.998 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-09-13T12:44:49.998 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-09-13T12:44:49.998 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-09-13T12:44:49.998 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : openblas-0.3.26-2.el9.x86_64 7/12 2024-09-13T12:44:49.998 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : openblas-openmp-0.3.26-2.el9.x86_64 8/12 2024-09-13T12:44:49.998 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-devel-3.9.19-8.el9.x86_64 9/12 2024-09-13T12:44:49.998 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-09-13T12:44:49.999 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-09-13T12:44:50.003 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-13T12:44:50.040 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-13T12:44:50.081 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-13T12:44:50.183 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-13T12:44:50.284 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-13T12:44:50.341 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-13T12:44:50.442 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-09-13T12:44:50.442 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:50.442 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:44:50.442 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-diskprediction-local-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:50.442 INFO:teuthology.orchestra.run.smithi086.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-09-13T12:44:50.442 INFO:teuthology.orchestra.run.smithi086.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-09-13T12:44:50.442 INFO:teuthology.orchestra.run.smithi086.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-09-13T12:44:50.442 INFO:teuthology.orchestra.run.smithi086.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-09-13T12:44:50.442 INFO:teuthology.orchestra.run.smithi086.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-09-13T12:44:50.442 INFO:teuthology.orchestra.run.smithi086.stdout: openblas-0.3.26-2.el9.x86_64 2024-09-13T12:44:50.443 INFO:teuthology.orchestra.run.smithi086.stdout: openblas-openmp-0.3.26-2.el9.x86_64 2024-09-13T12:44:50.443 INFO:teuthology.orchestra.run.smithi086.stdout: python3-devel-3.9.19-8.el9.x86_64 2024-09-13T12:44:50.443 INFO:teuthology.orchestra.run.smithi086.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-09-13T12:44:50.443 INFO:teuthology.orchestra.run.smithi086.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-09-13T12:44:50.443 INFO:teuthology.orchestra.run.smithi086.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-09-13T12:44:50.443 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:50.443 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:44:50.511 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-13T12:44:50.561 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-13T12:44:50.594 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-13T12:44:50.642 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-13T12:44:50.664 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mgr-rook-2:19.3.0-4697.gd58f7306.el9.noarch 13/13 2024-09-13T12:44:50.879 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install ceph-mgr-rook 2024-09-13T12:44:51.046 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-13T12:44:51.114 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-13T12:44:51.148 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-13T12:44:51.201 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-13T12:44:51.226 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-mgr-rook-2:19.3.0-4697.gd58f7306.el9.noarch 13/13 2024-09-13T12:44:51.419 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mgr-rook-2:19.3.0-4697.gd58f7306.el9.noarch 13/13 2024-09-13T12:44:51.419 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mgr-rook-2:19.3.0-4697.gd58f7306.el9.noarch 1/13 2024-09-13T12:44:51.420 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-13T12:44:51.420 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-13T12:44:51.420 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-13T12:44:51.420 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-13T12:44:51.420 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-13T12:44:51.420 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-13T12:44:51.420 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-13T12:44:51.420 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-13T12:44:51.420 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-13T12:44:51.420 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-13T12:44:51.420 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-13T12:44:51.465 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:22 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:44:51.603 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:44:51.604 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:51.604 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repository Size 2024-09-13T12:44:51.604 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:51.604 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:44:51.604 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-rook noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 49 k 2024-09-13T12:44:51.605 INFO:teuthology.orchestra.run.smithi086.stdout:Installing dependencies: 2024-09-13T12:44:51.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-09-13T12:44:51.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-09-13T12:44:51.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-google-auth noarch 1:2.34.0-1.el9 epel 220 k 2024-09-13T12:44:51.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-09-13T12:44:51.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-09-13T12:44:51.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-09-13T12:44:51.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-09-13T12:44:51.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-09-13T12:44:51.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-09-13T12:44:51.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-09-13T12:44:51.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-09-13T12:44:51.605 INFO:teuthology.orchestra.run.smithi086.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-09-13T12:44:51.606 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:51.606 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:44:51.606 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:51.606 INFO:teuthology.orchestra.run.smithi086.stdout:Install 13 Packages 2024-09-13T12:44:51.606 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:51.606 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 2.2 M 2024-09-13T12:44:51.607 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 26 M 2024-09-13T12:44:51.607 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:44:51.753 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-13T12:44:51.753 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:51.753 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:44:51.753 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-rook-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:51.753 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-13T12:44:51.753 INFO:teuthology.orchestra.run.smithi105.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-13T12:44:51.753 INFO:teuthology.orchestra.run.smithi105.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-13T12:44:51.753 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-13T12:44:51.753 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-13T12:44:51.754 INFO:teuthology.orchestra.run.smithi105.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-13T12:44:51.754 INFO:teuthology.orchestra.run.smithi105.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-13T12:44:51.754 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-13T12:44:51.754 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-13T12:44:51.754 INFO:teuthology.orchestra.run.smithi105.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-13T12:44:51.754 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-13T12:44:51.754 INFO:teuthology.orchestra.run.smithi105.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-13T12:44:51.754 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:51.754 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:44:51.894 INFO:teuthology.orchestra.run.smithi086.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 203 kB/s | 19 kB 00:00 2024-09-13T12:44:51.910 INFO:teuthology.orchestra.run.smithi086.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 230 kB/s | 26 kB 00:00 2024-09-13T12:44:51.953 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-mgr-rook-2:19.3.0-4697.gd58f7306.el9.noarch 13/13 2024-09-13T12:44:51.953 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-mgr-rook-2:19.3.0-4697.gd58f7306.el9.noarch 1/13 2024-09-13T12:44:51.954 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-13T12:44:51.954 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-13T12:44:51.954 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-13T12:44:51.954 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-13T12:44:51.954 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-13T12:44:51.954 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-13T12:44:51.954 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-13T12:44:51.954 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-13T12:44:51.954 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-13T12:44:51.954 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-13T12:44:51.954 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-13T12:44:51.955 INFO:teuthology.orchestra.run.smithi086.stdout:(3/13): ceph-mgr-rook-19.3.0-4697.gd58f7306.el9 321 kB/s | 49 kB 00:00 2024-09-13T12:44:51.982 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-mgr-cephadm 2024-09-13T12:44:52.020 INFO:teuthology.orchestra.run.smithi086.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.4 MB/s | 159 kB 00:00 2024-09-13T12:44:52.045 INFO:teuthology.orchestra.run.smithi086.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.4 MB/s | 222 kB 00:00 2024-09-13T12:44:52.062 INFO:teuthology.orchestra.run.smithi086.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.3 MB/s | 54 kB 00:00 2024-09-13T12:44:52.095 INFO:teuthology.orchestra.run.smithi086.stdout:(7/13): python3-cachetools-4.2.4-1.el9.noarch.r 641 kB/s | 32 kB 00:00 2024-09-13T12:44:52.129 INFO:teuthology.orchestra.run.smithi086.stdout:(8/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.5 MB/s | 279 kB 00:00 2024-09-13T12:44:52.154 INFO:teuthology.orchestra.run.smithi086.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 153 kB/s | 14 kB 00:00 2024-09-13T12:44:52.179 INFO:teuthology.orchestra.run.smithi086.stdout:(10/13): python3-google-auth-2.34.0-1.el9.noarc 2.6 MB/s | 220 kB 00:00 2024-09-13T12:44:52.213 INFO:teuthology.orchestra.run.smithi086.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 3.3 MB/s | 90 kB 00:00 2024-09-13T12:44:52.246 INFO:teuthology.orchestra.run.smithi086.stdout:(12/13): python3-rsa-4.9-2.el9.noarch.rpm 643 kB/s | 59 kB 00:00 2024-09-13T12:44:52.286 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-13T12:44:52.286 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:52.287 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:44:52.287 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-rook-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:52.287 INFO:teuthology.orchestra.run.smithi070.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-13T12:44:52.287 INFO:teuthology.orchestra.run.smithi070.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-13T12:44:52.287 INFO:teuthology.orchestra.run.smithi070.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-13T12:44:52.287 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-13T12:44:52.287 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-13T12:44:52.287 INFO:teuthology.orchestra.run.smithi070.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-13T12:44:52.287 INFO:teuthology.orchestra.run.smithi070.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-13T12:44:52.287 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-13T12:44:52.287 INFO:teuthology.orchestra.run.smithi070.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-13T12:44:52.287 INFO:teuthology.orchestra.run.smithi070.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-13T12:44:52.288 INFO:teuthology.orchestra.run.smithi070.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-13T12:44:52.288 INFO:teuthology.orchestra.run.smithi070.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-13T12:44:52.288 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:52.288 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:44:52.305 INFO:teuthology.orchestra.run.smithi086.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 5.8 MB/s | 1.0 MB 00:00 2024-09-13T12:44:52.307 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:52.308 INFO:teuthology.orchestra.run.smithi086.stdout:Total 3.2 MB/s | 2.2 MB 00:00 2024-09-13T12:44:52.371 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:44:52.386 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:44:52.386 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:44:52.476 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:44:52.476 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:44:52.526 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install ceph-mgr-cephadm 2024-09-13T12:44:52.543 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:25 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:52.677 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:44:52.677 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:52.677 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-09-13T12:44:52.678 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:52.678 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:44:52.678 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-cephadm noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 154 k 2024-09-13T12:44:52.678 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-09-13T12:44:52.678 INFO:teuthology.orchestra.run.smithi105.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-13T12:44:52.678 INFO:teuthology.orchestra.run.smithi105.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-13T12:44:52.678 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-13T12:44:52.678 INFO:teuthology.orchestra.run.smithi105.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-13T12:44:52.678 INFO:teuthology.orchestra.run.smithi105.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-13T12:44:52.678 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:52.678 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:44:52.678 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:52.679 INFO:teuthology.orchestra.run.smithi105.stdout:Install 6 Packages 2024-09-13T12:44:52.679 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:52.679 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 7.0 M 2024-09-13T12:44:52.679 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 33 M 2024-09-13T12:44:52.679 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:44:52.928 INFO:teuthology.orchestra.run.smithi105.stdout:(1/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.4 MB/s | 248 kB 00:00 2024-09-13T12:44:52.954 INFO:teuthology.orchestra.run.smithi105.stdout:(2/6): ceph-mgr-cephadm-19.3.0-4697.gd58f7306.e 756 kB/s | 154 kB 00:00 2024-09-13T12:44:52.979 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:44:53.004 INFO:teuthology.orchestra.run.smithi105.stdout:(3/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 7.1 MB/s | 548 kB 00:00 2024-09-13T12:44:53.029 INFO:teuthology.orchestra.run.smithi105.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 846 kB/s | 58 kB 00:00 2024-09-13T12:44:53.054 INFO:teuthology.orchestra.run.smithi105.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.5 MB/s | 74 kB 00:00 2024-09-13T12:44:53.089 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:26 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:53.150 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-09-13T12:44:53.206 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-09-13T12:44:53.223 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:44:53.224 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:53.224 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repository Size 2024-09-13T12:44:53.224 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:53.224 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:44:53.224 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-cephadm noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 154 k 2024-09-13T12:44:53.224 INFO:teuthology.orchestra.run.smithi070.stdout:Installing dependencies: 2024-09-13T12:44:53.225 INFO:teuthology.orchestra.run.smithi070.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-13T12:44:53.225 INFO:teuthology.orchestra.run.smithi070.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-13T12:44:53.225 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-13T12:44:53.225 INFO:teuthology.orchestra.run.smithi070.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-13T12:44:53.225 INFO:teuthology.orchestra.run.smithi070.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-13T12:44:53.225 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:53.225 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:44:53.225 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:53.225 INFO:teuthology.orchestra.run.smithi070.stdout:Install 6 Packages 2024-09-13T12:44:53.225 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:53.226 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 7.0 M 2024-09-13T12:44:53.226 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 33 M 2024-09-13T12:44:53.226 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:44:53.260 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-09-13T12:44:53.298 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-09-13T12:44:53.349 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-09-13T12:44:53.448 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-09-13T12:44:53.550 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-google-auth-1:2.34.0-1.el9.noarch 7/13 2024-09-13T12:44:53.599 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-09-13T12:44:53.806 INFO:teuthology.orchestra.run.smithi070.stdout:(1/6): ceph-mgr-cephadm-19.3.0-4697.gd58f7306.e 707 kB/s | 154 kB 00:00 2024-09-13T12:44:53.832 INFO:teuthology.orchestra.run.smithi070.stdout:(2/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.0 MB/s | 248 kB 00:00 2024-09-13T12:44:53.882 INFO:teuthology.orchestra.run.smithi070.stdout:(3/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 7.1 MB/s | 548 kB 00:00 2024-09-13T12:44:53.907 INFO:teuthology.orchestra.run.smithi070.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 765 kB/s | 58 kB 00:00 2024-09-13T12:44:53.932 INFO:teuthology.orchestra.run.smithi070.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.4 MB/s | 74 kB 00:00 2024-09-13T12:44:53.971 INFO:teuthology.orchestra.run.smithi105.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 4.9 MB/s | 6.0 MB 00:01 2024-09-13T12:44:53.974 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:53.974 INFO:teuthology.orchestra.run.smithi105.stdout:Total 5.4 MB/s | 7.0 MB 00:01 2024-09-13T12:44:54.044 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:44:54.055 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:44:54.055 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:44:54.154 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:44:54.156 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:44:54.313 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-09-13T12:44:54.372 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-09-13T12:44:54.405 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-09-13T12:44:54.453 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-09-13T12:44:54.463 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:44:54.484 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-mgr-rook-2:19.3.0-4697.gd58f7306.el9.noarch 13/13 2024-09-13T12:44:54.644 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-13T12:44:54.706 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-13T12:44:55.016 INFO:teuthology.orchestra.run.smithi070.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 4.2 MB/s | 6.0 MB 00:01 2024-09-13T12:44:55.018 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:55.018 INFO:teuthology.orchestra.run.smithi070.stdout:Total 3.9 MB/s | 7.0 MB 00:01 2024-09-13T12:44:55.088 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:44:55.099 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:44:55.099 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:44:55.199 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:44:55.200 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:44:55.228 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-13T12:44:55.236 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-mgr-rook-2:19.3.0-4697.gd58f7306.el9.noarch 13/13 2024-09-13T12:44:55.236 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-mgr-rook-2:19.3.0-4697.gd58f7306.el9.noarch 1/13 2024-09-13T12:44:55.236 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-09-13T12:44:55.236 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-09-13T12:44:55.236 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-09-13T12:44:55.237 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-09-13T12:44:55.237 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-09-13T12:44:55.237 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-09-13T12:44:55.237 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-09-13T12:44:55.237 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-09-13T12:44:55.237 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-google-auth-1:2.34.0-1.el9.noarch 10/13 2024-09-13T12:44:55.237 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-09-13T12:44:55.237 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-09-13T12:44:55.319 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-13T12:44:55.405 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-13T12:44:55.427 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mgr-cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 6/6 2024-09-13T12:44:55.506 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:44:55.596 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-09-13T12:44:55.597 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:55.597 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:44:55.597 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-rook-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:55.597 INFO:teuthology.orchestra.run.smithi086.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-09-13T12:44:55.597 INFO:teuthology.orchestra.run.smithi086.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-09-13T12:44:55.597 INFO:teuthology.orchestra.run.smithi086.stdout: python3-google-auth-1:2.34.0-1.el9.noarch 2024-09-13T12:44:55.597 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-09-13T12:44:55.597 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-09-13T12:44:55.597 INFO:teuthology.orchestra.run.smithi086.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-09-13T12:44:55.597 INFO:teuthology.orchestra.run.smithi086.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-09-13T12:44:55.597 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-09-13T12:44:55.597 INFO:teuthology.orchestra.run.smithi086.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-09-13T12:44:55.598 INFO:teuthology.orchestra.run.smithi086.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-09-13T12:44:55.598 INFO:teuthology.orchestra.run.smithi086.stdout: python3-rsa-4.9-2.el9.noarch 2024-09-13T12:44:55.598 INFO:teuthology.orchestra.run.smithi086.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-09-13T12:44:55.598 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:55.598 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:44:55.676 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-13T12:44:55.734 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-13T12:44:55.843 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install ceph-mgr-cephadm 2024-09-13T12:44:56.206 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 6/6 2024-09-13T12:44:56.206 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mgr-cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/6 2024-09-13T12:44:56.206 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-13T12:44:56.207 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-13T12:44:56.207 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-13T12:44:56.207 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-13T12:44:56.253 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-13T12:44:56.344 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-13T12:44:56.413 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-13T12:44:56.418 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:27 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:44:56.447 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-mgr-cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 6/6 2024-09-13T12:44:56.460 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-13T12:44:56.460 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:56.460 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:44:56.460 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:56.460 INFO:teuthology.orchestra.run.smithi105.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-13T12:44:56.460 INFO:teuthology.orchestra.run.smithi105.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-13T12:44:56.460 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-13T12:44:56.460 INFO:teuthology.orchestra.run.smithi105.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-13T12:44:56.460 INFO:teuthology.orchestra.run.smithi105.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-13T12:44:56.460 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:56.460 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:44:56.558 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:44:56.558 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:56.558 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repository Size 2024-09-13T12:44:56.558 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:56.559 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:44:56.559 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-cephadm noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 154 k 2024-09-13T12:44:56.559 INFO:teuthology.orchestra.run.smithi086.stdout:Installing dependencies: 2024-09-13T12:44:56.559 INFO:teuthology.orchestra.run.smithi086.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-09-13T12:44:56.559 INFO:teuthology.orchestra.run.smithi086.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-09-13T12:44:56.559 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-09-13T12:44:56.559 INFO:teuthology.orchestra.run.smithi086.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-09-13T12:44:56.559 INFO:teuthology.orchestra.run.smithi086.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-09-13T12:44:56.559 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:56.559 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:44:56.559 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:44:56.560 INFO:teuthology.orchestra.run.smithi086.stdout:Install 6 Packages 2024-09-13T12:44:56.560 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:44:56.561 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 7.0 M 2024-09-13T12:44:56.561 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 33 M 2024-09-13T12:44:56.561 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:44:56.694 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-fuse 2024-09-13T12:44:56.940 INFO:teuthology.orchestra.run.smithi086.stdout:(1/6): ceph-mgr-cephadm-19.3.0-4697.gd58f7306.e 691 kB/s | 154 kB 00:00 2024-09-13T12:44:57.007 INFO:teuthology.orchestra.run.smithi086.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 10 MB/s | 548 kB 00:00 2024-09-13T12:44:57.032 INFO:teuthology.orchestra.run.smithi086.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 2.3 MB/s | 58 kB 00:00 2024-09-13T12:44:57.057 INFO:teuthology.orchestra.run.smithi086.stdout:(4/6): python3-typing-extensions-4.12.2-2.el9.n 3.1 MB/s | 74 kB 00:00 2024-09-13T12:44:57.255 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:30 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:57.280 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 6/6 2024-09-13T12:44:57.280 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-mgr-cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/6 2024-09-13T12:44:57.280 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-13T12:44:57.280 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-13T12:44:57.280 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-13T12:44:57.280 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-13T12:44:57.388 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:44:57.389 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:57.389 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-09-13T12:44:57.389 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:57.389 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:44:57.389 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-fuse x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 900 k 2024-09-13T12:44:57.389 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-09-13T12:44:57.389 INFO:teuthology.orchestra.run.smithi105.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-13T12:44:57.389 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:57.389 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:44:57.390 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:44:57.390 INFO:teuthology.orchestra.run.smithi105.stdout:Install 2 Packages 2024-09-13T12:44:57.390 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:57.392 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 979 k 2024-09-13T12:44:57.392 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 2.9 M 2024-09-13T12:44:57.392 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:44:57.499 INFO:teuthology.orchestra.run.smithi086.stdout:(5/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 317 kB/s | 248 kB 00:00 2024-09-13T12:44:57.552 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-13T12:44:57.552 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:57.552 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:44:57.552 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-mgr-cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:44:57.552 INFO:teuthology.orchestra.run.smithi070.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-13T12:44:57.553 INFO:teuthology.orchestra.run.smithi070.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-13T12:44:57.553 INFO:teuthology.orchestra.run.smithi070.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-13T12:44:57.553 INFO:teuthology.orchestra.run.smithi070.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-13T12:44:57.553 INFO:teuthology.orchestra.run.smithi070.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-13T12:44:57.553 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:57.553 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:44:57.723 INFO:teuthology.orchestra.run.smithi105.stdout:(1/2): ceph-fuse-19.3.0-4697.gd58f7306.el9.x86_ 3.1 MB/s | 900 kB 00:00 2024-09-13T12:44:57.822 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install ceph-fuse 2024-09-13T12:44:57.882 INFO:teuthology.orchestra.run.smithi086.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 5.1 MB/s | 6.0 MB 00:01 2024-09-13T12:44:57.885 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:57.885 INFO:teuthology.orchestra.run.smithi086.stdout:Total 5.3 MB/s | 7.0 MB 00:01 2024-09-13T12:44:57.955 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:44:57.967 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:44:57.967 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:44:58.068 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:44:58.070 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:44:58.073 INFO:teuthology.orchestra.run.smithi105.stdout:(2/2): fuse-2.9.9-16.el9.x86_64.rpm 125 kB/s | 80 kB 00:00 2024-09-13T12:44:58.074 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:58.074 INFO:teuthology.orchestra.run.smithi105.stdout:Total 1.4 MB/s | 979 kB 00:00 2024-09-13T12:44:58.085 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:44:58.107 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:44:58.107 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:44:58.188 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:44:58.188 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:44:58.373 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:44:58.374 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:44:58.383 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:31 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:44:58.509 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-13T12:44:58.516 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:44:58.516 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:58.517 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repository Size 2024-09-13T12:44:58.517 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:58.517 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:44:58.517 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-fuse x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 900 k 2024-09-13T12:44:58.517 INFO:teuthology.orchestra.run.smithi070.stdout:Installing dependencies: 2024-09-13T12:44:58.517 INFO:teuthology.orchestra.run.smithi070.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-13T12:44:58.517 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:58.517 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:44:58.517 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:44:58.517 INFO:teuthology.orchestra.run.smithi070.stdout:Install 2 Packages 2024-09-13T12:44:58.517 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:44:58.518 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 979 k 2024-09-13T12:44:58.518 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 2.9 M 2024-09-13T12:44:58.518 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:44:58.547 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-09-13T12:44:58.588 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 2/2 2024-09-13T12:44:58.601 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-09-13T12:44:58.901 INFO:teuthology.orchestra.run.smithi070.stdout:(1/2): ceph-fuse-19.3.0-4697.gd58f7306.el9.x86_ 3.4 MB/s | 900 kB 00:00 2024-09-13T12:44:59.009 INFO:teuthology.orchestra.run.smithi070.stdout:(2/2): fuse-2.9.9-16.el9.x86_64.rpm 218 kB/s | 80 kB 00:00 2024-09-13T12:44:59.010 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:44:59.010 INFO:teuthology.orchestra.run.smithi070.stdout:Total 1.9 MB/s | 979 kB 00:00 2024-09-13T12:44:59.022 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:44:59.043 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:44:59.043 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:44:59.123 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-09-13T12:44:59.124 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:44:59.124 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:44:59.212 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-09-13T12:44:59.279 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-09-13T12:44:59.308 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:44:59.309 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 2/2 2024-09-13T12:44:59.310 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 1/2 2024-09-13T12:44:59.313 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-mgr-cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 6/6 2024-09-13T12:44:59.445 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-13T12:44:59.517 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 2/2 2024-09-13T12:44:59.562 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-13T12:44:59.563 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:59.563 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:44:59.563 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-13T12:44:59.563 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:44:59.563 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:44:59.787 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-volume 2024-09-13T12:45:00.122 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 6/6 2024-09-13T12:45:00.122 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-mgr-cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 1/6 2024-09-13T12:45:00.122 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-09-13T12:45:00.122 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-09-13T12:45:00.122 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-09-13T12:45:00.122 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-09-13T12:45:00.281 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 2/2 2024-09-13T12:45:00.281 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 1/2 2024-09-13T12:45:00.368 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:33 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:00.438 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-09-13T12:45:00.438 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:00.438 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:45:00.438 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-mgr-cephadm-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:45:00.439 INFO:teuthology.orchestra.run.smithi086.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-09-13T12:45:00.439 INFO:teuthology.orchestra.run.smithi086.stdout: python3-babel-2.9.1-2.el9.noarch 2024-09-13T12:45:00.439 INFO:teuthology.orchestra.run.smithi086.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-09-13T12:45:00.439 INFO:teuthology.orchestra.run.smithi086.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-09-13T12:45:00.439 INFO:teuthology.orchestra.run.smithi086.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-09-13T12:45:00.439 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:00.439 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:00.508 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:45:00.509 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:00.509 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-09-13T12:45:00.509 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:00.509 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:45:00.509 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-volume noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 285 k 2024-09-13T12:45:00.509 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:00.509 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:45:00.509 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:00.509 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-09-13T12:45:00.509 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:00.510 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 285 k 2024-09-13T12:45:00.510 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 1.3 M 2024-09-13T12:45:00.510 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:45:00.576 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-13T12:45:00.576 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:00.576 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:45:00.576 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-13T12:45:00.577 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:00.577 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:00.714 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install ceph-fuse 2024-09-13T12:45:00.753 INFO:teuthology.orchestra.run.smithi105.stdout:ceph-volume-19.3.0-4697.gd58f7306.el9.noarch.rp 1.1 MB/s | 285 kB 00:00 2024-09-13T12:45:00.754 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:00.754 INFO:teuthology.orchestra.run.smithi105.stdout:Total 1.1 MB/s | 285 kB 00:00 2024-09-13T12:45:00.755 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:45:00.763 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:45:00.763 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:45:00.806 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:45:00.807 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:45:00.903 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install ceph-volume 2024-09-13T12:45:01.023 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:45:01.089 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-volume-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:45:01.105 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-volume-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:45:01.105 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:45:01.105 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-13T12:45:01.105 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:01.271 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:32 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:01.403 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:01.404 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:01.404 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repository Size 2024-09-13T12:45:01.404 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:01.404 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:45:01.404 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-fuse x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 900 k 2024-09-13T12:45:01.404 INFO:teuthology.orchestra.run.smithi086.stdout:Installing dependencies: 2024-09-13T12:45:01.405 INFO:teuthology.orchestra.run.smithi086.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-09-13T12:45:01.405 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:01.405 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:45:01.405 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:01.405 INFO:teuthology.orchestra.run.smithi086.stdout:Install 2 Packages 2024-09-13T12:45:01.405 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:01.405 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 979 k 2024-09-13T12:45:01.405 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 2.9 M 2024-09-13T12:45:01.405 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:45:01.487 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:34 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:01.622 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:45:01.623 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:01.623 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repository Size 2024-09-13T12:45:01.623 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:01.623 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:45:01.624 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-volume noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 285 k 2024-09-13T12:45:01.624 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:01.624 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:45:01.624 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:01.624 INFO:teuthology.orchestra.run.smithi070.stdout:Install 1 Package 2024-09-13T12:45:01.624 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:01.624 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 285 k 2024-09-13T12:45:01.624 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 1.3 M 2024-09-13T12:45:01.624 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:45:01.709 INFO:teuthology.orchestra.run.smithi086.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 405 kB/s | 80 kB 00:00 2024-09-13T12:45:01.784 INFO:teuthology.orchestra.run.smithi086.stdout:(2/2): ceph-fuse-19.3.0-4697.gd58f7306.el9.x86_ 3.2 MB/s | 900 kB 00:00 2024-09-13T12:45:01.785 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:01.785 INFO:teuthology.orchestra.run.smithi086.stdout:Total 2.5 MB/s | 979 kB 00:00 2024-09-13T12:45:01.797 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:45:01.818 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:45:01.818 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:45:01.856 INFO:teuthology.orchestra.run.smithi070.stdout:ceph-volume-19.3.0-4697.gd58f7306.el9.noarch.rp 1.2 MB/s | 285 kB 00:00 2024-09-13T12:45:01.857 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:01.857 INFO:teuthology.orchestra.run.smithi070.stdout:Total 1.2 MB/s | 285 kB 00:00 2024-09-13T12:45:01.857 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:45:01.865 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:45:01.865 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:45:01.897 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:45:01.897 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:45:01.899 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:45:01.899 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:45:02.091 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:45:02.112 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-volume-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:45:02.112 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:02.113 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:45:02.113 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-volume-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:45:02.113 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:02.113 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:45:02.115 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:45:02.183 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : ceph-volume-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:45:02.199 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: ceph-volume-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:45:02.200 INFO:teuthology.orchestra.run.smithi070.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:45:02.200 INFO:teuthology.orchestra.run.smithi070.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-13T12:45:02.200 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:02.227 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-09-13T12:45:02.299 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 2/2 2024-09-13T12:45:02.403 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install librados-devel 2024-09-13T12:45:02.981 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:35 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:02.987 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 2/2 2024-09-13T12:45:02.987 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 1/2 2024-09-13T12:45:03.119 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:45:03.120 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:03.120 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repo Size 2024-09-13T12:45:03.120 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:03.120 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:45:03.120 INFO:teuthology.orchestra.run.smithi105.stdout: librados-devel x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 127 k 2024-09-13T12:45:03.120 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:03.120 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:45:03.120 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:03.121 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-09-13T12:45:03.121 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:03.121 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 127 k 2024-09-13T12:45:03.121 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 456 k 2024-09-13T12:45:03.121 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:45:03.263 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : ceph-volume-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:45:03.263 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:03.263 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:45:03.263 INFO:teuthology.orchestra.run.smithi070.stdout: ceph-volume-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:45:03.263 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:03.263 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:03.288 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-09-13T12:45:03.288 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:03.288 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:45:03.288 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-09-13T12:45:03.288 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:03.288 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:03.317 INFO:teuthology.orchestra.run.smithi105.stdout:librados-devel-19.3.0-4697.gd58f7306.el9.x86_64 646 kB/s | 127 kB 00:00 2024-09-13T12:45:03.318 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:03.318 INFO:teuthology.orchestra.run.smithi105.stdout:Total 641 kB/s | 127 kB 00:00 2024-09-13T12:45:03.318 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:45:03.324 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:45:03.324 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:45:03.388 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:45:03.388 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:45:03.540 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install librados-devel 2024-09-13T12:45:03.541 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:45:03.591 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install ceph-volume 2024-09-13T12:45:03.657 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : librados-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:04.122 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:37 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:04.129 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: librados-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:04.163 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:35 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:04.260 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:45:04.261 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:04.261 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repo Size 2024-09-13T12:45:04.261 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:04.261 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:45:04.261 INFO:teuthology.orchestra.run.smithi070.stdout: librados-devel x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 127 k 2024-09-13T12:45:04.261 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:04.261 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:45:04.261 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:04.261 INFO:teuthology.orchestra.run.smithi070.stdout:Install 1 Package 2024-09-13T12:45:04.261 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:04.262 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 127 k 2024-09-13T12:45:04.262 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 456 k 2024-09-13T12:45:04.262 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:45:04.302 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:04.302 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:04.302 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repository Size 2024-09-13T12:45:04.302 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:04.302 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:45:04.302 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-volume noarch 2:19.3.0-4697.gd58f7306.el9 ceph-noarch 285 k 2024-09-13T12:45:04.303 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:04.303 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:45:04.303 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:04.303 INFO:teuthology.orchestra.run.smithi086.stdout:Install 1 Package 2024-09-13T12:45:04.303 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:04.303 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 285 k 2024-09-13T12:45:04.303 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 1.3 M 2024-09-13T12:45:04.304 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:45:04.392 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librados-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:04.392 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:04.392 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:45:04.393 INFO:teuthology.orchestra.run.smithi105.stdout: librados-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:04.393 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:04.393 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:45:04.452 INFO:teuthology.orchestra.run.smithi070.stdout:librados-devel-19.3.0-4697.gd58f7306.el9.x86_64 667 kB/s | 127 kB 00:00 2024-09-13T12:45:04.453 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:04.453 INFO:teuthology.orchestra.run.smithi070.stdout:Total 661 kB/s | 127 kB 00:00 2024-09-13T12:45:04.453 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:45:04.458 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:45:04.458 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:45:04.523 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:45:04.523 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:45:04.589 INFO:teuthology.orchestra.run.smithi086.stdout:ceph-volume-19.3.0-4697.gd58f7306.el9.noarch.rp 1.0 MB/s | 285 kB 00:00 2024-09-13T12:45:04.589 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:04.590 INFO:teuthology.orchestra.run.smithi086.stdout:Total 995 kB/s | 285 kB 00:00 2024-09-13T12:45:04.590 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:45:04.598 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:45:04.598 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:45:04.629 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:45:04.629 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:45:04.642 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install libcephfs2 2024-09-13T12:45:04.675 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:45:04.766 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : librados-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:04.849 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:45:04.916 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : ceph-volume-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:45:04.932 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: ceph-volume-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:45:04.932 INFO:teuthology.orchestra.run.smithi086.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:45:04.932 INFO:teuthology.orchestra.run.smithi086.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-09-13T12:45:04.932 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:05.204 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: librados-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:05.222 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:38 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:05.315 INFO:teuthology.orchestra.run.smithi105.stdout:Package libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:05.360 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:45:05.361 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-09-13T12:45:05.361 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:45:05.416 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install libcephfs-devel 2024-09-13T12:45:05.467 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : librados-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:05.467 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:05.467 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:45:05.467 INFO:teuthology.orchestra.run.smithi070.stdout: librados-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:05.468 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:05.468 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:05.757 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install libcephfs2 2024-09-13T12:45:05.982 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:38 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:05.987 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : ceph-volume-2:19.3.0-4697.gd58f7306.el9.noarch 1/1 2024-09-13T12:45:05.987 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:05.987 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:45:05.987 INFO:teuthology.orchestra.run.smithi086.stdout: ceph-volume-2:19.3.0-4697.gd58f7306.el9.noarch 2024-09-13T12:45:05.988 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:05.988 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:06.118 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:45:06.119 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:06.119 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repo Size 2024-09-13T12:45:06.119 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:06.119 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:45:06.119 INFO:teuthology.orchestra.run.smithi105.stdout: libcephfs-devel x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 32 k 2024-09-13T12:45:06.119 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:06.119 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:45:06.119 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:06.119 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-09-13T12:45:06.119 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:06.119 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 32 k 2024-09-13T12:45:06.120 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 142 k 2024-09-13T12:45:06.120 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:45:06.254 INFO:teuthology.orchestra.run.smithi105.stdout:libcephfs-devel-19.3.0-4697.gd58f7306.el9.x86_6 235 kB/s | 32 kB 00:00 2024-09-13T12:45:06.255 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:06.255 INFO:teuthology.orchestra.run.smithi105.stdout:Total 233 kB/s | 32 kB 00:00 2024-09-13T12:45:06.255 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:45:06.258 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:45:06.258 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:45:06.278 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:45:06.278 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:45:06.290 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install librados-devel 2024-09-13T12:45:06.333 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:39 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:06.371 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:45:06.425 INFO:teuthology.orchestra.run.smithi070.stdout:Package libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:06.470 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:45:06.471 INFO:teuthology.orchestra.run.smithi070.stdout:Nothing to do. 2024-09-13T12:45:06.472 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:06.485 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libcephfs-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:06.541 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install libcephfs-devel 2024-09-13T12:45:06.873 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: libcephfs-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:06.875 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:37 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:07.014 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:07.014 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:07.015 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repo Size 2024-09-13T12:45:07.015 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:07.015 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:45:07.015 INFO:teuthology.orchestra.run.smithi086.stdout: librados-devel x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 127 k 2024-09-13T12:45:07.015 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:07.015 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:45:07.015 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:07.015 INFO:teuthology.orchestra.run.smithi086.stdout:Install 1 Package 2024-09-13T12:45:07.015 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:07.015 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 127 k 2024-09-13T12:45:07.016 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 456 k 2024-09-13T12:45:07.016 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:45:07.090 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libcephfs-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:07.090 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:07.090 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:45:07.090 INFO:teuthology.orchestra.run.smithi105.stdout: libcephfs-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:07.091 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:07.091 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:45:07.104 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:40 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:07.236 INFO:teuthology.orchestra.run.smithi086.stdout:librados-devel-19.3.0-4697.gd58f7306.el9.x86_64 575 kB/s | 127 kB 00:00 2024-09-13T12:45:07.236 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:07.237 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:45:07.237 INFO:teuthology.orchestra.run.smithi086.stdout:Total 572 kB/s | 127 kB 00:00 2024-09-13T12:45:07.237 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:45:07.238 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:07.238 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repo Size 2024-09-13T12:45:07.238 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:07.238 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:45:07.238 INFO:teuthology.orchestra.run.smithi070.stdout: libcephfs-devel x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 32 k 2024-09-13T12:45:07.238 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:07.238 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:45:07.238 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:07.238 INFO:teuthology.orchestra.run.smithi070.stdout:Install 1 Package 2024-09-13T12:45:07.238 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:07.238 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 32 k 2024-09-13T12:45:07.239 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 142 k 2024-09-13T12:45:07.239 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:45:07.242 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:45:07.242 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:45:07.267 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install librados2 2024-09-13T12:45:07.305 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:45:07.306 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:45:07.390 INFO:teuthology.orchestra.run.smithi070.stdout:libcephfs-devel-19.3.0-4697.gd58f7306.el9.x86_6 209 kB/s | 32 kB 00:00 2024-09-13T12:45:07.390 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:07.391 INFO:teuthology.orchestra.run.smithi070.stdout:Total 208 kB/s | 32 kB 00:00 2024-09-13T12:45:07.391 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:45:07.394 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:45:07.394 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:45:07.412 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:45:07.413 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:45:07.459 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:45:07.504 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:45:07.566 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : librados-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:07.611 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : libcephfs-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:07.830 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:40 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:07.918 INFO:teuthology.orchestra.run.smithi105.stdout:Package librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:07.962 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:45:07.963 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-09-13T12:45:07.963 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:45:07.975 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: libcephfs-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:08.017 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install librbd1 2024-09-13T12:45:08.023 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: librados-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:08.205 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : libcephfs-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:08.205 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:08.205 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:45:08.205 INFO:teuthology.orchestra.run.smithi070.stdout: libcephfs-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:08.205 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:08.205 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:08.352 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : librados-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:08.353 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:08.353 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:45:08.353 INFO:teuthology.orchestra.run.smithi086.stdout: librados-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:08.353 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:08.353 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:08.402 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install librados2 2024-09-13T12:45:08.579 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:41 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:08.610 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install libcephfs2 2024-09-13T12:45:08.668 INFO:teuthology.orchestra.run.smithi105.stdout:Package librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:08.711 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:45:08.712 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-09-13T12:45:08.712 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:45:08.771 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install python3-rados 2024-09-13T12:45:08.961 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:41 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:09.051 INFO:teuthology.orchestra.run.smithi070.stdout:Package librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:09.093 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:45:09.095 INFO:teuthology.orchestra.run.smithi070.stdout:Nothing to do. 2024-09-13T12:45:09.095 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:09.173 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install librbd1 2024-09-13T12:45:09.184 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:40 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:09.276 INFO:teuthology.orchestra.run.smithi086.stdout:Package libcephfs2-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:09.320 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:09.321 INFO:teuthology.orchestra.run.smithi086.stdout:Nothing to do. 2024-09-13T12:45:09.321 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:09.331 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:42 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:09.403 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install libcephfs-devel 2024-09-13T12:45:09.421 INFO:teuthology.orchestra.run.smithi105.stdout:Package python3-rados-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:09.464 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:45:09.465 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-09-13T12:45:09.465 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:45:09.524 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install python3-rgw 2024-09-13T12:45:09.735 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:42 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:09.825 INFO:teuthology.orchestra.run.smithi070.stdout:Package librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:09.869 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:45:09.870 INFO:teuthology.orchestra.run.smithi070.stdout:Nothing to do. 2024-09-13T12:45:09.870 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:09.948 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install python3-rados 2024-09-13T12:45:09.969 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:40 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:10.086 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:43 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:10.104 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:10.105 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:10.105 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repo Size 2024-09-13T12:45:10.105 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:10.105 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:45:10.105 INFO:teuthology.orchestra.run.smithi086.stdout: libcephfs-devel x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 32 k 2024-09-13T12:45:10.105 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:10.105 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:45:10.105 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:10.106 INFO:teuthology.orchestra.run.smithi086.stdout:Install 1 Package 2024-09-13T12:45:10.106 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:10.106 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 32 k 2024-09-13T12:45:10.106 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 142 k 2024-09-13T12:45:10.106 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:45:10.176 INFO:teuthology.orchestra.run.smithi105.stdout:Package python3-rgw-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:10.219 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:45:10.220 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-09-13T12:45:10.220 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:45:10.255 INFO:teuthology.orchestra.run.smithi086.stdout:libcephfs-devel-19.3.0-4697.gd58f7306.el9.x86_6 213 kB/s | 32 kB 00:00 2024-09-13T12:45:10.256 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:10.256 INFO:teuthology.orchestra.run.smithi086.stdout:Total 210 kB/s | 32 kB 00:00 2024-09-13T12:45:10.256 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:45:10.259 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:45:10.259 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:45:10.270 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install python3-cephfs 2024-09-13T12:45:10.274 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:45:10.275 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:45:10.362 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:45:10.468 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : libcephfs-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:10.513 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:43 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:10.602 INFO:teuthology.orchestra.run.smithi070.stdout:Package python3-rados-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:10.645 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:45:10.646 INFO:teuthology.orchestra.run.smithi070.stdout:Nothing to do. 2024-09-13T12:45:10.646 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:10.722 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install python3-rgw 2024-09-13T12:45:10.835 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:43 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:10.862 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: libcephfs-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:10.926 INFO:teuthology.orchestra.run.smithi105.stdout:Package python3-cephfs-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:10.969 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:45:10.970 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-09-13T12:45:10.970 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:45:11.029 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install python3-rbd 2024-09-13T12:45:11.102 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : libcephfs-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:11.102 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:11.103 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:45:11.103 INFO:teuthology.orchestra.run.smithi086.stdout: libcephfs-devel-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:11.103 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:11.103 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:11.283 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:44 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:11.305 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install librados2 2024-09-13T12:45:11.372 INFO:teuthology.orchestra.run.smithi070.stdout:Package python3-rgw-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:11.454 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:45:11.454 INFO:teuthology.orchestra.run.smithi070.stdout:Nothing to do. 2024-09-13T12:45:11.454 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:11.492 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install python3-cephfs 2024-09-13T12:45:11.586 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:44 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:11.677 INFO:teuthology.orchestra.run.smithi105.stdout:Package python3-rbd-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:11.719 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:45:11.720 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-09-13T12:45:11.721 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:45:11.774 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install rbd-fuse 2024-09-13T12:45:11.885 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:42 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:11.981 INFO:teuthology.orchestra.run.smithi086.stdout:Package librados2-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:12.026 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:12.027 INFO:teuthology.orchestra.run.smithi086.stdout:Nothing to do. 2024-09-13T12:45:12.027 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:12.067 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:45 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:12.107 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install librbd1 2024-09-13T12:45:12.157 INFO:teuthology.orchestra.run.smithi070.stdout:Package python3-cephfs-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:12.201 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:45:12.202 INFO:teuthology.orchestra.run.smithi070.stdout:Nothing to do. 2024-09-13T12:45:12.202 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:12.276 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install python3-rbd 2024-09-13T12:45:12.335 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:45 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:12.470 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:45:12.471 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:12.471 INFO:teuthology.orchestra.run.smithi105.stdout: Package Architecture Version Repository Size 2024-09-13T12:45:12.471 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:12.471 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:45:12.471 INFO:teuthology.orchestra.run.smithi105.stdout: rbd-fuse x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 85 k 2024-09-13T12:45:12.471 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:12.471 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:45:12.471 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:12.471 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-09-13T12:45:12.471 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:12.471 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 85 k 2024-09-13T12:45:12.471 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 231 k 2024-09-13T12:45:12.472 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:45:12.674 INFO:teuthology.orchestra.run.smithi105.stdout:rbd-fuse-19.3.0-4697.gd58f7306.el9.x86_64.rpm 421 kB/s | 85 kB 00:00 2024-09-13T12:45:12.674 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:12.675 INFO:teuthology.orchestra.run.smithi105.stdout:Total 418 kB/s | 85 kB 00:00 2024-09-13T12:45:12.675 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:45:12.682 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:45:12.682 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:45:12.695 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:43 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:12.745 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:45:12.746 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:45:12.787 INFO:teuthology.orchestra.run.smithi086.stdout:Package librbd1-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:12.831 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:12.832 INFO:teuthology.orchestra.run.smithi086.stdout:Nothing to do. 2024-09-13T12:45:12.832 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:12.833 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:45 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:12.892 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:45:12.903 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install python3-rados 2024-09-13T12:45:12.925 INFO:teuthology.orchestra.run.smithi070.stdout:Package python3-rbd-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:12.968 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:45:12.969 INFO:teuthology.orchestra.run.smithi070.stdout:Nothing to do. 2024-09-13T12:45:12.969 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:12.997 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : rbd-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:13.042 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install rbd-fuse 2024-09-13T12:45:13.365 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: rbd-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:13.461 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:44 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:13.551 INFO:teuthology.orchestra.run.smithi086.stdout:Package python3-rados-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:13.594 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:13.595 INFO:teuthology.orchestra.run.smithi086.stdout:Nothing to do. 2024-09-13T12:45:13.595 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:13.612 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:46 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:13.616 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : rbd-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:13.616 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:13.616 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:45:13.616 INFO:teuthology.orchestra.run.smithi105.stdout: rbd-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:13.617 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:13.617 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:45:13.661 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install python3-rgw 2024-09-13T12:45:13.745 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:45:13.745 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:13.746 INFO:teuthology.orchestra.run.smithi070.stdout: Package Architecture Version Repository Size 2024-09-13T12:45:13.746 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:13.746 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:45:13.746 INFO:teuthology.orchestra.run.smithi070.stdout: rbd-fuse x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 85 k 2024-09-13T12:45:13.746 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:13.746 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:45:13.746 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:13.746 INFO:teuthology.orchestra.run.smithi070.stdout:Install 1 Package 2024-09-13T12:45:13.746 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:13.747 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 85 k 2024-09-13T12:45:13.747 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 231 k 2024-09-13T12:45:13.747 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:45:13.877 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install rbd-mirror 2024-09-13T12:45:13.925 INFO:teuthology.orchestra.run.smithi070.stdout:rbd-fuse-19.3.0-4697.gd58f7306.el9.x86_64.rpm 478 kB/s | 85 kB 00:00 2024-09-13T12:45:13.926 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:13.926 INFO:teuthology.orchestra.run.smithi070.stdout:Total 474 kB/s | 85 kB 00:00 2024-09-13T12:45:13.926 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:45:13.933 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:45:13.933 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:45:13.998 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:45:13.998 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:45:14.142 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:45:14.228 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:45 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:14.240 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : rbd-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:14.318 INFO:teuthology.orchestra.run.smithi086.stdout:Package python3-rgw-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:14.361 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:14.362 INFO:teuthology.orchestra.run.smithi086.stdout:Nothing to do. 2024-09-13T12:45:14.362 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:14.433 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install python3-cephfs 2024-09-13T12:45:14.456 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:47 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:14.598 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:45:14.598 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:14.598 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repo Size 2024-09-13T12:45:14.598 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:14.599 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:45:14.599 INFO:teuthology.orchestra.run.smithi105.stdout: rbd-mirror x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 3.2 M 2024-09-13T12:45:14.599 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:14.599 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:45:14.599 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:14.599 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-09-13T12:45:14.599 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:14.600 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 3.2 M 2024-09-13T12:45:14.600 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 14 M 2024-09-13T12:45:14.600 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:45:14.648 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: rbd-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:14.909 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : rbd-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:14.909 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:14.909 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:45:14.910 INFO:teuthology.orchestra.run.smithi070.stdout: rbd-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:14.910 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:14.910 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:14.920 INFO:teuthology.orchestra.run.smithi105.stdout:rbd-mirror-19.3.0-4697.gd58f7306.el9.x86_64.rpm 9.9 MB/s | 3.2 MB 00:00 2024-09-13T12:45:14.920 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:14.921 INFO:teuthology.orchestra.run.smithi105.stdout:Total 9.9 MB/s | 3.2 MB 00:00 2024-09-13T12:45:14.921 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:45:14.930 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:45:14.930 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:45:14.998 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:45 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:15.018 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:45:15.018 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:45:15.089 INFO:teuthology.orchestra.run.smithi086.stdout:Package python3-cephfs-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:15.132 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:15.133 INFO:teuthology.orchestra.run.smithi086.stdout:Nothing to do. 2024-09-13T12:45:15.133 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:15.177 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install rbd-mirror 2024-09-13T12:45:15.214 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install python3-rbd 2024-09-13T12:45:15.470 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:45:15.537 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : rbd-mirror-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:15.563 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: rbd-mirror-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:15.563 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:45:15.563 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-13T12:45:15.563 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-13T12:45:15.563 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-13T12:45:15.563 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:15.776 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:48 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:15.781 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:46 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:15.871 INFO:teuthology.orchestra.run.smithi086.stdout:Package python3-rbd-2:19.3.0-4697.gd58f7306.el9.x86_64 is already installed. 2024-09-13T12:45:15.914 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:15.915 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:45:15.915 INFO:teuthology.orchestra.run.smithi086.stdout:Nothing to do. 2024-09-13T12:45:15.915 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:15.916 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:15.916 INFO:teuthology.orchestra.run.smithi070.stdout: Package Arch Version Repo Size 2024-09-13T12:45:15.916 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:15.916 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:45:15.916 INFO:teuthology.orchestra.run.smithi070.stdout: rbd-mirror x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 3.2 M 2024-09-13T12:45:15.916 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:15.916 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:45:15.916 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:15.916 INFO:teuthology.orchestra.run.smithi070.stdout:Install 1 Package 2024-09-13T12:45:15.917 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:15.917 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 3.2 M 2024-09-13T12:45:15.917 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 14 M 2024-09-13T12:45:15.917 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:45:15.984 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install rbd-fuse 2024-09-13T12:45:16.238 INFO:teuthology.orchestra.run.smithi070.stdout:rbd-mirror-19.3.0-4697.gd58f7306.el9.x86_64.rpm 9.9 MB/s | 3.2 MB 00:00 2024-09-13T12:45:16.239 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:16.239 INFO:teuthology.orchestra.run.smithi070.stdout:Total 9.8 MB/s | 3.2 MB 00:00 2024-09-13T12:45:16.239 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:45:16.248 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:45:16.248 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:45:16.336 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:45:16.337 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:45:16.551 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:47 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:16.684 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:16.684 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:16.685 INFO:teuthology.orchestra.run.smithi086.stdout: Package Architecture Version Repository Size 2024-09-13T12:45:16.685 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:16.685 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:45:16.685 INFO:teuthology.orchestra.run.smithi086.stdout: rbd-fuse x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 85 k 2024-09-13T12:45:16.685 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:16.685 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:45:16.685 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:16.685 INFO:teuthology.orchestra.run.smithi086.stdout:Install 1 Package 2024-09-13T12:45:16.685 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:16.685 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 85 k 2024-09-13T12:45:16.685 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 231 k 2024-09-13T12:45:16.685 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:45:16.783 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : rbd-mirror-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:16.783 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:16.784 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:45:16.784 INFO:teuthology.orchestra.run.smithi105.stdout: rbd-mirror-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:16.784 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:16.784 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:45:16.801 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:45:16.872 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : rbd-mirror-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:16.883 INFO:teuthology.orchestra.run.smithi086.stdout:rbd-fuse-19.3.0-4697.gd58f7306.el9.x86_64.rpm 430 kB/s | 85 kB 00:00 2024-09-13T12:45:16.884 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:16.884 INFO:teuthology.orchestra.run.smithi086.stdout:Total 428 kB/s | 85 kB 00:00 2024-09-13T12:45:16.884 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:45:16.891 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:45:16.891 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:45:16.898 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: rbd-mirror-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:16.898 INFO:teuthology.orchestra.run.smithi070.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:45:16.898 INFO:teuthology.orchestra.run.smithi070.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-13T12:45:16.898 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-13T12:45:16.899 INFO:teuthology.orchestra.run.smithi070.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-13T12:45:16.899 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:16.955 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:45:16.955 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:45:16.972 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install rbd-nbd 2024-09-13T12:45:17.119 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:45:17.213 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : rbd-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:17.551 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:50 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:17.626 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: rbd-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:17.685 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-09-13T12:45:17.686 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:17.686 INFO:teuthology.orchestra.run.smithi105.stdout: Package Architecture Version Repository Size 2024-09-13T12:45:17.686 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:17.686 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-09-13T12:45:17.686 INFO:teuthology.orchestra.run.smithi105.stdout: rbd-nbd x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 170 k 2024-09-13T12:45:17.686 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:17.687 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-09-13T12:45:17.687 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-09-13T12:45:17.687 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-09-13T12:45:17.687 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:17.687 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 170 k 2024-09-13T12:45:17.687 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 490 k 2024-09-13T12:45:17.687 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-09-13T12:45:17.874 INFO:teuthology.orchestra.run.smithi105.stdout:rbd-nbd-19.3.0-4697.gd58f7306.el9.x86_64.rpm 916 kB/s | 170 kB 00:00 2024-09-13T12:45:17.875 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:17.875 INFO:teuthology.orchestra.run.smithi105.stdout:Total 906 kB/s | 170 kB 00:00 2024-09-13T12:45:17.875 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-09-13T12:45:17.882 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-09-13T12:45:17.882 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-09-13T12:45:17.902 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : rbd-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:17.902 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:17.902 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:45:17.902 INFO:teuthology.orchestra.run.smithi086.stdout: rbd-fuse-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:17.902 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:17.902 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:17.945 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-09-13T12:45:17.946 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-09-13T12:45:18.046 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : rbd-mirror-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:18.046 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:18.046 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:45:18.046 INFO:teuthology.orchestra.run.smithi070.stdout: rbd-mirror-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:18.046 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:18.046 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:18.104 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-09-13T12:45:18.135 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install rbd-mirror 2024-09-13T12:45:18.213 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : rbd-nbd-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:18.232 DEBUG:teuthology.orchestra.run.smithi070:> sudo yum -y install rbd-nbd 2024-09-13T12:45:18.632 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: rbd-nbd-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:18.709 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:49 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:18.810 INFO:teuthology.orchestra.run.smithi070.stdout:Last metadata expiration check: 0:01:51 ago on Fri 13 Sep 2024 12:43:27 PM UTC. 2024-09-13T12:45:18.845 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:18.845 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:18.845 INFO:teuthology.orchestra.run.smithi086.stdout: Package Arch Version Repo Size 2024-09-13T12:45:18.845 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:18.845 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:45:18.845 INFO:teuthology.orchestra.run.smithi086.stdout: rbd-mirror x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 3.2 M 2024-09-13T12:45:18.846 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:18.846 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:45:18.846 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:18.846 INFO:teuthology.orchestra.run.smithi086.stdout:Install 1 Package 2024-09-13T12:45:18.846 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:18.846 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 3.2 M 2024-09-13T12:45:18.846 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 14 M 2024-09-13T12:45:18.847 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:45:18.900 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : rbd-nbd-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:18.900 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:18.900 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-09-13T12:45:18.900 INFO:teuthology.orchestra.run.smithi105.stdout: rbd-nbd-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:18.901 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:45:18.901 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-09-13T12:45:18.948 INFO:teuthology.orchestra.run.smithi070.stdout:Dependencies resolved. 2024-09-13T12:45:18.949 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:18.950 INFO:teuthology.orchestra.run.smithi070.stdout: Package Architecture Version Repository Size 2024-09-13T12:45:18.950 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:18.950 INFO:teuthology.orchestra.run.smithi070.stdout:Installing: 2024-09-13T12:45:18.950 INFO:teuthology.orchestra.run.smithi070.stdout: rbd-nbd x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 170 k 2024-09-13T12:45:18.950 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:18.951 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction Summary 2024-09-13T12:45:18.951 INFO:teuthology.orchestra.run.smithi070.stdout:================================================================================ 2024-09-13T12:45:18.951 INFO:teuthology.orchestra.run.smithi070.stdout:Install 1 Package 2024-09-13T12:45:18.951 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:18.951 INFO:teuthology.orchestra.run.smithi070.stdout:Total download size: 170 k 2024-09-13T12:45:18.951 INFO:teuthology.orchestra.run.smithi070.stdout:Installed size: 490 k 2024-09-13T12:45:18.952 INFO:teuthology.orchestra.run.smithi070.stdout:Downloading Packages: 2024-09-13T12:45:19.136 DEBUG:teuthology.parallel:result is None 2024-09-13T12:45:19.167 INFO:teuthology.orchestra.run.smithi070.stdout:rbd-nbd-19.3.0-4697.gd58f7306.el9.x86_64.rpm 785 kB/s | 170 kB 00:00 2024-09-13T12:45:19.167 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:19.168 INFO:teuthology.orchestra.run.smithi070.stdout:Total 780 kB/s | 170 kB 00:00 2024-09-13T12:45:19.168 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction check 2024-09-13T12:45:19.175 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction check succeeded. 2024-09-13T12:45:19.175 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction test 2024-09-13T12:45:19.178 INFO:teuthology.orchestra.run.smithi086.stdout:rbd-mirror-19.3.0-4697.gd58f7306.el9.x86_64.rpm 9.6 MB/s | 3.2 MB 00:00 2024-09-13T12:45:19.178 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:19.179 INFO:teuthology.orchestra.run.smithi086.stdout:Total 9.5 MB/s | 3.2 MB 00:00 2024-09-13T12:45:19.179 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:45:19.188 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:45:19.188 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:45:19.240 INFO:teuthology.orchestra.run.smithi070.stdout:Transaction test succeeded. 2024-09-13T12:45:19.241 INFO:teuthology.orchestra.run.smithi070.stdout:Running transaction 2024-09-13T12:45:19.275 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:45:19.275 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:45:19.395 INFO:teuthology.orchestra.run.smithi070.stdout: Preparing : 1/1 2024-09-13T12:45:19.498 INFO:teuthology.orchestra.run.smithi070.stdout: Installing : rbd-nbd-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:19.725 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:45:19.804 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : rbd-mirror-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:19.829 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: rbd-mirror-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:19.829 INFO:teuthology.orchestra.run.smithi086.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-09-13T12:45:19.829 INFO:teuthology.orchestra.run.smithi086.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-09-13T12:45:19.829 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-13T12:45:19.829 INFO:teuthology.orchestra.run.smithi086.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-09-13T12:45:19.830 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:19.959 INFO:teuthology.orchestra.run.smithi070.stdout: Running scriptlet: rbd-nbd-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:20.224 INFO:teuthology.orchestra.run.smithi070.stdout: Verifying : rbd-nbd-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:20.224 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:20.225 INFO:teuthology.orchestra.run.smithi070.stdout:Installed: 2024-09-13T12:45:20.225 INFO:teuthology.orchestra.run.smithi070.stdout: rbd-nbd-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:20.225 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:45:20.225 INFO:teuthology.orchestra.run.smithi070.stdout:Complete! 2024-09-13T12:45:20.478 DEBUG:teuthology.parallel:result is None 2024-09-13T12:45:21.085 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : rbd-mirror-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:21.085 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:21.085 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:45:21.085 INFO:teuthology.orchestra.run.smithi086.stdout: rbd-mirror-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:21.085 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:21.086 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:21.313 DEBUG:teuthology.orchestra.run.smithi086:> sudo yum -y install rbd-nbd 2024-09-13T12:45:21.894 INFO:teuthology.orchestra.run.smithi086.stdout:Last metadata expiration check: 0:01:52 ago on Fri 13 Sep 2024 12:43:29 PM UTC. 2024-09-13T12:45:22.031 INFO:teuthology.orchestra.run.smithi086.stdout:Dependencies resolved. 2024-09-13T12:45:22.031 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:22.031 INFO:teuthology.orchestra.run.smithi086.stdout: Package Architecture Version Repository Size 2024-09-13T12:45:22.032 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:22.032 INFO:teuthology.orchestra.run.smithi086.stdout:Installing: 2024-09-13T12:45:22.032 INFO:teuthology.orchestra.run.smithi086.stdout: rbd-nbd x86_64 2:19.3.0-4697.gd58f7306.el9 ceph 170 k 2024-09-13T12:45:22.032 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:22.032 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction Summary 2024-09-13T12:45:22.032 INFO:teuthology.orchestra.run.smithi086.stdout:================================================================================ 2024-09-13T12:45:22.032 INFO:teuthology.orchestra.run.smithi086.stdout:Install 1 Package 2024-09-13T12:45:22.032 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:22.032 INFO:teuthology.orchestra.run.smithi086.stdout:Total download size: 170 k 2024-09-13T12:45:22.032 INFO:teuthology.orchestra.run.smithi086.stdout:Installed size: 490 k 2024-09-13T12:45:22.032 INFO:teuthology.orchestra.run.smithi086.stdout:Downloading Packages: 2024-09-13T12:45:22.252 INFO:teuthology.orchestra.run.smithi086.stdout:rbd-nbd-19.3.0-4697.gd58f7306.el9.x86_64.rpm 778 kB/s | 170 kB 00:00 2024-09-13T12:45:22.252 INFO:teuthology.orchestra.run.smithi086.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:45:22.253 INFO:teuthology.orchestra.run.smithi086.stdout:Total 771 kB/s | 170 kB 00:00 2024-09-13T12:45:22.253 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction check 2024-09-13T12:45:22.261 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction check succeeded. 2024-09-13T12:45:22.261 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction test 2024-09-13T12:45:22.325 INFO:teuthology.orchestra.run.smithi086.stdout:Transaction test succeeded. 2024-09-13T12:45:22.325 INFO:teuthology.orchestra.run.smithi086.stdout:Running transaction 2024-09-13T12:45:22.482 INFO:teuthology.orchestra.run.smithi086.stdout: Preparing : 1/1 2024-09-13T12:45:22.588 INFO:teuthology.orchestra.run.smithi086.stdout: Installing : rbd-nbd-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:23.034 INFO:teuthology.orchestra.run.smithi086.stdout: Running scriptlet: rbd-nbd-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:23.309 INFO:teuthology.orchestra.run.smithi086.stdout: Verifying : rbd-nbd-2:19.3.0-4697.gd58f7306.el9.x86_64 1/1 2024-09-13T12:45:23.309 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:23.309 INFO:teuthology.orchestra.run.smithi086.stdout:Installed: 2024-09-13T12:45:23.309 INFO:teuthology.orchestra.run.smithi086.stdout: rbd-nbd-2:19.3.0-4697.gd58f7306.el9.x86_64 2024-09-13T12:45:23.309 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:45:23.310 INFO:teuthology.orchestra.run.smithi086.stdout:Complete! 2024-09-13T12:45:23.567 DEBUG:teuthology.parallel:result is None 2024-09-13T12:45:23.567 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=d58f73069a8157a9ace12a0247ee3e8497707ea9 2024-09-13T12:45:23.721 DEBUG:teuthology.orchestra.run.smithi070:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-13T12:45:23.746 INFO:teuthology.orchestra.run.smithi070.stdout:19.3.0-4697.gd58f7306.el9 2024-09-13T12:45:23.747 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-4697.gd58f7306.el9 2024-09-13T12:45:23.747 INFO:teuthology.task.install:The correct ceph version 19.3.0-4697.gd58f7306 is installed. 2024-09-13T12:45:23.749 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=d58f73069a8157a9ace12a0247ee3e8497707ea9 2024-09-13T12:45:23.899 DEBUG:teuthology.orchestra.run.smithi086:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-13T12:45:23.921 INFO:teuthology.orchestra.run.smithi086.stdout:19.3.0-4697.gd58f7306.el9 2024-09-13T12:45:23.921 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-4697.gd58f7306.el9 2024-09-13T12:45:23.921 INFO:teuthology.task.install:The correct ceph version 19.3.0-4697.gd58f7306 is installed. 2024-09-13T12:45:23.923 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=d58f73069a8157a9ace12a0247ee3e8497707ea9 2024-09-13T12:45:24.070 DEBUG:teuthology.orchestra.run.smithi105:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-09-13T12:45:24.096 INFO:teuthology.orchestra.run.smithi105.stdout:19.3.0-4697.gd58f7306.el9 2024-09-13T12:45:24.096 INFO:teuthology.packaging:The installed version of ceph is 19.3.0-4697.gd58f7306.el9 2024-09-13T12:45:24.096 INFO:teuthology.task.install:The correct ceph version 19.3.0-4697.gd58f7306 is installed. 2024-09-13T12:45:24.098 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-09-13T12:45:24.098 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:45:24.098 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-13T12:45:24.129 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-13T12:45:24.129 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-13T12:45:24.155 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-09-13T12:45:24.155 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-09-13T12:45:24.186 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-09-13T12:45:24.186 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:45:24.186 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/usr/bin/daemon-helper 2024-09-13T12:45:24.214 DEBUG:teuthology.orchestra.run.smithi070:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-13T12:45:24.283 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-13T12:45:24.283 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/usr/bin/daemon-helper 2024-09-13T12:45:24.308 DEBUG:teuthology.orchestra.run.smithi086:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-13T12:45:24.374 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-09-13T12:45:24.374 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/usr/bin/daemon-helper 2024-09-13T12:45:24.403 DEBUG:teuthology.orchestra.run.smithi105:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-09-13T12:45:24.472 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-09-13T12:45:24.472 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:45:24.472 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-13T12:45:24.500 DEBUG:teuthology.orchestra.run.smithi070:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-13T12:45:24.568 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-13T12:45:24.568 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-13T12:45:24.593 DEBUG:teuthology.orchestra.run.smithi086:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-13T12:45:24.662 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-09-13T12:45:24.662 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/usr/bin/adjust-ulimits 2024-09-13T12:45:24.691 DEBUG:teuthology.orchestra.run.smithi105:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-09-13T12:45:24.758 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-09-13T12:45:24.758 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:45:24.758 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/usr/bin/stdin-killer 2024-09-13T12:45:24.786 DEBUG:teuthology.orchestra.run.smithi070:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-13T12:45:24.853 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-13T12:45:24.853 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/usr/bin/stdin-killer 2024-09-13T12:45:24.878 DEBUG:teuthology.orchestra.run.smithi086:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-13T12:45:24.942 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-09-13T12:45:24.942 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/usr/bin/stdin-killer 2024-09-13T12:45:24.972 DEBUG:teuthology.orchestra.run.smithi105:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-09-13T12:45:25.039 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-13T12:45:25.136 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': False}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN', 'mons down', 'mon down', 'out of quorum', 'CEPHADM_STRAY_HOST', 'CEPHADM_STRAY_DAEMON', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': 'd58f73069a8157a9ace12a0247ee3e8497707ea9'} 2024-09-13T12:45:25.137 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 2024-09-13T12:45:25.137 INFO:tasks.cephadm:Cluster fsid is 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:45:25.137 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-13T12:45:25.138 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.70', 'mon.b': '172.21.15.86', 'mon.c': '172.21.15.105'} 2024-09-13T12:45:25.138 INFO:tasks.cephadm:First mon is mon.a on smithi070 2024-09-13T12:45:25.138 INFO:tasks.cephadm:First mgr is a 2024-09-13T12:45:25.138 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-13T12:45:25.138 DEBUG:teuthology.orchestra.run.smithi070:> sudo hostname $(hostname -s) 2024-09-13T12:45:25.167 DEBUG:teuthology.orchestra.run.smithi086:> sudo hostname $(hostname -s) 2024-09-13T12:45:25.192 DEBUG:teuthology.orchestra.run.smithi105:> sudo hostname $(hostname -s) 2024-09-13T12:45:25.219 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-13T12:45:25.219 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=d58f73069a8157a9ace12a0247ee3e8497707ea9 2024-09-13T12:45:25.372 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'd58f73069a8157a9ace12a0247ee3e8497707ea9', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-new-build/ARCH=arm64,AVAILABLE_ARCH=arm64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/83028/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.3.0-4697-gd58f7306', 'node_name': '172.21.4.75+confusa13', 'job_name': 'ceph-dev-new-build/ARCH=arm64,AVAILABLE_ARCH=arm64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.3.0-4697.gd58f7306'}, 'url': 'https://1.chacra.ceph.com/r/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-09-12 23:59:16.034150', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-aclamk-cbt-combined', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/flavors/default/', 'archs': ['source', 'x86_64', 'arm64'], 'distro': 'centos'}] 2024-09-13T12:45:25.524 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref wip-aclamk-cbt-combined, sha1 d58f73069a8157a9ace12a0247ee3e8497707ea9 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=d58f73069a8157a9ace12a0247ee3e8497707ea9 2024-09-13T12:45:25.526 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/x86_64/flavors/default/cephadm 2024-09-13T12:45:25.526 INFO:tasks.cephadm:Downloading cephadm from url: https://1.chacra.ceph.com/binaries/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/x86_64/flavors/default/cephadm 2024-09-13T12:45:25.526 DEBUG:teuthology.orchestra.run.smithi070:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-13T12:45:25.912 INFO:teuthology.orchestra.run.smithi070.stdout:-rw-r--r--. 1 ubuntu ubuntu 802516 Sep 13 12:45 /home/ubuntu/cephtest/cephadm 2024-09-13T12:45:25.913 DEBUG:teuthology.orchestra.run.smithi086:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-13T12:45:26.304 INFO:teuthology.orchestra.run.smithi086.stdout:-rw-r--r--. 1 ubuntu ubuntu 802516 Sep 13 12:45 /home/ubuntu/cephtest/cephadm 2024-09-13T12:45:26.304 DEBUG:teuthology.orchestra.run.smithi105:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-aclamk-cbt-combined/d58f73069a8157a9ace12a0247ee3e8497707ea9/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-13T12:45:26.746 INFO:teuthology.orchestra.run.smithi105.stdout:-rw-r--r--. 1 ubuntu ubuntu 802516 Sep 13 12:45 /home/ubuntu/cephtest/cephadm 2024-09-13T12:45:26.746 DEBUG:teuthology.orchestra.run.smithi070:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-13T12:45:26.765 DEBUG:teuthology.orchestra.run.smithi086:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-13T12:45:26.783 DEBUG:teuthology.orchestra.run.smithi105:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-13T12:45:26.815 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 on all hosts... 2024-09-13T12:45:26.815 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 pull 2024-09-13T12:45:26.818 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 pull 2024-09-13T12:45:26.826 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 pull 2024-09-13T12:45:28.427 INFO:teuthology.orchestra.run.smithi086.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9... 2024-09-13T12:45:28.438 INFO:teuthology.orchestra.run.smithi070.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9... 2024-09-13T12:45:28.521 INFO:teuthology.orchestra.run.smithi105.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9... 2024-09-13T12:46:42.823 INFO:teuthology.orchestra.run.smithi086.stdout:{ 2024-09-13T12:46:42.823 INFO:teuthology.orchestra.run.smithi086.stdout: "ceph_version": "ceph version 19.3.0-4697-gd58f7306 (d58f73069a8157a9ace12a0247ee3e8497707ea9) squid (dev)", 2024-09-13T12:46:42.824 INFO:teuthology.orchestra.run.smithi086.stdout: "image_id": "fec07016a2b0bf363d0b69240081049b65cf13f1c44f6a7196cf8309aeb428cd", 2024-09-13T12:46:42.824 INFO:teuthology.orchestra.run.smithi086.stdout: "repo_digests": [ 2024-09-13T12:46:42.824 INFO:teuthology.orchestra.run.smithi086.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f" 2024-09-13T12:46:42.824 INFO:teuthology.orchestra.run.smithi086.stdout: ] 2024-09-13T12:46:42.824 INFO:teuthology.orchestra.run.smithi086.stdout:} 2024-09-13T12:46:56.796 INFO:teuthology.orchestra.run.smithi070.stdout:{ 2024-09-13T12:46:56.796 INFO:teuthology.orchestra.run.smithi070.stdout: "ceph_version": "ceph version 19.3.0-4697-gd58f7306 (d58f73069a8157a9ace12a0247ee3e8497707ea9) squid (dev)", 2024-09-13T12:46:56.797 INFO:teuthology.orchestra.run.smithi070.stdout: "image_id": "fec07016a2b0bf363d0b69240081049b65cf13f1c44f6a7196cf8309aeb428cd", 2024-09-13T12:46:56.797 INFO:teuthology.orchestra.run.smithi070.stdout: "repo_digests": [ 2024-09-13T12:46:56.797 INFO:teuthology.orchestra.run.smithi070.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f" 2024-09-13T12:46:56.797 INFO:teuthology.orchestra.run.smithi070.stdout: ] 2024-09-13T12:46:56.797 INFO:teuthology.orchestra.run.smithi070.stdout:} 2024-09-13T12:46:59.299 INFO:teuthology.orchestra.run.smithi105.stdout:{ 2024-09-13T12:46:59.299 INFO:teuthology.orchestra.run.smithi105.stdout: "ceph_version": "ceph version 19.3.0-4697-gd58f7306 (d58f73069a8157a9ace12a0247ee3e8497707ea9) squid (dev)", 2024-09-13T12:46:59.299 INFO:teuthology.orchestra.run.smithi105.stdout: "image_id": "fec07016a2b0bf363d0b69240081049b65cf13f1c44f6a7196cf8309aeb428cd", 2024-09-13T12:46:59.299 INFO:teuthology.orchestra.run.smithi105.stdout: "repo_digests": [ 2024-09-13T12:46:59.299 INFO:teuthology.orchestra.run.smithi105.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f" 2024-09-13T12:46:59.299 INFO:teuthology.orchestra.run.smithi105.stdout: ] 2024-09-13T12:46:59.299 INFO:teuthology.orchestra.run.smithi105.stdout:} 2024-09-13T12:46:59.325 DEBUG:teuthology.orchestra.run.smithi070:> sudo mkdir -p /etc/ceph 2024-09-13T12:46:59.358 DEBUG:teuthology.orchestra.run.smithi086:> sudo mkdir -p /etc/ceph 2024-09-13T12:46:59.391 DEBUG:teuthology.orchestra.run.smithi105:> sudo mkdir -p /etc/ceph 2024-09-13T12:46:59.419 DEBUG:teuthology.orchestra.run.smithi070:> sudo chmod 777 /etc/ceph 2024-09-13T12:46:59.448 DEBUG:teuthology.orchestra.run.smithi086:> sudo chmod 777 /etc/ceph 2024-09-13T12:46:59.477 DEBUG:teuthology.orchestra.run.smithi105:> sudo chmod 777 /etc/ceph 2024-09-13T12:46:59.502 INFO:tasks.cephadm:Writing seed config... 2024-09-13T12:46:59.503 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-09-13T12:46:59.503 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-13T12:46:59.503 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-13T12:46:59.503 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2024-09-13T12:46:59.504 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-13T12:46:59.504 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-13T12:46:59.504 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-13T12:46:59.504 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-13T12:46:59.504 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-13T12:46:59.504 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:46:59.505 DEBUG:teuthology.orchestra.run.smithi070:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-13T12:46:59.522 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 = 0c10639a-71ce-11ef-bceb-c7b262605968 mon election default strategy = 1 [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-09-13T12:46:59.522 DEBUG:teuthology.orchestra.run.smithi070:mon.a> sudo journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.a.service 2024-09-13T12:46:59.565 DEBUG:teuthology.orchestra.run.smithi070:mgr.a> sudo journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mgr.a.service 2024-09-13T12:46:59.607 INFO:tasks.cephadm:Bootstrapping... 2024-09-13T12:46:59.608 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 -v bootstrap --fsid 0c10639a-71ce-11ef-bceb-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.70 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-13T12:46:59.810 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------------------------------------------------------------------- 2024-09-13T12:46:59.811 INFO:teuthology.orchestra.run.smithi070.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9', '-v', 'bootstrap', '--fsid', '0c10639a-71ce-11ef-bceb-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.70', '--skip-admin-label'] 2024-09-13T12:46:59.811 INFO:teuthology.orchestra.run.smithi070.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-13T12:46:59.812 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying podman|docker is present... 2024-09-13T12:46:59.835 INFO:teuthology.orchestra.run.smithi070.stdout:/bin/podman: stdout 5.2.2 2024-09-13T12:46:59.835 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying lvm2 is present... 2024-09-13T12:46:59.835 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying time synchronization is in place... 2024-09-13T12:46:59.843 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-13T12:46:59.843 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-13T12:46:59.849 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-13T12:46:59.849 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-13T12:46:59.856 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout enabled 2024-09-13T12:46:59.862 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout active 2024-09-13T12:46:59.862 INFO:teuthology.orchestra.run.smithi070.stdout:Unit chronyd.service is enabled and running 2024-09-13T12:46:59.862 INFO:teuthology.orchestra.run.smithi070.stdout:Repeating the final host check... 2024-09-13T12:46:59.885 INFO:teuthology.orchestra.run.smithi070.stdout:/bin/podman: stdout 5.2.2 2024-09-13T12:46:59.885 INFO:teuthology.orchestra.run.smithi070.stdout:podman (/bin/podman) version 5.2.2 is present 2024-09-13T12:46:59.885 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl is present 2024-09-13T12:46:59.885 INFO:teuthology.orchestra.run.smithi070.stdout:lvcreate is present 2024-09-13T12:46:59.891 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-13T12:46:59.891 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-13T12:46:59.898 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-13T12:46:59.898 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-13T12:46:59.905 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout enabled 2024-09-13T12:46:59.911 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout active 2024-09-13T12:46:59.911 INFO:teuthology.orchestra.run.smithi070.stdout:Unit chronyd.service is enabled and running 2024-09-13T12:46:59.911 INFO:teuthology.orchestra.run.smithi070.stdout:Host looks OK 2024-09-13T12:46:59.911 INFO:teuthology.orchestra.run.smithi070.stdout:Cluster fsid: 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:46:59.912 INFO:teuthology.orchestra.run.smithi070.stdout:Acquiring lock 139819481229488 on /run/cephadm/0c10639a-71ce-11ef-bceb-c7b262605968.lock 2024-09-13T12:46:59.912 INFO:teuthology.orchestra.run.smithi070.stdout:Lock 139819481229488 acquired on /run/cephadm/0c10639a-71ce-11ef-bceb-c7b262605968.lock 2024-09-13T12:46:59.912 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying IP 172.21.15.70 port 3300 ... 2024-09-13T12:46:59.912 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying IP 172.21.15.70 port 6789 ... 2024-09-13T12:46:59.912 INFO:teuthology.orchestra.run.smithi070.stdout:Base mon IP(s) is [172.21.15.70:3300, 172.21.15.70:6789], mon addrv is [v2:172.21.15.70:3300,v1:172.21.15.70:6789] 2024-09-13T12:46:59.915 INFO:teuthology.orchestra.run.smithi070.stdout:/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.70 metric 100 2024-09-13T12:46:59.915 INFO:teuthology.orchestra.run.smithi070.stdout:/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.70 metric 100 2024-09-13T12:46:59.918 INFO:teuthology.orchestra.run.smithi070.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-13T12:46:59.918 INFO:teuthology.orchestra.run.smithi070.stdout:/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 1024 pref medium 2024-09-13T12:46:59.918 INFO:teuthology.orchestra.run.smithi070.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 pref medium 2024-09-13T12:46:59.920 INFO:teuthology.orchestra.run.smithi070.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-13T12:46:59.920 INFO:teuthology.orchestra.run.smithi070.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-13T12:46:59.920 INFO:teuthology.orchestra.run.smithi070.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-13T12:46:59.920 INFO:teuthology.orchestra.run.smithi070.stdout:/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-09-13T12:46:59.921 INFO:teuthology.orchestra.run.smithi070.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:fe8f:d3e7/64 scope link noprefixroute 2024-09-13T12:46:59.921 INFO:teuthology.orchestra.run.smithi070.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-13T12:46:59.921 INFO:teuthology.orchestra.run.smithi070.stdout:Mon IP `172.21.15.70` is in CIDR network `172.21.0.0/20` 2024-09-13T12:46:59.921 INFO:teuthology.orchestra.run.smithi070.stdout:Mon IP `172.21.15.70` is in CIDR network `172.21.0.0/20` 2024-09-13T12:46:59.921 INFO:teuthology.orchestra.run.smithi070.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-09-13T12:46:59.922 INFO:teuthology.orchestra.run.smithi070.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-13T12:46:59.922 INFO:teuthology.orchestra.run.smithi070.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9... 2024-09-13T12:47:00.590 INFO:teuthology.orchestra.run.smithi070.stdout:/bin/podman: stdout fec07016a2b0bf363d0b69240081049b65cf13f1c44f6a7196cf8309aeb428cd 2024-09-13T12:47:00.590 INFO:teuthology.orchestra.run.smithi070.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9... 2024-09-13T12:47:00.590 INFO:teuthology.orchestra.run.smithi070.stdout:/bin/podman: stderr Getting image source signatures 2024-09-13T12:47:00.590 INFO:teuthology.orchestra.run.smithi070.stdout:/bin/podman: stderr Copying blob sha256:4f1e227cf18e81f5e2a5c9a48a6b57055253289fec8a5452649f17f76ee9baf7 2024-09-13T12:47:00.590 INFO:teuthology.orchestra.run.smithi070.stdout:/bin/podman: stderr Copying blob sha256:e8b54c863393b7a8216a71737771b73b16a8e43ec7acf927c7faa175c255e551 2024-09-13T12:47:00.590 INFO:teuthology.orchestra.run.smithi070.stdout:/bin/podman: stderr Copying config sha256:fec07016a2b0bf363d0b69240081049b65cf13f1c44f6a7196cf8309aeb428cd 2024-09-13T12:47:00.590 INFO:teuthology.orchestra.run.smithi070.stdout:/bin/podman: stderr Writing manifest to image destination 2024-09-13T12:47:01.402 INFO:teuthology.orchestra.run.smithi070.stdout:ceph: stdout ceph version 19.3.0-4697-gd58f7306 (d58f73069a8157a9ace12a0247ee3e8497707ea9) squid (dev) 2024-09-13T12:47:01.402 INFO:teuthology.orchestra.run.smithi070.stdout:Ceph version: ceph version 19.3.0-4697-gd58f7306 (d58f73069a8157a9ace12a0247ee3e8497707ea9) squid (dev) 2024-09-13T12:47:01.403 INFO:teuthology.orchestra.run.smithi070.stdout:Extracting ceph user uid/gid from container image... 2024-09-13T12:47:02.408 INFO:teuthology.orchestra.run.smithi070.stdout:stat: stdout 167 167 2024-09-13T12:47:02.408 INFO:teuthology.orchestra.run.smithi070.stdout:Creating initial keys... 2024-09-13T12:47:03.288 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-authtool: stdout AQBGNORm3jjbKRAAXNV9qxXLNs3YbuuNqz8Wlg== 2024-09-13T12:47:04.110 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-authtool: stdout AQBHNORm+QWGJRAAjcwHPDwEXUxKOraXkSpR9w== 2024-09-13T12:47:05.166 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph-authtool: stdout AQBINORmruL5GxAA3bnDTPayqY7TepOwaqmK3Q== 2024-09-13T12:47:05.166 INFO:teuthology.orchestra.run.smithi070.stdout:Creating initial monmap... 2024-09-13T12:47:06.047 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-13T12:47:06.047 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-13T12:47:06.047 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:47:06.047 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-13T12:47:06.047 INFO:teuthology.orchestra.run.smithi070.stdout:monmaptool for a [v2:172.21.15.70:3300,v1:172.21.15.70:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-13T12:47:06.047 INFO:teuthology.orchestra.run.smithi070.stdout:setting min_mon_release = quincy 2024-09-13T12:47:06.047 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/monmaptool: set fsid to 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:47:06.047 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-13T12:47:06.048 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:47:06.048 INFO:teuthology.orchestra.run.smithi070.stdout:Creating mon... 2024-09-13T12:47:06.920 INFO:teuthology.orchestra.run.smithi070.stdout:create mon.a on 2024-09-13T12:47:07.133 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-09-13T12:47:07.284 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-09-13T12:47:07.473 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-0c10639a-71ce-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-0c10639a-71ce-11ef-bceb-c7b262605968.target. 2024-09-13T12:47:07.473 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-0c10639a-71ce-11ef-bceb-c7b262605968.target → /etc/systemd/system/ceph-0c10639a-71ce-11ef-bceb-c7b262605968.target. 2024-09-13T12:47:07.721 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.a 2024-09-13T12:47:07.721 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Failed to reset failed state of unit ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.a.service: Unit ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.a.service not loaded. 2024-09-13T12:47:07.889 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-0c10639a-71ce-11ef-bceb-c7b262605968.target.wants/ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.a.service → /etc/systemd/system/ceph-0c10639a-71ce-11ef-bceb-c7b262605968@.service. 2024-09-13T12:47:08.412 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:08 smithi070 podman[29299]: 2024-09-13 12:47:08.373449138 +0000 UTC m=+0.355384362 container start ace9b57e1a76ef29738560158522d6cf6e66aaa3821f915ef74700a05d840a03 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a, org.label-schema.build-date=20240731, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , ceph=True, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-13T12:47:08.412 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:08 smithi070 ceph-mon[29318]: mkfs 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:47:08.446 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-13T12:47:08.446 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout disabled 2024-09-13T12:47:08.453 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-13T12:47:08.453 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-13T12:47:08.453 INFO:teuthology.orchestra.run.smithi070.stdout:firewalld.service is not enabled 2024-09-13T12:47:08.453 INFO:teuthology.orchestra.run.smithi070.stdout:Not possible to enable service . firewalld.service is not available 2024-09-13T12:47:08.454 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for mon to start... 2024-09-13T12:47:08.454 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for mon... 2024-09-13T12:47:08.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:08 smithi070 ceph-mon[29318]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-13T12:47:08.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:08 smithi070 bash[29299]: ace9b57e1a76ef29738560158522d6cf6e66aaa3821f915ef74700a05d840a03 2024-09-13T12:47:08.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:08 smithi070 systemd[1]: Started Ceph mon.a for 0c10639a-71ce-11ef-bceb-c7b262605968. 2024-09-13T12:47:09.403 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout cluster: 2024-09-13T12:47:09.408 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout id: 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:47:09.408 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-13T12:47:09.409 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-13T12:47:09.409 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout services: 2024-09-13T12:47:09.409 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.533548s) 2024-09-13T12:47:09.409 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-13T12:47:09.409 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-13T12:47:09.409 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-13T12:47:09.409 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout data: 2024-09-13T12:47:09.409 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-13T12:47:09.409 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-13T12:47:09.409 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-13T12:47:09.409 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout pgs: 2024-09-13T12:47:09.410 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-13T12:47:09.410 INFO:teuthology.orchestra.run.smithi070.stdout:mon is available 2024-09-13T12:47:09.410 INFO:teuthology.orchestra.run.smithi070.stdout:Assimilating anything we can from ceph.conf... 2024-09-13T12:47:09.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:09 smithi070 ceph-mon[29318]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-13T12:47:09.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:09 smithi070 ceph-mon[29318]: monmap epoch 1 2024-09-13T12:47:09.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:09 smithi070 ceph-mon[29318]: fsid 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:47:09.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:09 smithi070 ceph-mon[29318]: last_changed 2024-09-13T12:47:05.470739+0000 2024-09-13T12:47:09.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:09 smithi070 ceph-mon[29318]: created 2024-09-13T12:47:05.470739+0000 2024-09-13T12:47:09.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:09 smithi070 ceph-mon[29318]: min_mon_release 19 (squid) 2024-09-13T12:47:09.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:09 smithi070 ceph-mon[29318]: election_strategy: 1 2024-09-13T12:47:09.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:09 smithi070 ceph-mon[29318]: 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-13T12:47:09.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:09 smithi070 ceph-mon[29318]: fsmap 2024-09-13T12:47:09.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:09 smithi070 ceph-mon[29318]: osdmap e1: 0 total, 0 up, 0 in 2024-09-13T12:47:09.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:09 smithi070 ceph-mon[29318]: mgrmap e1: no daemons active 2024-09-13T12:47:09.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:09 smithi070 ceph-mon[29318]: from='client.? 172.21.15.70:0/3697206480' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-13T12:47:10.394 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-13T12:47:10.394 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout [global] 2024-09-13T12:47:10.394 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout fsid = 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:47:10.394 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.70:3300,v1:172.21.15.70:6789] 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout [osd] 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-13T12:47:10.395 INFO:teuthology.orchestra.run.smithi070.stdout:Generating new minimal ceph.conf... 2024-09-13T12:47:10.650 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:10 smithi070 ceph-mon[29318]: from='client.? 172.21.15.70:0/897306834' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-13T12:47:10.650 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:10 smithi070 ceph-mon[29318]: from='client.? 172.21.15.70:0/897306834' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-13T12:47:11.399 INFO:teuthology.orchestra.run.smithi070.stdout:Restarting the monitor... 2024-09-13T12:47:11.651 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:11 smithi070 ceph-mon[29318]: from='client.? 172.21.15.70:0/1951813489' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:47:11.651 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:11 smithi070 systemd[1]: Stopping Ceph mon.a for 0c10639a-71ce-11ef-bceb-c7b262605968... 2024-09-13T12:47:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:11 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a[29314]: 2024-09-13T12:47:11.648+0000 7ff1f8715640 -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-09-13T12:47:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:11 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a[29314]: 2024-09-13T12:47:11.648+0000 7ff1f8715640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-09-13T12:47:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:11 smithi070 podman[29562]: 2024-09-13 12:47:11.844087243 +0000 UTC m=+0.286499974 container died ace9b57e1a76ef29738560158522d6cf6e66aaa3821f915ef74700a05d840a03 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_CLEAN=True, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, RELEASE=wip-aclamk-cbt-combined-d58f730) 2024-09-13T12:47:12.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:12 smithi070 podman[29562]: 2024-09-13 12:47:12.223950328 +0000 UTC m=+0.666363061 container cleanup ace9b57e1a76ef29738560158522d6cf6e66aaa3821f915ef74700a05d840a03 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-aclamk-cbt-combined-d58f730, GIT_BRANCH=HEAD) 2024-09-13T12:47:12.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:12 smithi070 bash[29562]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a 2024-09-13T12:47:12.796 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:12 smithi070 podman[29575]: 2024-09-13 12:47:12.466274435 +0000 UTC m=+0.614580771 container remove ace9b57e1a76ef29738560158522d6cf6e66aaa3821f915ef74700a05d840a03 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a, CEPH_POINT_RELEASE=, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux ) 2024-09-13T12:47:12.796 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:12 smithi070 systemd[1]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.a.service: Deactivated successfully. 2024-09-13T12:47:12.796 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:12 smithi070 systemd[1]: Stopped Ceph mon.a for 0c10639a-71ce-11ef-bceb-c7b262605968. 2024-09-13T12:47:12.796 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:12 smithi070 systemd[1]: Starting Ceph mon.a for 0c10639a-71ce-11ef-bceb-c7b262605968... 2024-09-13T12:47:13.047 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:12 smithi070 podman[29666]: 2024-09-13 12:47:12.698589024 +0000 UTC m=+0.015767454 image pull fec07016a2b0bf363d0b69240081049b65cf13f1c44f6a7196cf8309aeb428cd quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 2024-09-13T12:47:13.048 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:12 smithi070 podman[29666]: 2024-09-13 12:47:12.825367651 +0000 UTC m=+0.142546116 container create cac558c719ec6a2ee58a36878ab59ed1a3172cd6af40f75963a9491b724bbf4a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, RELEASE=wip-aclamk-cbt-combined-d58f730, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS) 2024-09-13T12:47:13.048 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 podman[29666]: 2024-09-13 12:47:13.044212934 +0000 UTC m=+0.361391358 container init cac558c719ec6a2ee58a36878ab59ed1a3172cd6af40f75963a9491b724bbf4a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a, GIT_BRANCH=HEAD, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS) 2024-09-13T12:47:13.048 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 podman[29666]: 2024-09-13 12:47:13.047278251 +0000 UTC m=+0.364456671 container start cac558c719ec6a2ee58a36878ab59ed1a3172cd6af40f75963a9491b724bbf4a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, RELEASE=wip-aclamk-cbt-combined-d58f730, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0, ceph=True, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS) 2024-09-13T12:47:13.115 INFO:teuthology.orchestra.run.smithi070.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-09-13T12:47:13.305 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: set uid:gid to 167:167 (ceph:ceph) 2024-09-13T12:47:13.306 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: ceph version 19.3.0-4697-gd58f7306 (d58f73069a8157a9ace12a0247ee3e8497707ea9) squid (dev), process ceph-mon, pid 2 2024-09-13T12:47:13.306 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: pidfile_write: ignore empty --pid-file 2024-09-13T12:47:13.306 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: load: jerasure load: lrc 2024-09-13T12:47:13.306 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: RocksDB version: 7.9.2 2024-09-13T12:47:13.306 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Git sha 0 2024-09-13T12:47:13.306 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Compile date 2024-09-12 20:46:14 2024-09-13T12:47:13.306 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: DB SUMMARY 2024-09-13T12:47:13.306 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: DB Session ID: 2N2WSC26HTSLGBS00ABR 2024-09-13T12:47:13.306 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: CURRENT file: CURRENT 2024-09-13T12:47:13.306 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: IDENTITY file: IDENTITY 2024-09-13T12:47:13.307 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-13T12:47:13.307 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-09-13T12:47:13.307 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 88808 ; 2024-09-13T12:47:13.307 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.error_if_exists: 0 2024-09-13T12:47:13.307 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.create_if_missing: 0 2024-09-13T12:47:13.307 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.paranoid_checks: 1 2024-09-13T12:47:13.307 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.flush_verify_memtable_count: 1 2024-09-13T12:47:13.307 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-13T12:47:13.307 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-13T12:47:13.307 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.env: 0x5565da22c160 2024-09-13T12:47:13.307 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.fs: PosixFileSystem 2024-09-13T12:47:13.308 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.info_log: 0x5565db91f880 2024-09-13T12:47:13.308 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_file_opening_threads: 16 2024-09-13T12:47:13.308 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.statistics: (nil) 2024-09-13T12:47:13.308 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.use_fsync: 0 2024-09-13T12:47:13.308 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_log_file_size: 0 2024-09-13T12:47:13.308 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-13T12:47:13.308 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.log_file_time_to_roll: 0 2024-09-13T12:47:13.308 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.keep_log_file_num: 1000 2024-09-13T12:47:13.308 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.recycle_log_file_num: 0 2024-09-13T12:47:13.308 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.allow_fallocate: 1 2024-09-13T12:47:13.308 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.allow_mmap_reads: 0 2024-09-13T12:47:13.308 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.allow_mmap_writes: 0 2024-09-13T12:47:13.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.use_direct_reads: 0 2024-09-13T12:47:13.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-13T12:47:13.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.create_missing_column_families: 0 2024-09-13T12:47:13.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.db_log_dir: 2024-09-13T12:47:13.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.wal_dir: 2024-09-13T12:47:13.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.table_cache_numshardbits: 6 2024-09-13T12:47:13.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.WAL_ttl_seconds: 0 2024-09-13T12:47:13.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.WAL_size_limit_MB: 0 2024-09-13T12:47:13.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-13T12:47:13.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-13T12:47:13.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.is_fd_close_on_exec: 1 2024-09-13T12:47:13.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.advise_random_on_open: 1 2024-09-13T12:47:13.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.db_write_buffer_size: 0 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.write_buffer_manager: 0x5565db922e60 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.use_adaptive_mutex: 0 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.rate_limiter: (nil) 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.wal_recovery_mode: 2 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.enable_thread_tracking: 0 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.enable_pipelined_write: 0 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.unordered_write: 0 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-13T12:47:13.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-13T12:47:13.311 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.row_cache: None 2024-09-13T12:47:13.311 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.wal_filter: None 2024-09-13T12:47:13.311 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-13T12:47:13.311 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.allow_ingest_behind: 0 2024-09-13T12:47:13.311 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.two_write_queues: 0 2024-09-13T12:47:13.311 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.manual_wal_flush: 0 2024-09-13T12:47:13.311 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.wal_compression: 0 2024-09-13T12:47:13.311 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.atomic_flush: 0 2024-09-13T12:47:13.311 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-13T12:47:13.311 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.persist_stats_to_disk: 0 2024-09-13T12:47:13.311 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.write_dbid_to_manifest: 0 2024-09-13T12:47:13.311 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.log_readahead_size: 0 2024-09-13T12:47:13.311 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-13T12:47:13.312 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.best_efforts_recovery: 0 2024-09-13T12:47:13.312 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-13T12:47:13.312 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-13T12:47:13.312 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.allow_data_in_errors: 0 2024-09-13T12:47:13.312 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.db_host_id: __hostname__ 2024-09-13T12:47:13.312 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.enforce_single_del_contracts: true 2024-09-13T12:47:13.312 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_background_jobs: 2 2024-09-13T12:47:13.312 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_background_compactions: -1 2024-09-13T12:47:13.312 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_subcompactions: 1 2024-09-13T12:47:13.312 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-13T12:47:13.312 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-13T12:47:13.312 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.delayed_write_rate : 16777216 2024-09-13T12:47:13.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_total_wal_size: 0 2024-09-13T12:47:13.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-13T12:47:13.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.stats_dump_period_sec: 600 2024-09-13T12:47:13.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.stats_persist_period_sec: 600 2024-09-13T12:47:13.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-13T12:47:13.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_open_files: -1 2024-09-13T12:47:13.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.bytes_per_sync: 0 2024-09-13T12:47:13.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.wal_bytes_per_sync: 0 2024-09-13T12:47:13.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.strict_bytes_per_sync: 0 2024-09-13T12:47:13.313 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compaction_readahead_size: 0 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_background_flushes: -1 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Compression algorithms supported: 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: kZSTD supported: 0 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: kXpressCompression supported: 0 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: kBZip2Compression supported: 0 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: kLZ4Compression supported: 1 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: kZlibCompression supported: 1 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: kLZ4HCCompression supported: 1 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: kSnappyCompression supported: 1 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Fast CRC32 supported: Supported on x86 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: DMutex implementation: pthread_mutex_t 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-13T12:47:13.314 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.merge_operator: 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compaction_filter: None 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compaction_filter_factory: None 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.sst_partitioner_factory: None 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.memtable_factory: SkipListFactory 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.table_factory: BlockBasedTable 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5565db91f4e0) 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout: cache_index_and_filter_blocks: 1 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout: pin_top_level_index_and_filter: 1 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout: index_type: 0 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout: data_block_index_type: 0 2024-09-13T12:47:13.315 INFO:journalctl@ceph.mon.a.smithi070.stdout: index_shortening: 1 2024-09-13T12:47:13.316 INFO:journalctl@ceph.mon.a.smithi070.stdout: data_block_hash_table_util_ratio: 0.750000 2024-09-13T12:47:13.316 INFO:journalctl@ceph.mon.a.smithi070.stdout: checksum: 4 2024-09-13T12:47:13.316 INFO:journalctl@ceph.mon.a.smithi070.stdout: no_block_cache: 0 2024-09-13T12:47:13.316 INFO:journalctl@ceph.mon.a.smithi070.stdout: block_cache: 0x5565db912850 2024-09-13T12:47:13.316 INFO:journalctl@ceph.mon.a.smithi070.stdout: block_cache_name: BinnedLRUCache 2024-09-13T12:47:13.316 INFO:journalctl@ceph.mon.a.smithi070.stdout: block_cache_options: 2024-09-13T12:47:13.316 INFO:journalctl@ceph.mon.a.smithi070.stdout: capacity : 536870912 2024-09-13T12:47:13.316 INFO:journalctl@ceph.mon.a.smithi070.stdout: num_shard_bits : 4 2024-09-13T12:47:13.316 INFO:journalctl@ceph.mon.a.smithi070.stdout: strict_capacity_limit : 0 2024-09-13T12:47:13.316 INFO:journalctl@ceph.mon.a.smithi070.stdout: high_pri_pool_ratio: 0.000 2024-09-13T12:47:13.316 INFO:journalctl@ceph.mon.a.smithi070.stdout: block_cache_compressed: (nil) 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: persistent_cache: (nil) 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: block_size: 4096 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: block_size_deviation: 10 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: block_restart_interval: 16 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: index_block_restart_interval: 1 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: metadata_block_size: 4096 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: partition_filters: 0 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: use_delta_encoding: 1 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: filter_policy: bloomfilter 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: whole_key_filtering: 1 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: verify_compression: 0 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: read_amp_bytes_per_bit: 0 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: format_version: 5 2024-09-13T12:47:13.317 INFO:journalctl@ceph.mon.a.smithi070.stdout: enable_index_compression: 1 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout: block_align: 0 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout: max_auto_readahead_size: 262144 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout: prepopulate_block_cache: 0 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout: initial_auto_readahead_size: 8192 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout: num_file_reads_for_auto_readahead: 2 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.write_buffer_size: 33554432 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_write_buffer_number: 2 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compression: NoCompression 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.bottommost_compression: Disabled 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.prefix_extractor: nullptr 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.num_levels: 7 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-13T12:47:13.318 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compression_opts.window_bits: -14 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compression_opts.level: 32767 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compression_opts.strategy: 0 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-13T12:47:13.319 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compression_opts.enabled: false 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.target_file_size_base: 67108864 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.target_file_size_multiplier: 1 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-13T12:47:13.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.arena_block_size: 1048576 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.disable_auto_compactions: 0 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-13T12:47:13.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-13T12:47:13.322 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-13T12:47:13.322 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-13T12:47:13.322 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.inplace_update_support: 0 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.inplace_update_num_locks: 10000 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.memtable_huge_page_size: 0 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.bloom_locality: 0 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.max_successive_merges: 0 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.optimize_filters_for_hits: 0 2024-09-13T12:47:13.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.paranoid_file_checks: 0 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.force_consistency_checks: 1 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.report_bg_io_stats: 0 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.ttl: 2592000 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.periodic_compaction_seconds: 0 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.enable_blob_files: false 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.min_blob_size: 0 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.blob_file_size: 268435456 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.blob_compression_type: NoCompression 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.enable_blob_garbage_collection: false 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-13T12:47:13.324 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.blob_file_starting_level: 0 2024-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: 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-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 1df5062f-d656-4f75-8e58-a8f4d9a26145 2024-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726231633073755, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726231633075083, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85553, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 259, "table_properties": {"data_size": 83700, "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": 10145, "raw_average_key_size": 46, "raw_value_size": 77840, "raw_average_value_size": 357, "num_data_blocks": 11, "num_entries": 218, "num_filter_entries": 218, "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": 1726231633, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "1df5062f-d656-4f75-8e58-a8f4d9a26145", "db_session_id": "2N2WSC26HTSLGBS00ABR", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: EVENT_LOG_v1 {"time_micros": 1726231633075208, "job": 1, "event": "recovery_finished"} 2024-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: 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-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x5565db942e00 2024-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: DB pointer 0x5565dba42000 2024-09-13T12:47:13.325 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.stdout: ** DB Stats ** 2024-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.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-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.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-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.stdout: 2024-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.stdout: ** Compaction Stats [default] ** 2024-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.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-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-13T12:47:13.326 INFO:journalctl@ceph.mon.a.smithi070.stdout: L0 2/0 85.41 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 95.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.stdout: Sum 2/0 85.41 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 95.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.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 95.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.stdout: 2024-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.stdout: ** Compaction Stats [default] ** 2024-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.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-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.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 95.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.stdout: 2024-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.stdout: 2024-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-13T12:47:13.327 INFO:journalctl@ceph.mon.a.smithi070.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.stdout: AddFile(Keys): cumulative 0, interval 0 2024-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.stdout: Cumulative compaction: 0.00 GB write, 18.84 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.stdout: Interval compaction: 0.00 GB write, 18.84 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.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-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.stdout: Block cache BinnedLRUCache@0x5565db912850#2 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 8e-06 secs_since: 0 2024-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.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-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.stdout: 2024-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.stdout: ** File Read Latency Histogram By Level [default] ** 2024-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: starting mon.a rank 0 at public addrs [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] at bind addrs [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: mon.a@-1(???) e1 preinit fsid 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: mon.a@-1(???).mds e1 new map 2024-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: mon.a@-1(???).mds e1 print_map 2024-09-13T12:47:13.328 INFO:journalctl@ceph.mon.a.smithi070.stdout: e1 2024-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.stdout: btime 2024-09-13T12:47:08:409223+0000 2024-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.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-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.stdout: legacy client fscid: -1 2024-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.stdout: 2024-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.stdout: No filesystems configured 2024-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 bash[29666]: cac558c719ec6a2ee58a36878ab59ed1a3172cd6af40f75963a9491b724bbf4a 2024-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 systemd[1]: Started Ceph mon.a for 0c10639a-71ce-11ef-bceb-c7b262605968. 2024-09-13T12:47:13.329 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: mon.a is new leader, mons a in quorum (ranks 0) 2024-09-13T12:47:13.330 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: monmap epoch 1 2024-09-13T12:47:13.330 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: fsid 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:47:13.330 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: last_changed 2024-09-13T12:47:05.470739+0000 2024-09-13T12:47:13.330 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: created 2024-09-13T12:47:05.470739+0000 2024-09-13T12:47:13.330 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: min_mon_release 19 (squid) 2024-09-13T12:47:13.330 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: election_strategy: 1 2024-09-13T12:47:13.330 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-13T12:47:13.330 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: fsmap 2024-09-13T12:47:13.330 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: osdmap e1: 0 total, 0 up, 0 in 2024-09-13T12:47:13.330 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:13 smithi070 ceph-mon[29685]: mgrmap e1: no daemons active 2024-09-13T12:47:14.078 INFO:teuthology.orchestra.run.smithi070.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-13T12:47:14.100 INFO:teuthology.orchestra.run.smithi070.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-13T12:47:14.100 INFO:teuthology.orchestra.run.smithi070.stdout:Creating mgr... 2024-09-13T12:47:14.100 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-13T12:47:14.101 INFO:teuthology.orchestra.run.smithi070.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-13T12:47:14.351 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mgr.a 2024-09-13T12:47:14.351 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Failed to reset failed state of unit ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mgr.a.service: Unit ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mgr.a.service not loaded. 2024-09-13T12:47:14.497 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-0c10639a-71ce-11ef-bceb-c7b262605968.target.wants/ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mgr.a.service → /etc/systemd/system/ceph-0c10639a-71ce-11ef-bceb-c7b262605968@.service. 2024-09-13T12:47:14.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:14 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/2161181612' entity='client.admin' 2024-09-13T12:47:15.047 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:14 smithi070 podman[29896]: 2024-09-13 12:47:14.965645681 +0000 UTC m=+0.346085217 container start c0d35ac2635ec01c45540fa28512a24ba61dd2b8406b662c51def6736585cf76 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux ) 2024-09-13T12:47:15.447 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:15 smithi070 bash[29896]: c0d35ac2635ec01c45540fa28512a24ba61dd2b8406b662c51def6736585cf76 2024-09-13T12:47:15.449 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-13T12:47:15.450 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout disabled 2024-09-13T12:47:15.450 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-13T12:47:15.450 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-13T12:47:15.450 INFO:teuthology.orchestra.run.smithi070.stdout:firewalld.service is not enabled 2024-09-13T12:47:15.450 INFO:teuthology.orchestra.run.smithi070.stdout:Not possible to enable service . firewalld.service is not available 2024-09-13T12:47:15.450 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-13T12:47:15.450 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout disabled 2024-09-13T12:47:15.450 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-13T12:47:15.450 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-13T12:47:15.450 INFO:teuthology.orchestra.run.smithi070.stdout:firewalld.service is not enabled 2024-09-13T12:47:15.450 INFO:teuthology.orchestra.run.smithi070.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-09-13T12:47:15.450 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for mgr to start... 2024-09-13T12:47:15.450 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for mgr... 2024-09-13T12:47:15.451 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:15 smithi070 systemd[1]: Started Ceph mgr.a for 0c10639a-71ce-11ef-bceb-c7b262605968. 2024-09-13T12:47:15.868 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:15 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/3674669134' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-13T12:47:16.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-13T12:47:16.169 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "fsid": "0c10639a-71ce-11ef-bceb-c7b262605968", 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "health": { 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 0 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "a" 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-13T12:47:16.170 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-09-13T12:47:16.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-13T12:47:16.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T12:47:16.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-13T12:47:16.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-13T12:47:16.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:16.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-13T12:47:16.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T12:47:16.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-13T12:47:16.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-13T12:47:16.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-13T12:47:16.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-13T12:47:16.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-13T12:47:16.171 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-13T12:47:16.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:16.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-13T12:47:16.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-13T12:47:16.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-13T12:47:16.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-13T12:47:16.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-13T12:47:16.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-13T12:47:16.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-13T12:47:16.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-13T12:47:16.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-13T12:47:16.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:16.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-13T12:47:16.172 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T12:47:16.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "btime": "2024-09-13T12:47:08:409223+0000", 2024-09-13T12:47:16.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-13T12:47:16.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-13T12:47:16.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:16.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-13T12:47:16.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-13T12:47:16.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-13T12:47:16.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-13T12:47:16.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-13T12:47:16.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-13T12:47:16.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "restful" 2024-09-13T12:47:16.173 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-13T12:47:16.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T12:47:16.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:16.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-13T12:47:16.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T12:47:16.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "modified": "2024-09-13T12:47:08.409838+0000", 2024-09-13T12:47:16.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T12:47:16.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:16.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-13T12:47:16.174 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-13T12:47:16.174 INFO:teuthology.orchestra.run.smithi070.stdout:mgr not available, waiting (1/15)... 2024-09-13T12:47:18.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:18 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/631952110' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-13T12:47:19.246 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-13T12:47:19.246 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-13T12:47:19.246 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "fsid": "0c10639a-71ce-11ef-bceb-c7b262605968", 2024-09-13T12:47:19.246 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "health": { 2024-09-13T12:47:19.246 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-13T12:47:19.246 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-13T12:47:19.246 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-13T12:47:19.246 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:19.246 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-13T12:47:19.247 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-13T12:47:19.247 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 0 2024-09-13T12:47:19.254 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-13T12:47:19.254 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-13T12:47:19.254 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "a" 2024-09-13T12:47:19.254 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-13T12:47:19.254 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2024-09-13T12:47:19.254 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-13T12:47:19.254 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T12:47:19.254 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-13T12:47:19.255 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-13T12:47:19.255 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:19.255 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-13T12:47:19.255 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T12:47:19.255 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-13T12:47:19.255 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-13T12:47:19.255 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-13T12:47:19.255 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-13T12:47:19.255 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-13T12:47:19.255 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-13T12:47:19.255 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:19.255 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-13T12:47:19.255 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-13T12:47:19.256 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-13T12:47:19.256 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-13T12:47:19.256 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-13T12:47:19.256 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-13T12:47:19.256 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-13T12:47:19.256 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-13T12:47:19.256 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-13T12:47:19.256 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:19.256 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-13T12:47:19.256 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T12:47:19.256 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "btime": "2024-09-13T12:47:08:409223+0000", 2024-09-13T12:47:19.256 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-13T12:47:19.256 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-13T12:47:19.257 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:19.257 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-13T12:47:19.257 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-13T12:47:19.257 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-13T12:47:19.257 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-13T12:47:19.257 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-13T12:47:19.257 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-13T12:47:19.257 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "restful" 2024-09-13T12:47:19.257 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-13T12:47:19.257 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T12:47:19.257 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:19.257 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-13T12:47:19.257 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T12:47:19.258 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "modified": "2024-09-13T12:47:08.409838+0000", 2024-09-13T12:47:19.258 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T12:47:19.258 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:19.258 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-13T12:47:19.258 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-13T12:47:19.258 INFO:teuthology.orchestra.run.smithi070.stdout:mgr not available, waiting (2/15)... 2024-09-13T12:47:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:20 smithi070 ceph-mon[29685]: Activating manager daemon a 2024-09-13T12:47:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:20 smithi070 ceph-mon[29685]: mgrmap e2: a(active, starting, since 0.00299185s) 2024-09-13T12:47:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:20 smithi070 ceph-mon[29685]: from='mgr.14100 172.21.15.70:0/1194480657' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-13T12:47:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:20 smithi070 ceph-mon[29685]: from='mgr.14100 172.21.15.70:0/1194480657' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-13T12:47:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:20 smithi070 ceph-mon[29685]: from='mgr.14100 172.21.15.70:0/1194480657' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-13T12:47:20.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:20 smithi070 ceph-mon[29685]: from='mgr.14100 172.21.15.70:0/1194480657' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:47:20.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:20 smithi070 ceph-mon[29685]: from='mgr.14100 172.21.15.70:0/1194480657' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-13T12:47:20.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:20 smithi070 ceph-mon[29685]: Manager daemon a is now available 2024-09-13T12:47:20.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:20 smithi070 ceph-mon[29685]: from='mgr.14100 172.21.15.70:0/1194480657' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-13T12:47:20.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:20 smithi070 ceph-mon[29685]: from='mgr.14100 172.21.15.70:0/1194480657' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-13T12:47:20.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:20 smithi070 ceph-mon[29685]: from='mgr.14100 172.21.15.70:0/1194480657' entity='mgr.a' 2024-09-13T12:47:20.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:20 smithi070 ceph-mon[29685]: from='mgr.14100 172.21.15.70:0/1194480657' entity='mgr.a' 2024-09-13T12:47:20.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:20 smithi070 ceph-mon[29685]: from='mgr.14100 172.21.15.70:0/1194480657' entity='mgr.a' 2024-09-13T12:47:22.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:21 smithi070 ceph-mon[29685]: mgrmap e3: a(active, since 1.00739s) 2024-09-13T12:47:23.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:22 smithi070 ceph-mon[29685]: mgrmap e4: a(active, since 2s) 2024-09-13T12:47:24.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:24 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/723453839' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-13T12:47:30.813 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-13T12:47:30.814 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-13T12:47:30.814 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "fsid": "0c10639a-71ce-11ef-bceb-c7b262605968", 2024-09-13T12:47:30.814 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "health": { 2024-09-13T12:47:30.814 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-13T12:47:30.814 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-13T12:47:30.814 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-13T12:47:30.814 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:30.814 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-13T12:47:30.814 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-13T12:47:30.814 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 0 2024-09-13T12:47:30.814 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-13T12:47:30.815 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-13T12:47:30.815 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "a" 2024-09-13T12:47:30.815 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-13T12:47:30.815 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "quorum_age": 11, 2024-09-13T12:47:30.815 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-13T12:47:30.815 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T12:47:30.815 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-13T12:47:30.815 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-13T12:47:30.815 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:30.815 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-13T12:47:30.815 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T12:47:30.815 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-13T12:47:30.815 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-13T12:47:30.816 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-13T12:47:30.816 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-13T12:47:30.816 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-13T12:47:30.816 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-13T12:47:30.816 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:30.816 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-13T12:47:30.816 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-13T12:47:30.816 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "btime": "2024-09-13T12:47:08:409223+0000", 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:30.817 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "restful" 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ], 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "modified": "2024-09-13T12:47:08.409838+0000", 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-13T12:47:30.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout }, 2024-09-13T12:47:30.819 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-13T12:47:30.819 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-13T12:47:30.819 INFO:teuthology.orchestra.run.smithi070.stdout:mgr is available 2024-09-13T12:47:33.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:33 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/2699659915' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-13T12:47:33.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:33 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/2699659915' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-13T12:47:33.774 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-13T12:47:33.775 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout [global] 2024-09-13T12:47:33.775 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout fsid = 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:47:33.775 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-13T12:47:33.775 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.70:3300,v1:172.21.15.70:6789] 2024-09-13T12:47:33.775 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-13T12:47:33.775 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-13T12:47:33.776 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-13T12:47:33.776 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-13T12:47:33.776 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-13T12:47:33.776 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-13T12:47:33.776 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-13T12:47:33.777 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 2024-09-13T12:47:33.777 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout [osd] 2024-09-13T12:47:33.777 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-13T12:47:33.777 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-13T12:47:33.777 INFO:teuthology.orchestra.run.smithi070.stdout:Enabling cephadm module... 2024-09-13T12:47:34.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:34 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/2079002336' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-13T12:47:34.734 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:34 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: ignoring --setuser ceph since I am not root 2024-09-13T12:47:34.734 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:34 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: ignoring --setgroup ceph since I am not root 2024-09-13T12:47:35.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:35 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/2079002336' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-13T12:47:35.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:35 smithi070 ceph-mon[29685]: mgrmap e5: a(active, since 14s) 2024-09-13T12:47:36.757 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:36 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/2832335014' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-13T12:47:36.786 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-13T12:47:36.786 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-13T12:47:36.786 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-13T12:47:36.786 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-13T12:47:36.786 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-13T12:47:36.786 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-13T12:47:36.786 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for the mgr to restart... 2024-09-13T12:47:36.786 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for mgr epoch 5... 2024-09-13T12:47:39.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:39 smithi070 ceph-mon[29685]: Active manager daemon a restarted 2024-09-13T12:47:39.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:39 smithi070 ceph-mon[29685]: Activating manager daemon a 2024-09-13T12:47:39.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:39 smithi070 ceph-mon[29685]: osdmap e2: 0 total, 0 up, 0 in 2024-09-13T12:47:39.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:39 smithi070 ceph-mon[29685]: mgrmap e6: a(active, starting, since 0.00352132s) 2024-09-13T12:47:39.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:39 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:47:39.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:39 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-13T12:47:39.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:39 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-13T12:47:39.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:39 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-13T12:47:39.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:39 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-13T12:47:39.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:39 smithi070 ceph-mon[29685]: Manager daemon a is now available 2024-09-13T12:47:40.933 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-13T12:47:40.933 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-13T12:47:40.933 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-13T12:47:40.933 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-13T12:47:40.933 INFO:teuthology.orchestra.run.smithi070.stdout:mgr epoch 5 is available 2024-09-13T12:47:40.934 INFO:teuthology.orchestra.run.smithi070.stdout:Setting orchestrator backend to cephadm... 2024-09-13T12:47:41.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:41.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:41.316 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-mon[29685]: Found migration_current of "None". Setting to last migration. 2024-09-13T12:47:41.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:41.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:41.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:47:41.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:47:41.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-13T12:47:41.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-13T12:47:41.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-mon[29685]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-13T12:47:41.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-mon[29685]: mgrmap e7: a(active, since 1.00541s) 2024-09-13T12:47:41.317 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-mon[29685]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-13T12:47:41.669 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: 2024-09-13T12:47:41.473+0000 7fc9d9a76640 -1 log_channel(cephadm) log [ERR] : [13/Sep/2024:12:47:41] ENGINE Error in HTTPServer.serve 2024-09-13T12:47:41.670 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: Traceback (most recent call last): 2024-09-13T12:47:41.670 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-13T12:47:41.670 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: self._connections.run(self.expiration_interval) 2024-09-13T12:47:41.670 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-13T12:47:41.670 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: self._run(expiration_interval) 2024-09-13T12:47:41.670 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-13T12:47:41.670 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: new_conn = self._from_server_socket(self.server.socket) 2024-09-13T12:47:41.670 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-13T12:47:41.670 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-13T12:47:41.671 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-13T12:47:41.671 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: s = self.context.wrap_socket( 2024-09-13T12:47:41.671 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-13T12:47:41.671 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: return self.sslsocket_class._create( 2024-09-13T12:47:41.671 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-13T12:47:41.671 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: self.do_handshake() 2024-09-13T12:47:41.671 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-13T12:47:41.671 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: self._sslobj.do_handshake() 2024-09-13T12:47:41.671 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-13T12:47:41.671 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:41 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: 2024-09-13T12:47:42.405 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:42 smithi070 ceph-mon[29685]: [13/Sep/2024:12:47:41] ENGINE Bus STARTING 2024-09-13T12:47:42.405 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:42 smithi070 ceph-mon[29685]: [13/Sep/2024:12:47:41] ENGINE Serving on https://172.21.15.70:7150 2024-09-13T12:47:42.405 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:42 smithi070 ceph-mon[29685]: [13/Sep/2024:12:47:41] ENGINE Error in HTTPServer.serve 2024-09-13T12:47:42.405 INFO:journalctl@ceph.mon.a.smithi070.stdout: Traceback (most recent call last): 2024-09-13T12:47:42.405 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-13T12:47:42.405 INFO:journalctl@ceph.mon.a.smithi070.stdout: self._connections.run(self.expiration_interval) 2024-09-13T12:47:42.405 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-13T12:47:42.406 INFO:journalctl@ceph.mon.a.smithi070.stdout: self._run(expiration_interval) 2024-09-13T12:47:42.406 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-13T12:47:42.406 INFO:journalctl@ceph.mon.a.smithi070.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-13T12:47:42.406 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-13T12:47:42.406 INFO:journalctl@ceph.mon.a.smithi070.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-13T12:47:42.406 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-13T12:47:42.406 INFO:journalctl@ceph.mon.a.smithi070.stdout: s = self.context.wrap_socket( 2024-09-13T12:47:42.406 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-13T12:47:42.406 INFO:journalctl@ceph.mon.a.smithi070.stdout: return self.sslsocket_class._create( 2024-09-13T12:47:42.406 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-13T12:47:42.406 INFO:journalctl@ceph.mon.a.smithi070.stdout: self.do_handshake() 2024-09-13T12:47:42.406 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-13T12:47:42.406 INFO:journalctl@ceph.mon.a.smithi070.stdout: self._sslobj.do_handshake() 2024-09-13T12:47:42.407 INFO:journalctl@ceph.mon.a.smithi070.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-13T12:47:42.407 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:42 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:42.407 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:42 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:47:42.407 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:42 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:47:43.220 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-mon[29685]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:47:43.220 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-mon[29685]: [13/Sep/2024:12:47:41] ENGINE Serving on http://172.21.15.70:8765 2024-09-13T12:47:43.220 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-mon[29685]: [13/Sep/2024:12:47:41] ENGINE Bus STARTED 2024-09-13T12:47:43.220 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-mon[29685]: mgrmap e8: a(active, since 2s) 2024-09-13T12:47:43.220 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-13T12:47:43.221 INFO:teuthology.orchestra.run.smithi070.stdout:Generating ssh key... 2024-09-13T12:47:44.092 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: Generating public/private rsa key pair. 2024-09-13T12:47:44.093 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: Your identification has been saved in /tmp/tmp_95kuaru/key 2024-09-13T12:47:44.093 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: Your public key has been saved in /tmp/tmp_95kuaru/key.pub 2024-09-13T12:47:44.093 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: The key fingerprint is: 2024-09-13T12:47:44.093 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: SHA256:WfATRdNqgIgacZhlEwPftW2hq0MSCEahvNUrE5Bj4sg ceph-0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:47:44.093 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: The key's randomart image is: 2024-09-13T12:47:44.093 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: +---[RSA 3072]----+ 2024-09-13T12:47:44.093 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: |o==*Bo .o.oo+. | 2024-09-13T12:47:44.093 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: |====o+...*.o .. | 2024-09-13T12:47:44.093 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: |B.o=o.. o *. . | 2024-09-13T12:47:44.093 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: |.E+ ... = .o | 2024-09-13T12:47:44.093 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: | . o... S . | 2024-09-13T12:47:44.094 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: | oo . | 2024-09-13T12:47:44.094 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: | o | 2024-09-13T12:47:44.094 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: | . | 2024-09-13T12:47:44.094 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: | | 2024-09-13T12:47:44.094 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:43 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: +----[SHA256]-----+ 2024-09-13T12:47:44.398 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:44 smithi070 ceph-mon[29685]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:47:44.398 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:44 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:44.398 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:44 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:45.279 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:45 smithi070 ceph-mon[29685]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:47:45.279 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:45 smithi070 ceph-mon[29685]: Generating ssh key... 2024-09-13T12:47:45.590 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCug9cubtNAvV+xVlzUvyDz7tgV48FzvJW12sAAhhaZ9MA93/pD6Kbsuya+ofwr5p1xGv2UIsePzXkwMxEdf5yoFLxRHY2wXGsE312lE3TFiOf0zBlQ8fZ0x70wUo7am2QSCiu7rX/ac2f03/UU7iJ8E9mC0rvBt9m1nEdDcq+/OfaIcA5e9WIfLtNApZloZ1o4qH9B6oeXRUEyswF4IsIq3/+QFOBAIaaklAogB2rqdNsypLoMQhcWfM8drM2RVftDgiiA3vSozVcQ+t82JRMqOUK9Cawx2mrzMuxj69V7rkfpP00xl0VxyFdawXpYMv/7xNVRUIaJIxAJWo8H/QWxKa3c2JsIBd1ujwvRH/KUEbRZ8iMQIe8RDlAnzCYtRSe0ml0pCMV6GaNyR2LDuHebFjd3/tE8WMys/SsbuMoXav4904SOF8mEQJRzJjLHD4Wy4MEcfOAUVnuAYcvRHrdY0fDZgSbWevScnsNRy8T2FL6CqnIM6dOHFqPMqMTt5rE= ceph-0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:47:45.591 INFO:teuthology.orchestra.run.smithi070.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-13T12:47:45.591 INFO:teuthology.orchestra.run.smithi070.stdout:Adding key to root@localhost authorized_keys... 2024-09-13T12:47:45.597 INFO:teuthology.orchestra.run.smithi070.stdout:Adding host smithi070... 2024-09-13T12:47:46.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:46 smithi070 ceph-mon[29685]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:47:47.156 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:47 smithi070 ceph-mon[29685]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi070", "addr": "172.21.15.70", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:47:48.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:48 smithi070 ceph-mon[29685]: Deploying cephadm binary to smithi070 2024-09-13T12:47:49.840 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout Added host 'smithi070' with addr '172.21.15.70' 2024-09-13T12:47:49.840 INFO:teuthology.orchestra.run.smithi070.stdout:Deploying unmanaged mon service... 2024-09-13T12:47:50.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:50 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:50.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:50 smithi070 ceph-mon[29685]: Added host smithi070 2024-09-13T12:47:50.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:50 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:47:51.048 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-13T12:47:51.048 INFO:teuthology.orchestra.run.smithi070.stdout:Deploying unmanaged mgr service... 2024-09-13T12:47:51.749 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:51 smithi070 ceph-mon[29685]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:47:51.749 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:51 smithi070 ceph-mon[29685]: Saving service mon spec with placement count:5 2024-09-13T12:47:51.749 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:51 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:52.766 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:52 smithi070 ceph-mon[29685]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:47:52.766 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:52 smithi070 ceph-mon[29685]: Saving service mgr spec with placement count:2 2024-09-13T12:47:52.766 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:52 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:52.766 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:52 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:53.026 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-13T12:47:54.842 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:54 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:54.842 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:54 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/1551168199' entity='client.admin' 2024-09-13T12:47:55.348 INFO:teuthology.orchestra.run.smithi070.stdout:Enabling the dashboard module... 2024-09-13T12:47:56.024 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:55 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/4281792240' entity='client.admin' 2024-09-13T12:47:57.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:56 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:57.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:56 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/3364550327' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-13T12:47:57.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:56 smithi070 ceph-mon[29685]: from='mgr.14118 172.21.15.70:0/3645806350' entity='mgr.a' 2024-09-13T12:47:57.169 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:56 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: ignoring --setuser ceph since I am not root 2024-09-13T12:47:57.170 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:47:56 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: ignoring --setgroup ceph since I am not root 2024-09-13T12:47:58.135 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:57 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/3364550327' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-13T12:47:58.135 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:57 smithi070 ceph-mon[29685]: mgrmap e9: a(active, since 17s) 2024-09-13T12:47:58.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:47:58 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/20399316' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-13T12:47:59.695 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-13T12:47:59.695 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-09-13T12:47:59.695 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-13T12:47:59.695 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-09-13T12:47:59.695 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-13T12:47:59.695 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-13T12:47:59.695 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for the mgr to restart... 2024-09-13T12:47:59.696 INFO:teuthology.orchestra.run.smithi070.stdout:Waiting for mgr epoch 9... 2024-09-13T12:48:02.360 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:02 smithi070 ceph-mon[29685]: Active manager daemon a restarted 2024-09-13T12:48:02.361 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:02 smithi070 ceph-mon[29685]: Activating manager daemon a 2024-09-13T12:48:02.361 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:02 smithi070 ceph-mon[29685]: osdmap e3: 0 total, 0 up, 0 in 2024-09-13T12:48:02.361 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:02 smithi070 ceph-mon[29685]: mgrmap e10: a(active, starting, since 0.00348643s) 2024-09-13T12:48:02.361 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:02 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:48:02.361 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:02 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2024-09-13T12:48:02.361 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:02 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2024-09-13T12:48:02.361 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:02 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2024-09-13T12:48:02.361 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:02 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2024-09-13T12:48:02.361 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:02 smithi070 ceph-mon[29685]: Manager daemon a is now available 2024-09-13T12:48:03.289 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:48:03.289 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2024-09-13T12:48:03.289 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2024-09-13T12:48:03.290 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-mon[29685]: [13/Sep/2024:12:48:02] ENGINE Bus STARTING 2024-09-13T12:48:03.290 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-mon[29685]: mgrmap e11: a(active, since 1.00555s) 2024-09-13T12:48:03.290 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: 2024-09-13T12:48:03.170+0000 7f90b68ae640 -1 log_channel(cephadm) log [ERR] : [13/Sep/2024:12:48:03] ENGINE Error in HTTPServer.serve 2024-09-13T12:48:03.290 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: Traceback (most recent call last): 2024-09-13T12:48:03.290 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-13T12:48:03.290 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: self._connections.run(self.expiration_interval) 2024-09-13T12:48:03.290 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-13T12:48:03.290 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: self._run(expiration_interval) 2024-09-13T12:48:03.290 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-13T12:48:03.290 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: new_conn = self._from_server_socket(self.server.socket) 2024-09-13T12:48:03.291 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-13T12:48:03.291 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-13T12:48:03.291 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-13T12:48:03.291 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: s = self.context.wrap_socket( 2024-09-13T12:48:03.291 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-13T12:48:03.291 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: return self.sslsocket_class._create( 2024-09-13T12:48:03.291 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-13T12:48:03.291 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: self.do_handshake() 2024-09-13T12:48:03.291 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-13T12:48:03.291 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: self._sslobj.do_handshake() 2024-09-13T12:48:03.291 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-13T12:48:03.291 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:48:03 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: 2024-09-13T12:48:03.887 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout { 2024-09-13T12:48:03.887 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-09-13T12:48:03.887 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-13T12:48:03.887 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout } 2024-09-13T12:48:03.887 INFO:teuthology.orchestra.run.smithi070.stdout:mgr epoch 9 is available 2024-09-13T12:48:03.887 INFO:teuthology.orchestra.run.smithi070.stdout:Using certmgr to generate dashboard self-signed certificate... 2024-09-13T12:48:04.337 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:04 smithi070 ceph-mon[29685]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-13T12:48:04.337 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:04 smithi070 ceph-mon[29685]: from='client.14154 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-13T12:48:04.337 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:04 smithi070 ceph-mon[29685]: [13/Sep/2024:12:48:03] ENGINE Serving on http://172.21.15.70:8765 2024-09-13T12:48:04.337 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:04 smithi070 ceph-mon[29685]: [13/Sep/2024:12:48:03] ENGINE Serving on https://172.21.15.70:7150 2024-09-13T12:48:04.337 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:04 smithi070 ceph-mon[29685]: [13/Sep/2024:12:48:03] ENGINE Bus STARTED 2024-09-13T12:48:04.337 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:04 smithi070 ceph-mon[29685]: [13/Sep/2024:12:48:03] ENGINE Error in HTTPServer.serve 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: Traceback (most recent call last): 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: self._connections.run(self.expiration_interval) 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: self._run(expiration_interval) 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: new_conn = self._from_server_socket(self.server.socket) 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: s = self.context.wrap_socket( 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: return self.sslsocket_class._create( 2024-09-13T12:48:04.338 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-13T12:48:04.339 INFO:journalctl@ceph.mon.a.smithi070.stdout: self.do_handshake() 2024-09-13T12:48:04.339 INFO:journalctl@ceph.mon.a.smithi070.stdout: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-13T12:48:04.339 INFO:journalctl@ceph.mon.a.smithi070.stdout: self._sslobj.do_handshake() 2024-09-13T12:48:04.339 INFO:journalctl@ceph.mon.a.smithi070.stdout: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-13T12:48:05.365 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:05 smithi070 ceph-mon[29685]: mgrmap e12: a(active, since 2s) 2024-09-13T12:48:05.365 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:05.365 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:05 smithi070 ceph-mon[29685]: from='client.14162 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:48:05.365 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:05.610 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+zCCAuOgAwIBAgIUCozNXQMH6CjqF11EdIRIDQq/7JUwDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI0MDkxMzEyNDgwNVoXDTM0\nMDkxNDEyNDgwNVowFzEVMBMGA1UEAwwMMTcyLjIxLjE1LjcwMIICIjANBgkqhkiG\n9w0BAQEFAAOCAg8AMIICCgKCAgEAkRsCOV8TvsTaJkhWASN45e/442hc0KAC/GxE\nKYzwF5UzpqJ474Ma6w4jbrjtJiWFz6WlP6/9o1FfNcMcHIIBjplz2aPFvuleiXP9\np3frlvRJIuosinoH9e3Gbek9IaqMWIp7e0hENf8PQbuxQ+U+r+i45R/N9EYFaZYk\na4ymfwSWXJjhfoo2ZUF7R1PUuu8Mq7blqcmTaHGAUc2QHaXB3ICKJc1EMLnCnkvt\n+jN1uyLqIEcmnyH7O+tgL1aPHHKj5DyjH0ECaPo3oF/YFLM8Px4SNz0mvkPWS55O\nWHdP5cJg8CVzSaiRoMLoaGkyZE3BWOE0bii8xx3vLHOEDBAAY1MAYgB5RmJnEJwx\n91oOz31r6+g8OjJUXeVJASFclz/IGgfoKgYVfKKpoCHCBqn+lExxIermqi4tKfY2\nOQnVkxkcPxmGm9fK2DrUhvBzBTDnGX+5R3yAqXbh40FvyyPNfTfosvz0ICmU86MI\n1NULcD6s4ueuEiU6UqIG8IhqhQX+pbhyWWHGQ3IKzAuNorDuDMbfACAxsKzFVCo/\neoS5lF6fpVyPpAAB4HNLRDKCgIUDxOmogEgm4mIbhaOXsZct83OEHmGAsLDh1bTb\n2RzG9LvBCmLxpnaYjOspN6tHGoiBtieTySidZIaRQR6FOgYh8MBvSuwiGsT0tr1B\nC38VA4cCAwEAAaM/MD0wLQYDVR0RBCYwJIIJc21pdGhpMDcwghFkYXNoYm9hcmRf\nc2VydmVyc4cErBUPRjAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQA+\n4UxgN/F68x1S4v8SnwfAzSzDJdJOkg+cc9A2yz6qr2Z0HYiB2Qpjcdqv8jVW7imq\nZUzhup0G/N/NKmaqS2OuQ5jvNMiz0Xdzp57yl7rEnmi9XQWCCmlVRneeCKG45+07\nK34XTjM88mLyflD4Ci9Q8dbJlQJijgHiZ/naM0DgkH/Npw+x9fm8kDXk/3faQJVf\nbVv5g3c1+eZodNoWJgPYBDpqdS2iL5A+G3BaHnGiWPuGPEKaF/ha7V5odPDK9ihd\n601RrfzKXjH3gJchH1Qr8aSSRqeiFnRMV9aC1/w3QH+TcagHxZF663HO8nKvuaCK\nVSLyGo83zpGP8Qu3PQgYGC3c3oIc/9RFFgsX6QNbCSWq+Y+YXeEThOrZ8VwHwBMX\n3nuWZeEX1Llb9Yvdsk0VVhkjIV4gFkK4lEjOn8WtpE1edVs0rO2FaPXyw+OKfn30\nqJy7opdED3vnGGqDwzU56YA5LxuNrzRt6/yWIrR7n9rk3oGQB7FzmVMM3z/lhY+k\nP05GKRPF1K974hPjFCRi4d0ksTy3TFHAVBmYP0WFjO2J5Ca78N8ciinpTzFY042M\n4esMcowyz3NTZd9xGSESsn50YdmaqxGKKxLC4anu/rAT3FgmNhFdP61SaBhyPYHN\nvmOC99oBG93CaOvJlGCHgaXVoN8gTWTa7Ar5zveQ1g==\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKAIBAAKCAgEAkRsCOV8TvsTaJkhWASN45e/442hc0KAC/GxEKYzwF5UzpqJ4\n74Ma6w4jbrjtJiWFz6WlP6/9o1FfNcMcHIIBjplz2aPFvuleiXP9p3frlvRJIuos\ninoH9e3Gbek9IaqMWIp7e0hENf8PQbuxQ+U+r+i45R/N9EYFaZYka4ymfwSWXJjh\nfoo2ZUF7R1PUuu8Mq7blqcmTaHGAUc2QHaXB3ICKJc1EMLnCnkvt+jN1uyLqIEcm\nnyH7O+tgL1aPHHKj5DyjH0ECaPo3oF/YFLM8Px4SNz0mvkPWS55OWHdP5cJg8CVz\nSaiRoMLoaGkyZE3BWOE0bii8xx3vLHOEDBAAY1MAYgB5RmJnEJwx91oOz31r6+g8\nOjJUXeVJASFclz/IGgfoKgYVfKKpoCHCBqn+lExxIermqi4tKfY2OQnVkxkcPxmG\nm9fK2DrUhvBzBTDnGX+5R3yAqXbh40FvyyPNfTfosvz0ICmU86MI1NULcD6s4ueu\nEiU6UqIG8IhqhQX+pbhyWWHGQ3IKzAuNorDuDMbfACAxsKzFVCo/eoS5lF6fpVyP\npAAB4HNLRDKCgIUDxOmogEgm4mIbhaOXsZct83OEHmGAsLDh1bTb2RzG9LvBCmLx\npnaYjOspN6tHGoiBtieTySidZIaRQR6FOgYh8MBvSuwiGsT0tr1BC38VA4cCAwEA\nAQKCAgBAnBMQcpo7HjG4TAsndKD3WTOsJiL1rdnGhXqQObYJ+iBGeR96HhlVQjVa\nrrLBgoGjZLFAu18nYisPqDGTK/v/f6pK5RY+nHDAqUnvUIEw9NK/3h85BX8X7Oim\ntezHWcYmAnta+GGO3WPws98JSUDxWKFDPDcbJjZwvi63SKg19FfzIQt+qZHw4gg/\nST92gMxWhRib0ip1ndwyEGK0IMNCKGXa0RwkygGzNEHhXxpz2eb/uk6jGqFgG7z3\nNwZ/9zesf6duWib1kTxFh4eSKACSZhRcTjk7DL+Vagaec3m65yL8quA7kvhM6ZxM\nKVMLwGdv6M7Mogz0aAq/8yt/p3xUEdTcsnZjq8Fj6VXd20s4rNSoi4Re09WgWlKr\nsMjRNooOzzj44u+LE5/RKD2k+e3rguH0vapvQ3gc8lWYI4jl5FvcwgGvSIStcByz\n03sPrmsb3OsxcuqDe+nRWKDluPoLtTvSlsWoWz/3u2b0oMNjxkayxTufDkRbn02t\nKWkZlltqXfd8NkGK7ngBaExvZRGaPADFO5BnFMI8zd6oMm4x/02SfEAxt8V+eICq\nIldeH1PORX2L0jkGPHqKsML+3M2hl1GkVhD9PcwVahir04CIpH6jQd5kshVsz1ND\n9p8E6X1RFXxoSK/0egvGPxEfrkzkmevBUgXK/7s+b15R5PZWqQKCAQEAwRNLC3Rl\n9Yj7HT4jA3+V/NrjPsJTu2wOd9tLKldmzrFJNr4sdBSdRRYPc+qT4R2eq4g+mgNi\n9RMmT8EqqiCUF3u6JIIHmPOBLFrJQCNCvu8l6922F5d0+tmimr5LBNiiyYGp1eSG\n1BoylfrsJvPcLlQ4FdN8NLosnu0P0HxJi/llb8PSJFxgJZtT/cbDZJxulO1G/9WF\nsW763Ey7zZiEj0cFdwWZtK1enobCQOj1JEt4+cR7FoBxPauY67MK/Utkds8xrYpQ\npy+wwW5WDgg7v7hZDTQloZ76J2XPa/sNDVDKm1EDuHCGBr06YMaUIB++kBu9LdO7\nVZ+xma9bEj0C1QKCAQEAwGV7vs1ca1Bulh+arEK1UA8CJqpMBFkMXA7imNtlPgdj\n1qYiRtNDMKtS6vax/yX9MUV2UR1GqZVkR28YYe0ct7oS11yhI8b/JVYY9aupjW3q\n0nFMpjmawSIYU8m4HDirhT4GOdvkCQ54oMYlmd7dtvbwAL2/MvW9kNUTwg+Ybfd0\nMHzR4aSnytf9U/g7HDMqL8b9FitQqx/fltrtGLb1meNpo2LX7gL6po0XweFEXUpV\nLBmp1fC57RUkVd5I9jA6z+/a0Vb6lzmhTd/7BAn7w1dp27RW5wLCZ0MMpHBwDFyl\ny/27J9UYc+CfHi5jyp1hKP95Bh6aws2wXJg7PDbC6wKCAQAss0/Ljh5Q827X/VvT\n4oUSLocwL4N9P+41l6LWYbfeoLMHpo3aLi+fIBVhy+yC0P28TuXXeHM/tDhJfLpo\n+vPuX+nfq+8gXTgJ0dcIL2GznOCVtBYFbj5aGWsJEoeBzroZlxh/+dGxZ4NQr/Be\nsFTIsRzvCLCX8IaGIPJpXW0VqB7w+lA7tNtZuZV/irYQJBuCBVFLx96VDtGrkWRl\nnCsMlO/R94z3hLAEWcS9jHG8/nA6u1+X/RK6qXDVGPWxYPQYga3JtN0pZ+QvVGE+\nDG/w2jhb0zfnLExUNMEKCeyiqZLO1LncyMhu5P6QC0meCltvN8zbwEp972QJ5cxa\n858lAoIBAFJj4x8tUFOAaSsOs6zrEDwNgU1PhigifiF6Gl19Lpjmj0GfeXQ9Cjvw\nUhzeshDiks+jwGwyDk2W9Q+GKrnc0Xx4SZNCTptEn4S8nwmtjnlLRdECxeE1L+lf\nEW3oJ1imiAUSL5ZdbQTX1p563CVNhELS8qpOl29aPuij5scm6I7G9lHBUhu/6D78\nSbbIyX9lBb7aBw2UVQJDLvuqGviHeRuCgH2AWZnKWs4yA6d6MU2GBH1TLCC66tP1\nRs8i1rneo4DiZSFajwttmX8A2Ly9Dbx0VZfJXaGl09xmoSZWJBWXI0T9DkWbgtI0\nsc857HAa/z2QUaJmPr4HWWv9oPhDNysCggEBAJUFBhBSVCUpYdNwxXsOcZe2yFBk\nxIbtpM7hHjqRJLkeVmzmsv/pnVVpyQTIoL5tvpZiUFbMBZhOAMgzQsrN5e5dkS/l\ncAMd15OI/OoKKSA6cGx9C35SBhkQa3bFOiH5JbRgf/cbRSd1uNrA1TZXGunbNbD+\nZZJ4gUfa+mI/K9W8OvNwSO0325aCX9pKSVsMc4fAGe0qc3/l3v2kjokEUYKGm3Ct\nJhv1vxh7NV4Kxz1v3YF8BpoB18U/o9DwzO3gSjI6sQqsQfP054anJdIpeyta4FKu\nsqFSzFH2TtTKpKhIkzCTNyNKY5hHNHJCZoxGJGPqnpd2vnCMrXkcqI2fPGs=\n-----END RSA PRIVATE KEY-----\n"} 2024-09-13T12:48:06.818 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout SSL certificate updated 2024-09-13T12:48:07.498 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:07 smithi070 ceph-mon[29685]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:48:07.499 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:07 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:08.605 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2024-09-13T12:48:08.606 INFO:teuthology.orchestra.run.smithi070.stdout:Creating initial admin user... 2024-09-13T12:48:09.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:09 smithi070 ceph-mon[29685]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:48:09.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:09 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:09.976 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$/6vXOhIMMB79kHOqHi6hAuCVa1vK4SG0ylgNHVeCHnYS2225UwbeK", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726231689, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-13T12:48:09.976 INFO:teuthology.orchestra.run.smithi070.stdout:Fetching dashboard port number... 2024-09-13T12:48:10.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:10 smithi070 ceph-mon[29685]: from='client.14168 -' 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-09-13T12:48:10.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:10 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:11.066 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stdout 8443 2024-09-13T12:48:11.076 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-09-13T12:48:11.076 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout disabled 2024-09-13T12:48:11.083 INFO:teuthology.orchestra.run.smithi070.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-09-13T12:48:11.083 INFO:teuthology.orchestra.run.smithi070.stdout:systemctl: stdout inactive 2024-09-13T12:48:11.083 INFO:teuthology.orchestra.run.smithi070.stdout:firewalld.service is not enabled 2024-09-13T12:48:11.083 INFO:teuthology.orchestra.run.smithi070.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-13T12:48:11.085 INFO:teuthology.orchestra.run.smithi070.stdout:Ceph Dashboard is now available at: 2024-09-13T12:48:11.085 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:48:11.085 INFO:teuthology.orchestra.run.smithi070.stdout: URL: https://smithi070.front.sepia.ceph.com:8443/ 2024-09-13T12:48:11.085 INFO:teuthology.orchestra.run.smithi070.stdout: User: admin 2024-09-13T12:48:11.085 INFO:teuthology.orchestra.run.smithi070.stdout: Password: egsexx3vlq 2024-09-13T12:48:11.085 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:48:11.086 INFO:teuthology.orchestra.run.smithi070.stdout:Saving cluster configuration to /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config directory 2024-09-13T12:48:11.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:11 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/3111449792' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-13T12:48:12.247 INFO:teuthology.orchestra.run.smithi070.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-13T12:48:12.247 INFO:teuthology.orchestra.run.smithi070.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-13T12:48:12.247 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:48:12.247 INFO:teuthology.orchestra.run.smithi070.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-13T12:48:12.247 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:48:12.247 INFO:teuthology.orchestra.run.smithi070.stdout:Or, if you are only running a single cluster on this host: 2024-09-13T12:48:12.247 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:48:12.247 INFO:teuthology.orchestra.run.smithi070.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-13T12:48:12.248 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:48:12.248 INFO:teuthology.orchestra.run.smithi070.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-13T12:48:12.248 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:48:12.248 INFO:teuthology.orchestra.run.smithi070.stdout: ceph telemetry on 2024-09-13T12:48:12.248 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:48:12.248 INFO:teuthology.orchestra.run.smithi070.stdout:For more information see: 2024-09-13T12:48:12.248 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:48:12.248 INFO:teuthology.orchestra.run.smithi070.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-13T12:48:12.248 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:48:12.248 INFO:teuthology.orchestra.run.smithi070.stdout:Bootstrap complete. 2024-09-13T12:48:12.289 INFO:tasks.cephadm:Fetching config... 2024-09-13T12:48:12.289 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:48:12.289 DEBUG:teuthology.orchestra.run.smithi070:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-13T12:48:12.305 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-13T12:48:12.305 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:48:12.305 DEBUG:teuthology.orchestra.run.smithi070:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-13T12:48:12.361 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-13T12:48:12.361 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:48:12.361 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd if=/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/keyring of=/dev/stdout 2024-09-13T12:48:12.426 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-13T12:48:12.426 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:48:12.426 DEBUG:teuthology.orchestra.run.smithi070:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-13T12:48:12.482 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-13T12:48:12.483 DEBUG:teuthology.orchestra.run.smithi070:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCug9cubtNAvV+xVlzUvyDz7tgV48FzvJW12sAAhhaZ9MA93/pD6Kbsuya+ofwr5p1xGv2UIsePzXkwMxEdf5yoFLxRHY2wXGsE312lE3TFiOf0zBlQ8fZ0x70wUo7am2QSCiu7rX/ac2f03/UU7iJ8E9mC0rvBt9m1nEdDcq+/OfaIcA5e9WIfLtNApZloZ1o4qH9B6oeXRUEyswF4IsIq3/+QFOBAIaaklAogB2rqdNsypLoMQhcWfM8drM2RVftDgiiA3vSozVcQ+t82JRMqOUK9Cawx2mrzMuxj69V7rkfpP00xl0VxyFdawXpYMv/7xNVRUIaJIxAJWo8H/QWxKa3c2JsIBd1ujwvRH/KUEbRZ8iMQIe8RDlAnzCYtRSe0ml0pCMV6GaNyR2LDuHebFjd3/tE8WMys/SsbuMoXav4904SOF8mEQJRzJjLHD4Wy4MEcfOAUVnuAYcvRHrdY0fDZgSbWevScnsNRy8T2FL6CqnIM6dOHFqPMqMTt5rE= ceph-0c10639a-71ce-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-13T12:48:12.557 INFO:teuthology.orchestra.run.smithi070.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCug9cubtNAvV+xVlzUvyDz7tgV48FzvJW12sAAhhaZ9MA93/pD6Kbsuya+ofwr5p1xGv2UIsePzXkwMxEdf5yoFLxRHY2wXGsE312lE3TFiOf0zBlQ8fZ0x70wUo7am2QSCiu7rX/ac2f03/UU7iJ8E9mC0rvBt9m1nEdDcq+/OfaIcA5e9WIfLtNApZloZ1o4qH9B6oeXRUEyswF4IsIq3/+QFOBAIaaklAogB2rqdNsypLoMQhcWfM8drM2RVftDgiiA3vSozVcQ+t82JRMqOUK9Cawx2mrzMuxj69V7rkfpP00xl0VxyFdawXpYMv/7xNVRUIaJIxAJWo8H/QWxKa3c2JsIBd1ujwvRH/KUEbRZ8iMQIe8RDlAnzCYtRSe0ml0pCMV6GaNyR2LDuHebFjd3/tE8WMys/SsbuMoXav4904SOF8mEQJRzJjLHD4Wy4MEcfOAUVnuAYcvRHrdY0fDZgSbWevScnsNRy8T2FL6CqnIM6dOHFqPMqMTt5rE= ceph-0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:48:12.570 DEBUG:teuthology.orchestra.run.smithi086:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCug9cubtNAvV+xVlzUvyDz7tgV48FzvJW12sAAhhaZ9MA93/pD6Kbsuya+ofwr5p1xGv2UIsePzXkwMxEdf5yoFLxRHY2wXGsE312lE3TFiOf0zBlQ8fZ0x70wUo7am2QSCiu7rX/ac2f03/UU7iJ8E9mC0rvBt9m1nEdDcq+/OfaIcA5e9WIfLtNApZloZ1o4qH9B6oeXRUEyswF4IsIq3/+QFOBAIaaklAogB2rqdNsypLoMQhcWfM8drM2RVftDgiiA3vSozVcQ+t82JRMqOUK9Cawx2mrzMuxj69V7rkfpP00xl0VxyFdawXpYMv/7xNVRUIaJIxAJWo8H/QWxKa3c2JsIBd1ujwvRH/KUEbRZ8iMQIe8RDlAnzCYtRSe0ml0pCMV6GaNyR2LDuHebFjd3/tE8WMys/SsbuMoXav4904SOF8mEQJRzJjLHD4Wy4MEcfOAUVnuAYcvRHrdY0fDZgSbWevScnsNRy8T2FL6CqnIM6dOHFqPMqMTt5rE= ceph-0c10639a-71ce-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-13T12:48:12.687 INFO:teuthology.orchestra.run.smithi086.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCug9cubtNAvV+xVlzUvyDz7tgV48FzvJW12sAAhhaZ9MA93/pD6Kbsuya+ofwr5p1xGv2UIsePzXkwMxEdf5yoFLxRHY2wXGsE312lE3TFiOf0zBlQ8fZ0x70wUo7am2QSCiu7rX/ac2f03/UU7iJ8E9mC0rvBt9m1nEdDcq+/OfaIcA5e9WIfLtNApZloZ1o4qH9B6oeXRUEyswF4IsIq3/+QFOBAIaaklAogB2rqdNsypLoMQhcWfM8drM2RVftDgiiA3vSozVcQ+t82JRMqOUK9Cawx2mrzMuxj69V7rkfpP00xl0VxyFdawXpYMv/7xNVRUIaJIxAJWo8H/QWxKa3c2JsIBd1ujwvRH/KUEbRZ8iMQIe8RDlAnzCYtRSe0ml0pCMV6GaNyR2LDuHebFjd3/tE8WMys/SsbuMoXav4904SOF8mEQJRzJjLHD4Wy4MEcfOAUVnuAYcvRHrdY0fDZgSbWevScnsNRy8T2FL6CqnIM6dOHFqPMqMTt5rE= ceph-0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:48:12.701 DEBUG:teuthology.orchestra.run.smithi105:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCug9cubtNAvV+xVlzUvyDz7tgV48FzvJW12sAAhhaZ9MA93/pD6Kbsuya+ofwr5p1xGv2UIsePzXkwMxEdf5yoFLxRHY2wXGsE312lE3TFiOf0zBlQ8fZ0x70wUo7am2QSCiu7rX/ac2f03/UU7iJ8E9mC0rvBt9m1nEdDcq+/OfaIcA5e9WIfLtNApZloZ1o4qH9B6oeXRUEyswF4IsIq3/+QFOBAIaaklAogB2rqdNsypLoMQhcWfM8drM2RVftDgiiA3vSozVcQ+t82JRMqOUK9Cawx2mrzMuxj69V7rkfpP00xl0VxyFdawXpYMv/7xNVRUIaJIxAJWo8H/QWxKa3c2JsIBd1ujwvRH/KUEbRZ8iMQIe8RDlAnzCYtRSe0ml0pCMV6GaNyR2LDuHebFjd3/tE8WMys/SsbuMoXav4904SOF8mEQJRzJjLHD4Wy4MEcfOAUVnuAYcvRHrdY0fDZgSbWevScnsNRy8T2FL6CqnIM6dOHFqPMqMTt5rE= ceph-0c10639a-71ce-11ef-bceb-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-13T12:48:12.848 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:12 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/601000486' entity='client.admin' 2024-09-13T12:48:13.040 INFO:teuthology.orchestra.run.smithi105.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCug9cubtNAvV+xVlzUvyDz7tgV48FzvJW12sAAhhaZ9MA93/pD6Kbsuya+ofwr5p1xGv2UIsePzXkwMxEdf5yoFLxRHY2wXGsE312lE3TFiOf0zBlQ8fZ0x70wUo7am2QSCiu7rX/ac2f03/UU7iJ8E9mC0rvBt9m1nEdDcq+/OfaIcA5e9WIfLtNApZloZ1o4qH9B6oeXRUEyswF4IsIq3/+QFOBAIaaklAogB2rqdNsypLoMQhcWfM8drM2RVftDgiiA3vSozVcQ+t82JRMqOUK9Cawx2mrzMuxj69V7rkfpP00xl0VxyFdawXpYMv/7xNVRUIaJIxAJWo8H/QWxKa3c2JsIBd1ujwvRH/KUEbRZ8iMQIe8RDlAnzCYtRSe0ml0pCMV6GaNyR2LDuHebFjd3/tE8WMys/SsbuMoXav4904SOF8mEQJRzJjLHD4Wy4MEcfOAUVnuAYcvRHrdY0fDZgSbWevScnsNRy8T2FL6CqnIM6dOHFqPMqMTt5rE= ceph-0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:48:13.055 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-13T12:48:13.310 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:48:14.795 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-13T12:48:14.795 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-13T12:48:15.292 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:48:15.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:15 smithi070 ceph-mon[29685]: mgrmap e13: a(active, since 12s) 2024-09-13T12:48:15.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:15 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/3610413698' entity='client.admin' 2024-09-13T12:48:17.033 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:16 smithi070 ceph-mon[29685]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:48:17.033 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:16 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:17.033 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:16 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:17.033 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:16 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:17.033 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:16 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi070", "name": "osd_memory_target"} : dispatch 2024-09-13T12:48:17.033 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:16 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:17.033 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:16 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:48:17.063 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi086 2024-09-13T12:48:17.064 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-13T12:48:17.064 DEBUG:teuthology.orchestra.run.smithi086:> dd of=/etc/ceph/ceph.conf 2024-09-13T12:48:17.083 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-13T12:48:17.083 DEBUG:teuthology.orchestra.run.smithi086:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T12:48:17.141 INFO:tasks.cephadm:Adding host smithi086 to orchestrator... 2024-09-13T12:48:17.141 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph orch host add smithi086 2024-09-13T12:48:17.395 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:48:18.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:17 smithi070 ceph-mon[29685]: Updating smithi070:/etc/ceph/ceph.conf 2024-09-13T12:48:18.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:17 smithi070 ceph-mon[29685]: Updating smithi070:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:18.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:17 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:18.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:17 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:18.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:17 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:18.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:17 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:48:18.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:17 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:18.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:17 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:48:18.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:17 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:19.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:18 smithi070 ceph-mon[29685]: Updating smithi070:/etc/ceph/ceph.client.admin.keyring 2024-09-13T12:48:19.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:18 smithi070 ceph-mon[29685]: Updating smithi070:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T12:48:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:19 smithi070 ceph-mon[29685]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi086", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:48:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:19 smithi070 ceph-mon[29685]: Deploying cephadm binary to smithi086 2024-09-13T12:48:21.190 INFO:teuthology.orchestra.run.smithi070.stdout:Added host 'smithi086' with addr '172.21.15.86' 2024-09-13T12:48:21.774 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-13T12:48:22.014 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:48:22.384 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:22 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:22.384 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:22 smithi070 ceph-mon[29685]: Added host smithi086 2024-09-13T12:48:22.384 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:22 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:48:22.384 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:22 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:22.385 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:22 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:22.653 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:48:22.653 INFO:teuthology.orchestra.run.smithi070.stdout:[{"addr": "172.21.15.70", "hostname": "smithi070", "labels": [], "status": ""}, {"addr": "172.21.15.86", "hostname": "smithi086", "labels": [], "status": ""}] 2024-09-13T12:48:23.281 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi105 2024-09-13T12:48:23.281 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-09-13T12:48:23.281 DEBUG:teuthology.orchestra.run.smithi105:> dd of=/etc/ceph/ceph.conf 2024-09-13T12:48:23.300 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-09-13T12:48:23.300 DEBUG:teuthology.orchestra.run.smithi105:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T12:48:23.358 INFO:tasks.cephadm:Adding host smithi105 to orchestrator... 2024-09-13T12:48:23.358 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph orch host add smithi105 2024-09-13T12:48:23.597 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:48:23.809 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:23 smithi070 ceph-mon[29685]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:23.809 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:23 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:23.809 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:23 smithi070 ceph-mon[29685]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:48:25.838 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:25 smithi070 ceph-mon[29685]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:25.838 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:25 smithi070 ceph-mon[29685]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi105", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:48:25.838 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:25 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:25.838 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:25 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:25.838 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:25 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:25.838 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:25 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:25.838 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:25 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi086", "name": "osd_memory_target"} : dispatch 2024-09-13T12:48:25.838 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:25 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:25.839 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:25 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:48:26.822 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:26 smithi070 ceph-mon[29685]: Deploying cephadm binary to smithi105 2024-09-13T12:48:26.823 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:26 smithi070 ceph-mon[29685]: Updating smithi086:/etc/ceph/ceph.conf 2024-09-13T12:48:26.823 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:26 smithi070 ceph-mon[29685]: Updating smithi086:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:26.823 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:26 smithi070 ceph-mon[29685]: Updating smithi086:/etc/ceph/ceph.client.admin.keyring 2024-09-13T12:48:26.823 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:26 smithi070 ceph-mon[29685]: Updating smithi086:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T12:48:27.386 INFO:teuthology.orchestra.run.smithi070.stdout:Added host 'smithi105' with addr '172.21.15.105' 2024-09-13T12:48:27.945 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:27 smithi070 ceph-mon[29685]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:27.946 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:27.946 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:27.946 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:27.946 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:27.946 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:48:27.946 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:27.947 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph orch host ls --format=json 2024-09-13T12:48:28.189 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:48:28.791 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:48:28.791 INFO:teuthology.orchestra.run.smithi070.stdout:[{"addr": "172.21.15.70", "hostname": "smithi070", "labels": [], "status": ""}, {"addr": "172.21.15.86", "hostname": "smithi086", "labels": [], "status": ""}, {"addr": "172.21.15.105", "hostname": "smithi105", "labels": [], "status": ""}] 2024-09-13T12:48:29.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:28 smithi070 ceph-mon[29685]: Added host smithi105 2024-09-13T12:48:29.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:28 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:29.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:28 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:29.496 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-13T12:48:29.497 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph osd crush tunables default 2024-09-13T12:48:29.735 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:48:30.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:29 smithi070 ceph-mon[29685]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:30.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:29 smithi070 ceph-mon[29685]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:48:30.978 INFO:teuthology.orchestra.run.smithi070.stderr:adjusted tunables profile to default 2024-09-13T12:48:31.282 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:30 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/1718467652' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-13T12:48:31.620 INFO:tasks.cephadm:Adding mon.a on smithi070 2024-09-13T12:48:31.621 INFO:tasks.cephadm:Adding mon.b on smithi086 2024-09-13T12:48:31.621 INFO:tasks.cephadm:Adding mon.c on smithi105 2024-09-13T12:48:31.623 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph orch apply mon '3;smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;smithi105:172.21.15.105=c' 2024-09-13T12:48:31.874 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:32.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:31 smithi070 ceph-mon[29685]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:32.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:31 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/1718467652' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-13T12:48:32.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:31 smithi070 ceph-mon[29685]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T12:48:32.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:32.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:32.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:32.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:32.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:smithi105", "name": "osd_memory_target"} : dispatch 2024-09-13T12:48:32.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:32.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:48:32.578 INFO:teuthology.orchestra.run.smithi105.stdout:Scheduled mon update... 2024-09-13T12:48:33.136 DEBUG:teuthology.orchestra.run.smithi086:mon.b> sudo journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.b.service 2024-09-13T12:48:33.139 DEBUG:teuthology.orchestra.run.smithi105:mon.c> sudo journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.c.service 2024-09-13T12:48:33.141 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-13T12:48:33.141 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-13T12:48:33.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: Updating smithi105:/etc/ceph/ceph.conf 2024-09-13T12:48:33.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: Updating smithi105:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:33.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: Updating smithi105:/etc/ceph/ceph.client.admin.keyring 2024-09-13T12:48:33.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: Updating smithi105:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T12:48:33.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:33.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:33.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:33.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:33.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:48:33.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:33.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:48:33.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:33.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:48:33.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:33.849 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:34.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:33 smithi070 ceph-mon[29685]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:34.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:33 smithi070 ceph-mon[29685]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;smithi105:172.21.15.105=c", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:48:34.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:33 smithi070 ceph-mon[29685]: Saving service mon spec with placement smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;smithi105:172.21.15.105=c;count:3 2024-09-13T12:48:34.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:33 smithi070 ceph-mon[29685]: Deploying daemon mon.c on smithi105 2024-09-13T12:48:34.698 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:48:34.698 INFO:teuthology.orchestra.run.smithi105.stdout:{"epoch":1,"fsid":"0c10639a-71ce-11ef-bceb-c7b262605968","modified":"2024-09-13T12:47:05.470739Z","created":"2024-09-13T12:47:05.470739Z","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.70:3300","nonce":0},{"type":"v1","addr":"172.21.15.70:6789","nonce":0}]},"addr":"172.21.15.70:6789/0","public_addr":"172.21.15.70:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-13T12:48:34.698 INFO:teuthology.orchestra.run.smithi105.stderr:dumped monmap epoch 1 2024-09-13T12:48:35.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:34 smithi070 ceph-mon[29685]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:35.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:34 smithi070 ceph-mon[29685]: from='client.? 172.21.15.105:0/3311605210' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T12:48:36.838 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-13T12:48:36.838 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-13T12:48:37.166 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T12:48:37.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:37 smithi070 ceph-mon[29685]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:37.859 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:48:37.859 INFO:teuthology.orchestra.run.smithi105.stdout:{"epoch":1,"fsid":"0c10639a-71ce-11ef-bceb-c7b262605968","modified":"2024-09-13T12:47:05.470739Z","created":"2024-09-13T12:47:05.470739Z","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.70:3300","nonce":0},{"type":"v1","addr":"172.21.15.70:6789","nonce":0}]},"addr":"172.21.15.70:6789/0","public_addr":"172.21.15.70:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-13T12:48:37.859 INFO:teuthology.orchestra.run.smithi105.stderr:dumped monmap epoch 1 2024-09-13T12:48:38.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:38 smithi070 ceph-mon[29685]: from='client.? 172.21.15.105:0/3956898029' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T12:48:38.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:38 smithi105 systemd[1]: Started Ceph mon.c for 0c10639a-71ce-11ef-bceb-c7b262605968. 2024-09-13T12:48:39.429 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-13T12:48:39.430 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-13T12:48:39.684 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T12:48:43.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:43.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:48:43.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: mon.a calling monitor election 2024-09-13T12:48:43.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:43.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: mon.c calling monitor election 2024-09-13T12:48:43.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:43.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: monmap epoch 2 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: fsid 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: last_changed 2024-09-13T12:48:38.575540+0000 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: created 2024-09-13T12:47:05.470739+0000 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: min_mon_release 19 (squid) 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: election_strategy: 1 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: 1: [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] mon.c 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: fsmap 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: mgrmap e13: a(active, since 41s) 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: overall HEALTH_OK 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:43.922 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:43.922 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:48:43.922 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:43.941 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:48:43.941 INFO:teuthology.orchestra.run.smithi105.stdout:{"epoch":2,"fsid":"0c10639a-71ce-11ef-bceb-c7b262605968","modified":"2024-09-13T12:48:38.575540Z","created":"2024-09-13T12:47:05.470739Z","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.70:3300","nonce":0},{"type":"v1","addr":"172.21.15.70:6789","nonce":0}]},"addr":"172.21.15.70:6789/0","public_addr":"172.21.15.70:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:3300","nonce":0},{"type":"v1","addr":"172.21.15.105:6789","nonce":0}]},"addr":"172.21.15.105:6789/0","public_addr":"172.21.15.105:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-13T12:48:43.942 INFO:teuthology.orchestra.run.smithi105.stderr:dumped monmap epoch 2 2024-09-13T12:48:43.942 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:43.942 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.942 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:48:43.942 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.942 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: mon.a calling monitor election 2024-09-13T12:48:43.942 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.942 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:43.942 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: mon.c calling monitor election 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: monmap epoch 2 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: fsid 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: last_changed 2024-09-13T12:48:38.575540+0000 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: created 2024-09-13T12:47:05.470739+0000 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: min_mon_release 19 (squid) 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: election_strategy: 1 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-13T12:48:43.943 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: 1: [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] mon.c 2024-09-13T12:48:43.944 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: fsmap 2024-09-13T12:48:43.944 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T12:48:43.944 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: mgrmap e13: a(active, since 41s) 2024-09-13T12:48:43.944 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: overall HEALTH_OK 2024-09-13T12:48:43.944 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:43.944 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:43.944 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:43.944 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:48:43.944 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:44.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:44 smithi105 ceph-mon[33061]: Deploying daemon mon.b on smithi086 2024-09-13T12:48:44.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:44 smithi105 ceph-mon[33061]: from='client.? 172.21.15.105:0/2483484471' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T12:48:44.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:44 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:44.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:44 smithi070 ceph-mon[29685]: Deploying daemon mon.b on smithi086 2024-09-13T12:48:44.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:44 smithi070 ceph-mon[29685]: from='client.? 172.21.15.105:0/2483484471' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T12:48:44.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:44 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:45.544 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-13T12:48:45.544 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-13T12:48:45.800 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T12:48:45.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:45 smithi105 ceph-mon[33061]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:45.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:45 smithi070 ceph-mon[29685]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:46.444 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:48:46.444 INFO:teuthology.orchestra.run.smithi105.stdout:{"epoch":2,"fsid":"0c10639a-71ce-11ef-bceb-c7b262605968","modified":"2024-09-13T12:48:38.575540Z","created":"2024-09-13T12:47:05.470739Z","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.70:3300","nonce":0},{"type":"v1","addr":"172.21.15.70:6789","nonce":0}]},"addr":"172.21.15.70:6789/0","public_addr":"172.21.15.70:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:3300","nonce":0},{"type":"v1","addr":"172.21.15.105:6789","nonce":0}]},"addr":"172.21.15.105:6789/0","public_addr":"172.21.15.105:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-13T12:48:46.444 INFO:teuthology.orchestra.run.smithi105.stderr:dumped monmap epoch 2 2024-09-13T12:48:46.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:46 smithi105 ceph-mon[33061]: from='client.? 172.21.15.105:0/51309667' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T12:48:46.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:46 smithi070 ceph-mon[29685]: from='client.? 172.21.15.105:0/51309667' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T12:48:47.313 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:47 smithi086 ceph-mon[32985]: mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2024-09-13T12:48:47.313 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:47 smithi086 bash[32966]: 3d2b9f14f39a523bb82b796c1755943c37afaec0ffd028b0d96ba9bbb6df1a20 2024-09-13T12:48:47.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:47 smithi086 systemd[1]: Started Ceph mon.b for 0c10639a-71ce-11ef-bceb-c7b262605968. 2024-09-13T12:48:47.995 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-09-13T12:48:47.996 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph mon dump -f json 2024-09-13T12:48:48.257 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T12:48:52.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:48:52.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: mon.a calling monitor election 2024-09-13T12:48:52.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:52.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: mon.c calling monitor election 2024-09-13T12:48:52.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:52.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: mon.b calling monitor election 2024-09-13T12:48:52.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:52.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-13T12:48:52.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: monmap epoch 3 2024-09-13T12:48:52.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: fsid 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:48:52.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: last_changed 2024-09-13T12:48:47.293763+0000 2024-09-13T12:48:52.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: created 2024-09-13T12:47:05.470739+0000 2024-09-13T12:48:52.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: min_mon_release 19 (squid) 2024-09-13T12:48:52.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: election_strategy: 1 2024-09-13T12:48:52.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-13T12:48:52.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: 1: [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] mon.c 2024-09-13T12:48:52.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-13T12:48:52.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: fsmap 2024-09-13T12:48:52.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T12:48:52.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: mgrmap e13: a(active, since 50s) 2024-09-13T12:48:52.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: overall HEALTH_OK 2024-09-13T12:48:52.672 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:52.672 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:52.672 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:52.672 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:52 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:52.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:48:52.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: mon.a calling monitor election 2024-09-13T12:48:52.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:52.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: mon.c calling monitor election 2024-09-13T12:48:52.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:52.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: mon.b calling monitor election 2024-09-13T12:48:52.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: monmap epoch 3 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: fsid 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: last_changed 2024-09-13T12:48:47.293763+0000 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: created 2024-09-13T12:47:05.470739+0000 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: min_mon_release 19 (squid) 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: election_strategy: 1 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: 1: [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] mon.c 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-13T12:48:52.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: fsmap 2024-09-13T12:48:52.678 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T12:48:52.678 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: mgrmap e13: a(active, since 50s) 2024-09-13T12:48:52.678 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: overall HEALTH_OK 2024-09-13T12:48:52.678 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:52.678 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:52.678 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:52.678 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:52 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:52.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:48:52.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: mon.a calling monitor election 2024-09-13T12:48:52.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:48:52.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: mon.c calling monitor election 2024-09-13T12:48:52.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:52.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: mon.b calling monitor election 2024-09-13T12:48:52.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:52.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:52.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-09-13T12:48:52.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: monmap epoch 3 2024-09-13T12:48:52.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: fsid 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:48:52.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: last_changed 2024-09-13T12:48:47.293763+0000 2024-09-13T12:48:52.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: created 2024-09-13T12:47:05.470739+0000 2024-09-13T12:48:52.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: min_mon_release 19 (squid) 2024-09-13T12:48:52.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: election_strategy: 1 2024-09-13T12:48:52.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-13T12:48:52.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: 1: [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] mon.c 2024-09-13T12:48:52.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: 2: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-13T12:48:52.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: fsmap 2024-09-13T12:48:52.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: osdmap e4: 0 total, 0 up, 0 in 2024-09-13T12:48:52.859 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: mgrmap e13: a(active, since 50s) 2024-09-13T12:48:52.859 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: overall HEALTH_OK 2024-09-13T12:48:52.859 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:52.859 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:52.859 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:52.859 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:52 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:53.329 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:48:53.329 INFO:teuthology.orchestra.run.smithi105.stdout:{"epoch":3,"fsid":"0c10639a-71ce-11ef-bceb-c7b262605968","modified":"2024-09-13T12:48:47.293763Z","created":"2024-09-13T12:47:05.470739Z","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.70:3300","nonce":0},{"type":"v1","addr":"172.21.15.70:6789","nonce":0}]},"addr":"172.21.15.70:6789/0","public_addr":"172.21.15.70:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:3300","nonce":0},{"type":"v1","addr":"172.21.15.105:6789","nonce":0}]},"addr":"172.21.15.105:6789/0","public_addr":"172.21.15.105:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:3300","nonce":0},{"type":"v1","addr":"172.21.15.86:6789","nonce":0}]},"addr":"172.21.15.86:6789/0","public_addr":"172.21.15.86:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2024-09-13T12:48:53.329 INFO:teuthology.orchestra.run.smithi105.stderr:dumped monmap epoch 3 2024-09-13T12:48:53.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:53 smithi105 ceph-mon[33061]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:53.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:53 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:48:53.608 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:53 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:53.608 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:53 smithi105 ceph-mon[33061]: from='client.? 172.21.15.105:0/1997307554' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T12:48:53.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:53 smithi070 ceph-mon[29685]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:53.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:53 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:48:53.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:53 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:53.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:53 smithi070 ceph-mon[29685]: from='client.? 172.21.15.105:0/1997307554' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T12:48:53.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:53 smithi086 ceph-mon[32985]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:53.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:53 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:48:53.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:53 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:48:53.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:53 smithi086 ceph-mon[32985]: from='client.? 172.21.15.105:0/1997307554' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-13T12:48:54.041 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-13T12:48:54.041 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph config generate-minimal-conf 2024-09-13T12:48:54.300 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:48:54.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:54.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:48:54.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: Updating smithi070:/etc/ceph/ceph.conf 2024-09-13T12:48:54.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: Updating smithi086:/etc/ceph/ceph.conf 2024-09-13T12:48:54.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: Updating smithi105:/etc/ceph/ceph.conf 2024-09-13T12:48:54.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: Updating smithi086:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:54.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: Updating smithi105:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:54.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: Updating smithi070:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:54.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:48:54.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T12:48:54.671 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:48:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: Updating smithi070:/etc/ceph/ceph.conf 2024-09-13T12:48:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: Updating smithi086:/etc/ceph/ceph.conf 2024-09-13T12:48:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: Updating smithi105:/etc/ceph/ceph.conf 2024-09-13T12:48:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: Updating smithi086:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: Updating smithi105:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: Updating smithi070:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.859 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.859 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.859 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.859 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:48:54.859 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T12:48:54.859 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:54.888 INFO:teuthology.orchestra.run.smithi070.stdout:# minimal ceph.conf for 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:48:54.888 INFO:teuthology.orchestra.run.smithi070.stdout:[global] 2024-09-13T12:48:54.888 INFO:teuthology.orchestra.run.smithi070.stdout: fsid = 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:48:54.888 INFO:teuthology.orchestra.run.smithi070.stdout: mon_host = [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] [v2:172.21.15.105:3300/0,v1:172.21.15.105:6789/0] 2024-09-13T12:48:54.899 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.899 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.899 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.899 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.899 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:54.899 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:48:54.899 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: Updating smithi070:/etc/ceph/ceph.conf 2024-09-13T12:48:54.899 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: Updating smithi086:/etc/ceph/ceph.conf 2024-09-13T12:48:54.900 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: Updating smithi105:/etc/ceph/ceph.conf 2024-09-13T12:48:54.900 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: Updating smithi086:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:54.900 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: Updating smithi105:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:54.900 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: Updating smithi070:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:48:54.900 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.900 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.900 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.900 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.900 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.900 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.900 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.900 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.900 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.901 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.901 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:54.901 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:48:54.901 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T12:48:54.901 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:55.534 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:55 smithi070 ceph-mon[29685]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:55.534 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:55 smithi070 ceph-mon[29685]: Reconfiguring mon.a (unknown last config time)... 2024-09-13T12:48:55.534 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:55 smithi070 ceph-mon[29685]: Reconfiguring daemon mon.a on smithi070 2024-09-13T12:48:55.534 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:55 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/3533568653' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:55.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:55 smithi105 ceph-mon[33061]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:55.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:55 smithi105 ceph-mon[33061]: Reconfiguring mon.a (unknown last config time)... 2024-09-13T12:48:55.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:55 smithi105 ceph-mon[33061]: Reconfiguring daemon mon.a on smithi070 2024-09-13T12:48:55.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:55 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/3533568653' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:55.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:55 smithi086 ceph-mon[32985]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:55.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:55 smithi086 ceph-mon[32985]: Reconfiguring mon.a (unknown last config time)... 2024-09-13T12:48:55.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:55 smithi086 ceph-mon[32985]: Reconfiguring daemon mon.a on smithi070 2024-09-13T12:48:55.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:55 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/3533568653' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:56.172 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-13T12:48:56.172 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:48:56.173 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/etc/ceph/ceph.conf 2024-09-13T12:48:56.199 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:48:56.199 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T12:48:56.264 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-13T12:48:56.265 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/etc/ceph/ceph.conf 2024-09-13T12:48:56.292 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-13T12:48:56.292 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T12:48:56.358 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-09-13T12:48:56.358 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/etc/ceph/ceph.conf 2024-09-13T12:48:56.390 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-09-13T12:48:56.390 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-13T12:48:56.459 INFO:tasks.cephadm:Adding mgr.a on smithi070 2024-09-13T12:48:56.460 INFO:tasks.cephadm:Adding mgr.b on smithi086 2024-09-13T12:48:56.460 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph orch apply mgr '2;smithi070=a;smithi086=b' 2024-09-13T12:48:56.743 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T12:48:57.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:56 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:57.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:56 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:57.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:56 smithi105 ceph-mon[33061]: Reconfiguring mon.b (monmap changed)... 2024-09-13T12:48:57.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:56 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:48:57.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:56 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T12:48:57.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:56 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:57.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:56 smithi105 ceph-mon[33061]: Reconfiguring daemon mon.b on smithi086 2024-09-13T12:48:57.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:56 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:57.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:56 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:57.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:56 smithi070 ceph-mon[29685]: Reconfiguring mon.b (monmap changed)... 2024-09-13T12:48:57.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:56 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:48:57.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:56 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T12:48:57.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:56 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:57.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:56 smithi070 ceph-mon[29685]: Reconfiguring daemon mon.b on smithi086 2024-09-13T12:48:57.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:56 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:57.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:56 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:57.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:56 smithi086 ceph-mon[32985]: Reconfiguring mon.b (monmap changed)... 2024-09-13T12:48:57.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:56 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:48:57.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:56 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T12:48:57.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:56 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:57.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:56 smithi086 ceph-mon[32985]: Reconfiguring daemon mon.b on smithi086 2024-09-13T12:48:57.381 INFO:teuthology.orchestra.run.smithi105.stdout:Scheduled mgr update... 2024-09-13T12:48:58.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:57 smithi105 ceph-mon[33061]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:58.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:57 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:58.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:57 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:58.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:57 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:48:58.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:57 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T12:48:58.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:57 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:58.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:57 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:58.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:57 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:58.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:57 smithi070 ceph-mon[29685]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:58.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:57 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:58.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:57 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:58.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:57 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:48:58.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:57 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T12:48:58.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:57 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:58.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:57 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:58.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:57 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:58.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:57 smithi086 ceph-mon[32985]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:48:58.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:57 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:58.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:57 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:58.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:57 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:48:58.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:57 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T12:48:58.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:57 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:48:58.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:57 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:58.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:57 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:48:58.618 DEBUG:teuthology.orchestra.run.smithi086:mgr.b> sudo journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mgr.b.service 2024-09-13T12:48:58.621 DEBUG:tasks.cephadm:set 0 configs 2024-09-13T12:48:58.622 INFO:tasks.cephadm:Deploying OSDs... 2024-09-13T12:48:58.622 DEBUG:teuthology.orchestra.run.smithi070:> set -ex 2024-09-13T12:48:58.622 DEBUG:teuthology.orchestra.run.smithi070:> dd if=/scratch_devs of=/dev/stdout 2024-09-13T12:48:58.642 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-09-13T12:48:58.643 DEBUG:teuthology.orchestra.run.smithi070:> stat /dev/vg_nvme/lv_1 2024-09-13T12:48:58.701 INFO:teuthology.orchestra.run.smithi070.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-13T12:48:58.702 INFO:teuthology.orchestra.run.smithi070.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T12:48:58.702 INFO:teuthology.orchestra.run.smithi070.stdout:Device: 5h/5d Inode: 977 Links: 1 2024-09-13T12:48:58.702 INFO:teuthology.orchestra.run.smithi070.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T12:48:58.702 INFO:teuthology.orchestra.run.smithi070.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T12:48:58.702 INFO:teuthology.orchestra.run.smithi070.stdout:Access: 2024-09-13 12:48:15.588019836 +0000 2024-09-13T12:48:58.702 INFO:teuthology.orchestra.run.smithi070.stdout:Modify: 2024-09-13 12:43:06.255198087 +0000 2024-09-13T12:48:58.702 INFO:teuthology.orchestra.run.smithi070.stdout:Change: 2024-09-13 12:43:06.255198087 +0000 2024-09-13T12:48:58.702 INFO:teuthology.orchestra.run.smithi070.stdout: Birth: 2024-09-13 12:43:06.255198087 +0000 2024-09-13T12:48:58.703 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-13T12:48:58.770 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records in 2024-09-13T12:48:58.770 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records out 2024-09-13T12:48:58.770 INFO:teuthology.orchestra.run.smithi070.stderr:512 bytes copied, 0.000111352 s, 4.6 MB/s 2024-09-13T12:48:58.771 DEBUG:teuthology.orchestra.run.smithi070:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-13T12:48:58.831 DEBUG:teuthology.orchestra.run.smithi070:> stat /dev/vg_nvme/lv_2 2024-09-13T12:48:58.888 INFO:teuthology.orchestra.run.smithi070.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-13T12:48:58.889 INFO:teuthology.orchestra.run.smithi070.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T12:48:58.889 INFO:teuthology.orchestra.run.smithi070.stdout:Device: 5h/5d Inode: 959 Links: 1 2024-09-13T12:48:58.889 INFO:teuthology.orchestra.run.smithi070.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T12:48:58.889 INFO:teuthology.orchestra.run.smithi070.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T12:48:58.889 INFO:teuthology.orchestra.run.smithi070.stdout:Access: 2024-09-13 12:48:15.614019064 +0000 2024-09-13T12:48:58.889 INFO:teuthology.orchestra.run.smithi070.stdout:Modify: 2024-09-13 12:43:06.253198245 +0000 2024-09-13T12:48:58.889 INFO:teuthology.orchestra.run.smithi070.stdout:Change: 2024-09-13 12:43:06.253198245 +0000 2024-09-13T12:48:58.889 INFO:teuthology.orchestra.run.smithi070.stdout: Birth: 2024-09-13 12:43:06.253198245 +0000 2024-09-13T12:48:58.889 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-13T12:48:58.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:58 smithi086 ceph-mon[32985]: Reconfiguring mon.c (monmap changed)... 2024-09-13T12:48:58.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:58 smithi086 ceph-mon[32985]: Reconfiguring daemon mon.c on smithi105 2024-09-13T12:48:58.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:58 smithi086 ceph-mon[32985]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi070=a;smithi086=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:48:58.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:58 smithi086 ceph-mon[32985]: Saving service mgr spec with placement smithi070=a;smithi086=b;count:2 2024-09-13T12:48:58.954 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records in 2024-09-13T12:48:58.954 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records out 2024-09-13T12:48:58.954 INFO:teuthology.orchestra.run.smithi070.stderr:512 bytes copied, 0.000118503 s, 4.3 MB/s 2024-09-13T12:48:58.955 DEBUG:teuthology.orchestra.run.smithi070:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-13T12:48:59.013 DEBUG:teuthology.orchestra.run.smithi070:> stat /dev/vg_nvme/lv_3 2024-09-13T12:48:59.070 INFO:teuthology.orchestra.run.smithi070.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-13T12:48:59.070 INFO:teuthology.orchestra.run.smithi070.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T12:48:59.070 INFO:teuthology.orchestra.run.smithi070.stdout:Device: 5h/5d Inode: 972 Links: 1 2024-09-13T12:48:59.070 INFO:teuthology.orchestra.run.smithi070.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T12:48:59.070 INFO:teuthology.orchestra.run.smithi070.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T12:48:59.070 INFO:teuthology.orchestra.run.smithi070.stdout:Access: 2024-09-13 12:48:15.638018352 +0000 2024-09-13T12:48:59.070 INFO:teuthology.orchestra.run.smithi070.stdout:Modify: 2024-09-13 12:43:06.255198087 +0000 2024-09-13T12:48:59.070 INFO:teuthology.orchestra.run.smithi070.stdout:Change: 2024-09-13 12:43:06.255198087 +0000 2024-09-13T12:48:59.070 INFO:teuthology.orchestra.run.smithi070.stdout: Birth: 2024-09-13 12:43:06.255198087 +0000 2024-09-13T12:48:59.071 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-13T12:48:59.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:58 smithi105 ceph-mon[33061]: Reconfiguring mon.c (monmap changed)... 2024-09-13T12:48:59.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:58 smithi105 ceph-mon[33061]: Reconfiguring daemon mon.c on smithi105 2024-09-13T12:48:59.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:58 smithi105 ceph-mon[33061]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi070=a;smithi086=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:48:59.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:58 smithi105 ceph-mon[33061]: Saving service mgr spec with placement smithi070=a;smithi086=b;count:2 2024-09-13T12:48:59.134 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:58 smithi070 ceph-mon[29685]: Reconfiguring mon.c (monmap changed)... 2024-09-13T12:48:59.134 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:58 smithi070 ceph-mon[29685]: Reconfiguring daemon mon.c on smithi105 2024-09-13T12:48:59.134 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:58 smithi070 ceph-mon[29685]: from='client.14217 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi070=a;smithi086=b", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:48:59.134 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:58 smithi070 ceph-mon[29685]: Saving service mgr spec with placement smithi070=a;smithi086=b;count:2 2024-09-13T12:48:59.136 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records in 2024-09-13T12:48:59.136 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records out 2024-09-13T12:48:59.136 INFO:teuthology.orchestra.run.smithi070.stderr:512 bytes copied, 9.0729e-05 s, 5.6 MB/s 2024-09-13T12:48:59.138 DEBUG:teuthology.orchestra.run.smithi070:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-13T12:48:59.194 DEBUG:teuthology.orchestra.run.smithi070:> stat /dev/vg_nvme/lv_4 2024-09-13T12:48:59.250 INFO:teuthology.orchestra.run.smithi070.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-13T12:48:59.251 INFO:teuthology.orchestra.run.smithi070.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T12:48:59.251 INFO:teuthology.orchestra.run.smithi070.stdout:Device: 5h/5d Inode: 971 Links: 1 2024-09-13T12:48:59.251 INFO:teuthology.orchestra.run.smithi070.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T12:48:59.251 INFO:teuthology.orchestra.run.smithi070.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T12:48:59.251 INFO:teuthology.orchestra.run.smithi070.stdout:Access: 2024-09-13 12:48:15.663017611 +0000 2024-09-13T12:48:59.251 INFO:teuthology.orchestra.run.smithi070.stdout:Modify: 2024-09-13 12:43:06.254198166 +0000 2024-09-13T12:48:59.251 INFO:teuthology.orchestra.run.smithi070.stdout:Change: 2024-09-13 12:43:06.254198166 +0000 2024-09-13T12:48:59.251 INFO:teuthology.orchestra.run.smithi070.stdout: Birth: 2024-09-13 12:43:06.254198166 +0000 2024-09-13T12:48:59.252 DEBUG:teuthology.orchestra.run.smithi070:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-13T12:48:59.315 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records in 2024-09-13T12:48:59.315 INFO:teuthology.orchestra.run.smithi070.stderr:1+0 records out 2024-09-13T12:48:59.315 INFO:teuthology.orchestra.run.smithi070.stderr:512 bytes copied, 0.000112687 s, 4.5 MB/s 2024-09-13T12:48:59.316 DEBUG:teuthology.orchestra.run.smithi070:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-13T12:48:59.372 DEBUG:teuthology.orchestra.run.smithi086:> set -ex 2024-09-13T12:48:59.372 DEBUG:teuthology.orchestra.run.smithi086:> dd if=/scratch_devs of=/dev/stdout 2024-09-13T12:48:59.388 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-09-13T12:48:59.388 DEBUG:teuthology.orchestra.run.smithi086:> stat /dev/vg_nvme/lv_1 2024-09-13T12:48:59.443 INFO:teuthology.orchestra.run.smithi086.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-13T12:48:59.443 INFO:teuthology.orchestra.run.smithi086.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T12:48:59.443 INFO:teuthology.orchestra.run.smithi086.stdout:Device: 5h/5d Inode: 968 Links: 1 2024-09-13T12:48:59.443 INFO:teuthology.orchestra.run.smithi086.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T12:48:59.444 INFO:teuthology.orchestra.run.smithi086.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T12:48:59.444 INFO:teuthology.orchestra.run.smithi086.stdout:Access: 2024-09-13 12:48:46.764633168 +0000 2024-09-13T12:48:59.444 INFO:teuthology.orchestra.run.smithi086.stdout:Modify: 2024-09-13 12:43:05.761183120 +0000 2024-09-13T12:48:59.444 INFO:teuthology.orchestra.run.smithi086.stdout:Change: 2024-09-13 12:43:05.761183120 +0000 2024-09-13T12:48:59.444 INFO:teuthology.orchestra.run.smithi086.stdout: Birth: 2024-09-13 12:43:05.761183120 +0000 2024-09-13T12:48:59.444 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-13T12:48:59.509 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records in 2024-09-13T12:48:59.509 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records out 2024-09-13T12:48:59.509 INFO:teuthology.orchestra.run.smithi086.stderr:512 bytes copied, 0.000325404 s, 1.6 MB/s 2024-09-13T12:48:59.510 DEBUG:teuthology.orchestra.run.smithi086:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-13T12:48:59.567 DEBUG:teuthology.orchestra.run.smithi086:> stat /dev/vg_nvme/lv_2 2024-09-13T12:48:59.624 INFO:teuthology.orchestra.run.smithi086.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-13T12:48:59.624 INFO:teuthology.orchestra.run.smithi086.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T12:48:59.624 INFO:teuthology.orchestra.run.smithi086.stdout:Device: 5h/5d Inode: 981 Links: 1 2024-09-13T12:48:59.624 INFO:teuthology.orchestra.run.smithi086.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T12:48:59.624 INFO:teuthology.orchestra.run.smithi086.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T12:48:59.624 INFO:teuthology.orchestra.run.smithi086.stdout:Access: 2024-09-13 12:48:46.764633168 +0000 2024-09-13T12:48:59.624 INFO:teuthology.orchestra.run.smithi086.stdout:Modify: 2024-09-13 12:43:05.762183000 +0000 2024-09-13T12:48:59.624 INFO:teuthology.orchestra.run.smithi086.stdout:Change: 2024-09-13 12:43:05.762183000 +0000 2024-09-13T12:48:59.624 INFO:teuthology.orchestra.run.smithi086.stdout: Birth: 2024-09-13 12:43:05.762183000 +0000 2024-09-13T12:48:59.625 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-13T12:48:59.694 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records in 2024-09-13T12:48:59.694 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records out 2024-09-13T12:48:59.694 INFO:teuthology.orchestra.run.smithi086.stderr:512 bytes copied, 0.000230412 s, 2.2 MB/s 2024-09-13T12:48:59.696 DEBUG:teuthology.orchestra.run.smithi086:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-13T12:48:59.752 DEBUG:teuthology.orchestra.run.smithi086:> stat /dev/vg_nvme/lv_3 2024-09-13T12:48:59.808 INFO:teuthology.orchestra.run.smithi086.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-13T12:48:59.808 INFO:teuthology.orchestra.run.smithi086.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T12:48:59.808 INFO:teuthology.orchestra.run.smithi086.stdout:Device: 5h/5d Inode: 978 Links: 1 2024-09-13T12:48:59.808 INFO:teuthology.orchestra.run.smithi086.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T12:48:59.808 INFO:teuthology.orchestra.run.smithi086.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T12:48:59.808 INFO:teuthology.orchestra.run.smithi086.stdout:Access: 2024-09-13 12:48:46.765633146 +0000 2024-09-13T12:48:59.808 INFO:teuthology.orchestra.run.smithi086.stdout:Modify: 2024-09-13 12:43:05.762183000 +0000 2024-09-13T12:48:59.809 INFO:teuthology.orchestra.run.smithi086.stdout:Change: 2024-09-13 12:43:05.762183000 +0000 2024-09-13T12:48:59.809 INFO:teuthology.orchestra.run.smithi086.stdout: Birth: 2024-09-13 12:43:05.762183000 +0000 2024-09-13T12:48:59.809 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-13T12:48:59.872 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records in 2024-09-13T12:48:59.872 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records out 2024-09-13T12:48:59.872 INFO:teuthology.orchestra.run.smithi086.stderr:512 bytes copied, 0.00017775 s, 2.9 MB/s 2024-09-13T12:48:59.873 DEBUG:teuthology.orchestra.run.smithi086:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-13T12:48:59.930 DEBUG:teuthology.orchestra.run.smithi086:> stat /dev/vg_nvme/lv_4 2024-09-13T12:48:59.985 INFO:teuthology.orchestra.run.smithi086.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-13T12:48:59.985 INFO:teuthology.orchestra.run.smithi086.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T12:48:59.985 INFO:teuthology.orchestra.run.smithi086.stdout:Device: 5h/5d Inode: 970 Links: 1 2024-09-13T12:48:59.985 INFO:teuthology.orchestra.run.smithi086.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T12:48:59.986 INFO:teuthology.orchestra.run.smithi086.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T12:48:59.986 INFO:teuthology.orchestra.run.smithi086.stdout:Access: 2024-09-13 12:48:46.765633146 +0000 2024-09-13T12:48:59.986 INFO:teuthology.orchestra.run.smithi086.stdout:Modify: 2024-09-13 12:43:05.761183120 +0000 2024-09-13T12:48:59.986 INFO:teuthology.orchestra.run.smithi086.stdout:Change: 2024-09-13 12:43:05.761183120 +0000 2024-09-13T12:48:59.986 INFO:teuthology.orchestra.run.smithi086.stdout: Birth: 2024-09-13 12:43:05.761183120 +0000 2024-09-13T12:48:59.986 DEBUG:teuthology.orchestra.run.smithi086:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-13T12:49:00.046 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:59 smithi086 ceph-mon[32985]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:00.047 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:59 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:00.047 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:59 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:00.047 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:59 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:00.047 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:59 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:00.047 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:59 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:00.047 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:59 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:00.047 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:59 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T12:49:00.047 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:59 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-13T12:49:00.047 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:59 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T12:49:00.047 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:48:59 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:00.049 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records in 2024-09-13T12:49:00.049 INFO:teuthology.orchestra.run.smithi086.stderr:1+0 records out 2024-09-13T12:49:00.049 INFO:teuthology.orchestra.run.smithi086.stderr:512 bytes copied, 0.000171125 s, 3.0 MB/s 2024-09-13T12:49:00.050 DEBUG:teuthology.orchestra.run.smithi086:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-13T12:49:00.106 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-09-13T12:49:00.107 DEBUG:teuthology.orchestra.run.smithi105:> dd if=/scratch_devs of=/dev/stdout 2024-09-13T12:49:00.127 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-09-13T12:49:00.127 DEBUG:teuthology.orchestra.run.smithi105:> stat /dev/vg_nvme/lv_1 2024-09-13T12:49:00.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:59 smithi070 ceph-mon[29685]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:00.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:59 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:00.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:59 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:00.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:59 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:00.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:59 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:00.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:59 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:00.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:59 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:00.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:59 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T12:49:00.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:59 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-13T12:49:00.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:59 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T12:49:00.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:48:59 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:00.186 INFO:teuthology.orchestra.run.smithi105.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-13T12:49:00.186 INFO:teuthology.orchestra.run.smithi105.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T12:49:00.186 INFO:teuthology.orchestra.run.smithi105.stdout:Device: 5h/5d Inode: 982 Links: 1 2024-09-13T12:49:00.186 INFO:teuthology.orchestra.run.smithi105.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T12:49:00.187 INFO:teuthology.orchestra.run.smithi105.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T12:49:00.187 INFO:teuthology.orchestra.run.smithi105.stdout:Access: 2024-09-13 12:48:37.070357068 +0000 2024-09-13T12:49:00.187 INFO:teuthology.orchestra.run.smithi105.stdout:Modify: 2024-09-13 12:43:05.510878552 +0000 2024-09-13T12:49:00.187 INFO:teuthology.orchestra.run.smithi105.stdout:Change: 2024-09-13 12:43:05.510878552 +0000 2024-09-13T12:49:00.187 INFO:teuthology.orchestra.run.smithi105.stdout: Birth: 2024-09-13 12:43:05.510878552 +0000 2024-09-13T12:49:00.187 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-13T12:49:00.252 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:59 smithi105 ceph-mon[33061]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:00.252 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:59 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:00.253 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:59 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:00.253 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:59 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:00.253 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:59 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:00.253 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:59 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:00.253 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:59 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:00.253 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:59 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T12:49:00.253 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:59 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-13T12:49:00.253 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:59 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T12:49:00.253 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:48:59 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:00.256 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records in 2024-09-13T12:49:00.256 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records out 2024-09-13T12:49:00.256 INFO:teuthology.orchestra.run.smithi105.stderr:512 bytes copied, 0.000291044 s, 1.8 MB/s 2024-09-13T12:49:00.257 DEBUG:teuthology.orchestra.run.smithi105:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-13T12:49:00.317 DEBUG:teuthology.orchestra.run.smithi105:> stat /dev/vg_nvme/lv_2 2024-09-13T12:49:00.377 INFO:teuthology.orchestra.run.smithi105.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-13T12:49:00.377 INFO:teuthology.orchestra.run.smithi105.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T12:49:00.377 INFO:teuthology.orchestra.run.smithi105.stdout:Device: 5h/5d Inode: 976 Links: 1 2024-09-13T12:49:00.377 INFO:teuthology.orchestra.run.smithi105.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T12:49:00.377 INFO:teuthology.orchestra.run.smithi105.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T12:49:00.377 INFO:teuthology.orchestra.run.smithi105.stdout:Access: 2024-09-13 12:48:37.071357048 +0000 2024-09-13T12:49:00.377 INFO:teuthology.orchestra.run.smithi105.stdout:Modify: 2024-09-13 12:43:05.509878571 +0000 2024-09-13T12:49:00.378 INFO:teuthology.orchestra.run.smithi105.stdout:Change: 2024-09-13 12:43:05.509878571 +0000 2024-09-13T12:49:00.378 INFO:teuthology.orchestra.run.smithi105.stdout: Birth: 2024-09-13 12:43:05.509878571 +0000 2024-09-13T12:49:00.378 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-13T12:49:00.444 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records in 2024-09-13T12:49:00.444 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records out 2024-09-13T12:49:00.444 INFO:teuthology.orchestra.run.smithi105.stderr:512 bytes copied, 0.000235257 s, 2.2 MB/s 2024-09-13T12:49:00.446 DEBUG:teuthology.orchestra.run.smithi105:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-13T12:49:00.504 DEBUG:teuthology.orchestra.run.smithi105:> stat /dev/vg_nvme/lv_3 2024-09-13T12:49:00.564 INFO:teuthology.orchestra.run.smithi105.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-13T12:49:00.564 INFO:teuthology.orchestra.run.smithi105.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T12:49:00.564 INFO:teuthology.orchestra.run.smithi105.stdout:Device: 5h/5d Inode: 964 Links: 1 2024-09-13T12:49:00.564 INFO:teuthology.orchestra.run.smithi105.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T12:49:00.564 INFO:teuthology.orchestra.run.smithi105.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T12:49:00.564 INFO:teuthology.orchestra.run.smithi105.stdout:Access: 2024-09-13 12:48:37.071357048 +0000 2024-09-13T12:49:00.564 INFO:teuthology.orchestra.run.smithi105.stdout:Modify: 2024-09-13 12:43:05.509878571 +0000 2024-09-13T12:49:00.564 INFO:teuthology.orchestra.run.smithi105.stdout:Change: 2024-09-13 12:43:05.509878571 +0000 2024-09-13T12:49:00.564 INFO:teuthology.orchestra.run.smithi105.stdout: Birth: 2024-09-13 12:43:05.509878571 +0000 2024-09-13T12:49:00.565 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-13T12:49:00.634 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records in 2024-09-13T12:49:00.634 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records out 2024-09-13T12:49:00.634 INFO:teuthology.orchestra.run.smithi105.stderr:512 bytes copied, 0.000188377 s, 2.7 MB/s 2024-09-13T12:49:00.634 DEBUG:teuthology.orchestra.run.smithi105:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-13T12:49:00.692 DEBUG:teuthology.orchestra.run.smithi105:> stat /dev/vg_nvme/lv_4 2024-09-13T12:49:00.749 INFO:teuthology.orchestra.run.smithi105.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-13T12:49:00.749 INFO:teuthology.orchestra.run.smithi105.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-13T12:49:00.749 INFO:teuthology.orchestra.run.smithi105.stdout:Device: 5h/5d Inode: 977 Links: 1 2024-09-13T12:49:00.749 INFO:teuthology.orchestra.run.smithi105.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-13T12:49:00.749 INFO:teuthology.orchestra.run.smithi105.stdout:Context: system_u:object_r:device_t:s0 2024-09-13T12:49:00.749 INFO:teuthology.orchestra.run.smithi105.stdout:Access: 2024-09-13 12:48:37.071357048 +0000 2024-09-13T12:49:00.749 INFO:teuthology.orchestra.run.smithi105.stdout:Modify: 2024-09-13 12:43:05.509878571 +0000 2024-09-13T12:49:00.750 INFO:teuthology.orchestra.run.smithi105.stdout:Change: 2024-09-13 12:43:05.509878571 +0000 2024-09-13T12:49:00.750 INFO:teuthology.orchestra.run.smithi105.stdout: Birth: 2024-09-13 12:43:05.509878571 +0000 2024-09-13T12:49:00.750 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-13T12:49:00.814 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records in 2024-09-13T12:49:00.814 INFO:teuthology.orchestra.run.smithi105.stderr:1+0 records out 2024-09-13T12:49:00.814 INFO:teuthology.orchestra.run.smithi105.stderr:512 bytes copied, 0.000324938 s, 1.6 MB/s 2024-09-13T12:49:00.816 DEBUG:teuthology.orchestra.run.smithi105:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-13T12:49:00.873 INFO:tasks.cephadm:Deploying osd.0 on smithi070 with /dev/vg_nvme/lv_4... 2024-09-13T12:49:00.873 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-13T12:49:01.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:00 smithi105 ceph-mon[33061]: Deploying daemon mgr.b on smithi086 2024-09-13T12:49:01.108 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:00 smithi086 ceph-mon[32985]: Deploying daemon mgr.b on smithi086 2024-09-13T12:49:01.108 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 13 12:49:00 smithi086 systemd[1]: Starting Ceph mgr.b for 0c10639a-71ce-11ef-bceb-c7b262605968... 2024-09-13T12:49:01.124 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:49:01.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:00 smithi070 ceph-mon[29685]: Deploying daemon mgr.b on smithi086 2024-09-13T12:49:01.391 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 13 12:49:01 smithi086 podman[34331]: 2024-09-13 12:49:01.009688458 +0000 UTC m=+0.015816237 image pull fec07016a2b0bf363d0b69240081049b65cf13f1c44f6a7196cf8309aeb428cd quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f 2024-09-13T12:49:01.392 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 13 12:49:01 smithi086 podman[34331]: 2024-09-13 12:49:01.122026012 +0000 UTC m=+0.128153826 container create 49776751a6324e4dac4a5bf9983945dbbc1957b0a1b76cc116562753027f37fc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-b, org.label-schema.license=GPLv2, RELEASE=wip-aclamk-cbt-combined-d58f730, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , ceph=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7) 2024-09-13T12:49:01.392 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 13 12:49:01 smithi086 podman[34331]: 2024-09-13 12:49:01.307636415 +0000 UTC m=+0.313764184 container init 49776751a6324e4dac4a5bf9983945dbbc1957b0a1b76cc116562753027f37fc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-b, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, GIT_CLEAN=True, CEPH_POINT_RELEASE=) 2024-09-13T12:49:01.392 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 13 12:49:01 smithi086 podman[34331]: 2024-09-13 12:49:01.310247766 +0000 UTC m=+0.316375543 container start 49776751a6324e4dac4a5bf9983945dbbc1957b0a1b76cc116562753027f37fc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-b, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , ceph=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, RELEASE=wip-aclamk-cbt-combined-d58f730, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-13T12:49:01.392 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 13 12:49:01 smithi086 ceph-mgr[34351]: -- 172.21.15.86:0/4043268391 <== mon.2 v2:172.21.15.86:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x56524e1690e0 con 0x56524e147000 2024-09-13T12:49:01.392 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 13 12:49:01 smithi086 bash[34331]: 49776751a6324e4dac4a5bf9983945dbbc1957b0a1b76cc116562753027f37fc 2024-09-13T12:49:01.675 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 13 12:49:01 smithi086 systemd[1]: Started Ceph mgr.b for 0c10639a-71ce-11ef-bceb-c7b262605968. 2024-09-13T12:49:02.125 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:01 smithi070 ceph-mon[29685]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:02.125 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:01 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:02.125 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:01 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:02.126 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:01 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:02.126 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:01 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:02.126 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:01 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:02.129 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:01 smithi086 ceph-mon[32985]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:02.129 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:01 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:02.129 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:01 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:02.129 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:01 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:02.129 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:01 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:02.129 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:01 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:02.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:01 smithi105 ceph-mon[33061]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:02.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:01 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:02.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:01 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:02.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:01 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:02.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:01 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:02.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:01 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:03.468 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:49:03.494 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:03 smithi070 ceph-mon[29685]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:03.495 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:03 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:03.495 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:03 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:03.495 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:03 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:03.495 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:03 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:03.495 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:03 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:03.495 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:03 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:03.495 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:03 smithi070 ceph-mon[29685]: Reconfiguring mgr.a (unknown last config time)... 2024-09-13T12:49:03.495 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:03 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T12:49:03.495 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:03 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T12:49:03.495 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:03 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:03.495 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:03 smithi070 ceph-mon[29685]: Reconfiguring daemon mgr.a on smithi070 2024-09-13T12:49:03.496 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi070:vg_nvme/lv_4 2024-09-13T12:49:03.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:03 smithi105 ceph-mon[33061]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:03.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:03 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:03.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:03 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:03.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:03 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:03.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:03 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:03.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:03 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:03.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:03 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:03.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:03 smithi105 ceph-mon[33061]: Reconfiguring mgr.a (unknown last config time)... 2024-09-13T12:49:03.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:03 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T12:49:03.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:03 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T12:49:03.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:03 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:03.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:03 smithi105 ceph-mon[33061]: Reconfiguring daemon mgr.a on smithi070 2024-09-13T12:49:03.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:03 smithi086 ceph-mon[32985]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:03.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:03 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:03.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:03 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:03.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:03 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:03.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:03 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:03.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:03 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:03.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:03 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:03.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:03 smithi086 ceph-mon[32985]: Reconfiguring mgr.a (unknown last config time)... 2024-09-13T12:49:03.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:03 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T12:49:03.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:03 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T12:49:03.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:03 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:03.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:03 smithi086 ceph-mon[32985]: Reconfiguring daemon mgr.a on smithi070 2024-09-13T12:49:04.537 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:49:05.702 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:05 smithi070 ceph-mon[29685]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:05.703 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:05.703 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:05.703 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:05.703 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:05.703 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:05.703 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:05.703 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:49:05.703 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:49:05.703 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:05.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:05 smithi105 ceph-mon[33061]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:49:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:49:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:05.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:05 smithi086 ceph-mon[32985]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:49:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:49:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:06.766 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:06 smithi070 ceph-mon[29685]: from='client.14229 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:49:06.766 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:06 smithi070 ceph-mon[29685]: Standby manager daemon b started 2024-09-13T12:49:06.766 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:06 smithi070 ceph-mon[29685]: from='mgr.? 172.21.15.86:0/2749052444' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-13T12:49:06.766 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:06 smithi070 ceph-mon[29685]: from='mgr.? 172.21.15.86:0/2749052444' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-13T12:49:06.766 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:06 smithi070 ceph-mon[29685]: from='mgr.? 172.21.15.86:0/2749052444' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-13T12:49:06.766 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:06 smithi070 ceph-mon[29685]: from='mgr.? 172.21.15.86:0/2749052444' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-13T12:49:06.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:06 smithi105 ceph-mon[33061]: from='client.14229 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:49:06.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:06 smithi105 ceph-mon[33061]: Standby manager daemon b started 2024-09-13T12:49:06.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:06 smithi105 ceph-mon[33061]: from='mgr.? 172.21.15.86:0/2749052444' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-13T12:49:06.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:06 smithi105 ceph-mon[33061]: from='mgr.? 172.21.15.86:0/2749052444' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-13T12:49:06.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:06 smithi105 ceph-mon[33061]: from='mgr.? 172.21.15.86:0/2749052444' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-13T12:49:06.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:06 smithi105 ceph-mon[33061]: from='mgr.? 172.21.15.86:0/2749052444' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-13T12:49:06.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:06 smithi086 ceph-mon[32985]: from='client.14229 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:49:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:06 smithi086 ceph-mon[32985]: Standby manager daemon b started 2024-09-13T12:49:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:06 smithi086 ceph-mon[32985]: from='mgr.? 172.21.15.86:0/2749052444' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2024-09-13T12:49:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:06 smithi086 ceph-mon[32985]: from='mgr.? 172.21.15.86:0/2749052444' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-13T12:49:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:06 smithi086 ceph-mon[32985]: from='mgr.? 172.21.15.86:0/2749052444' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2024-09-13T12:49:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:06 smithi086 ceph-mon[32985]: from='mgr.? 172.21.15.86:0/2749052444' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-13T12:49:07.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:07 smithi105 ceph-mon[33061]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:07.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:07 smithi105 ceph-mon[33061]: mgrmap e14: a(active, since 64s), standbys: b 2024-09-13T12:49:07.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:07 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-13T12:49:07.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:07 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/3442360906' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7a393e1c-3218-43db-91fe-bdf8b3836d26"} : dispatch 2024-09-13T12:49:07.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:07 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/3442360906' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7a393e1c-3218-43db-91fe-bdf8b3836d26"}]': finished 2024-09-13T12:49:07.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:07 smithi105 ceph-mon[33061]: osdmap e5: 1 total, 0 up, 1 in 2024-09-13T12:49:07.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:07 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:07.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:07 smithi070 ceph-mon[29685]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:07.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:07 smithi070 ceph-mon[29685]: mgrmap e14: a(active, since 64s), standbys: b 2024-09-13T12:49:07.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:07 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-13T12:49:07.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:07 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/3442360906' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7a393e1c-3218-43db-91fe-bdf8b3836d26"} : dispatch 2024-09-13T12:49:07.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:07 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/3442360906' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7a393e1c-3218-43db-91fe-bdf8b3836d26"}]': finished 2024-09-13T12:49:07.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:07 smithi070 ceph-mon[29685]: osdmap e5: 1 total, 0 up, 1 in 2024-09-13T12:49:07.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:07 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:07.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:07 smithi086 ceph-mon[32985]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:07 smithi086 ceph-mon[32985]: mgrmap e14: a(active, since 64s), standbys: b 2024-09-13T12:49:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:07 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2024-09-13T12:49:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:07 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/3442360906' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7a393e1c-3218-43db-91fe-bdf8b3836d26"} : dispatch 2024-09-13T12:49:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:07 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/3442360906' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7a393e1c-3218-43db-91fe-bdf8b3836d26"}]': finished 2024-09-13T12:49:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:07 smithi086 ceph-mon[32985]: osdmap e5: 1 total, 0 up, 1 in 2024-09-13T12:49:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:07 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:08.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:08 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/1350031635' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:49:08.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:08 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/1350031635' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:49:08.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:08 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/1350031635' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:49:09.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:09 smithi105 ceph-mon[33061]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:09.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:09 smithi070 ceph-mon[29685]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:09.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:09 smithi086 ceph-mon[32985]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:11.838 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:11 smithi070 ceph-mon[29685]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:11.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:11 smithi105 ceph-mon[33061]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:11.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:11 smithi086 ceph-mon[32985]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:13.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:13 smithi070 ceph-mon[29685]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:13.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:13 smithi105 ceph-mon[33061]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:13.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:13 smithi086 ceph-mon[32985]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:15.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:15 smithi105 ceph-mon[33061]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:15.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:15 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-13T12:49:15.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:15 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:15.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:15 smithi105 ceph-mon[33061]: Deploying daemon osd.0 on smithi070 2024-09-13T12:49:15.916 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:15 smithi070 ceph-mon[29685]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:15.916 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:15 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-13T12:49:15.916 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:15 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:15.917 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:15 smithi070 ceph-mon[29685]: Deploying daemon osd.0 on smithi070 2024-09-13T12:49:15.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:15 smithi086 ceph-mon[32985]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:15.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:15 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-13T12:49:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:15 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:15 smithi086 ceph-mon[32985]: Deploying daemon osd.0 on smithi070 2024-09-13T12:49:17.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:17 smithi070 ceph-mon[29685]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:17.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:17 smithi105 ceph-mon[33061]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:17.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:17 smithi086 ceph-mon[32985]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:19.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:19 smithi105 ceph-mon[33061]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:19.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:19 smithi070 ceph-mon[29685]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:19.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:19 smithi086 ceph-mon[32985]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:20.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:20.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:20.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:20.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:20.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:20.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:20.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:20.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:20.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:21.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:21 smithi070 ceph-mon[29685]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:21.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:21 smithi086 ceph-mon[32985]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:22.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:21 smithi105 ceph-mon[33061]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:23.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:23 smithi105 ceph-mon[33061]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:23.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:23 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:23.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:23 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:23.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:23 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:23.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:23 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:23.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:23 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:23.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:23 smithi070 ceph-mon[29685]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:23.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:23 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:23.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:23 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:23.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:23 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:23.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:23 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:23.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:23 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:23.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:23 smithi086 ceph-mon[32985]: pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:23.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:23 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:23.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:23 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:23.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:23 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:23.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:23 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:23.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:23 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:24.867 INFO:teuthology.orchestra.run.smithi070.stdout:Created osd(s) 0 on host 'smithi070' 2024-09-13T12:49:25.471 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:25 smithi070 ceph-mon[29685]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:25.472 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:25 smithi070 ceph-mon[29685]: from='osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-13T12:49:25.472 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:25 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:25.472 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:25 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:25.472 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:25 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:25.506 DEBUG:teuthology.orchestra.run.smithi070:osd.0> sudo journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.0.service 2024-09-13T12:49:25.508 INFO:tasks.cephadm:Deploying osd.1 on smithi070 with /dev/vg_nvme/lv_3... 2024-09-13T12:49:25.508 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-13T12:49:25.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:25 smithi105 ceph-mon[33061]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:25.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:25 smithi105 ceph-mon[33061]: from='osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-13T12:49:25.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:25 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:25.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:25 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:25.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:25 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:25.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:25 smithi086 ceph-mon[32985]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:25.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:25 smithi086 ceph-mon[32985]: from='osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-13T12:49:25.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:25 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:25.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:25 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:25.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:25 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:26.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:26 smithi070 ceph-mon[29685]: from='osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-13T12:49:26.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:26 smithi070 ceph-mon[29685]: osdmap e6: 1 total, 0 up, 1 in 2024-09-13T12:49:26.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:26 smithi070 ceph-mon[29685]: from='osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-13T12:49:26.478 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:26 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:26.478 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:49:26 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0[43204]: 2024-09-13T12:49:26.219+0000 7f7d0b823640 -1 osd.0 0 waiting for initial osdmap 2024-09-13T12:49:26.478 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:49:26 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0[43204]: 2024-09-13T12:49:26.221+0000 7f7d0764a640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-13T12:49:26.555 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:49:26.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:26 smithi105 ceph-mon[33061]: from='osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-13T12:49:26.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:26 smithi105 ceph-mon[33061]: osdmap e6: 1 total, 0 up, 1 in 2024-09-13T12:49:26.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:26 smithi105 ceph-mon[33061]: from='osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-13T12:49:26.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:26 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:26.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:26 smithi086 ceph-mon[32985]: from='osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-13T12:49:26.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:26 smithi086 ceph-mon[32985]: osdmap e6: 1 total, 0 up, 1 in 2024-09-13T12:49:26.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:26 smithi086 ceph-mon[32985]: from='osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-13T12:49:26.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:26 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:27.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:27 smithi070 ceph-mon[29685]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:27.309 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:27 smithi070 ceph-mon[29685]: from='osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-13T12:49:27.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:27 smithi070 ceph-mon[29685]: osdmap e7: 1 total, 0 up, 1 in 2024-09-13T12:49:27.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:27.310 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:27.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:27 smithi086 ceph-mon[32985]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:27.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:27 smithi086 ceph-mon[32985]: from='osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-13T12:49:27.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:27 smithi086 ceph-mon[32985]: osdmap e7: 1 total, 0 up, 1 in 2024-09-13T12:49:27.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:27 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:27.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:27 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:27.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:27 smithi105 ceph-mon[33061]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:27.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:27 smithi105 ceph-mon[33061]: from='osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-13T12:49:27.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:27 smithi105 ceph-mon[33061]: osdmap e7: 1 total, 0 up, 1 in 2024-09-13T12:49:27.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:27 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:27.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:27 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:28.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:28 smithi070 ceph-mon[29685]: purged_snaps scrub starts 2024-09-13T12:49:28.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:28 smithi070 ceph-mon[29685]: purged_snaps scrub ok 2024-09-13T12:49:28.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:28 smithi070 ceph-mon[29685]: osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001] boot 2024-09-13T12:49:28.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:28 smithi070 ceph-mon[29685]: osdmap e8: 1 total, 1 up, 1 in 2024-09-13T12:49:28.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:28 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:28.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:28 smithi105 ceph-mon[33061]: purged_snaps scrub starts 2024-09-13T12:49:28.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:28 smithi105 ceph-mon[33061]: purged_snaps scrub ok 2024-09-13T12:49:28.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:28 smithi105 ceph-mon[33061]: osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001] boot 2024-09-13T12:49:28.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:28 smithi105 ceph-mon[33061]: osdmap e8: 1 total, 1 up, 1 in 2024-09-13T12:49:28.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:28 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:28.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:28 smithi086 ceph-mon[32985]: purged_snaps scrub starts 2024-09-13T12:49:28.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:28 smithi086 ceph-mon[32985]: purged_snaps scrub ok 2024-09-13T12:49:28.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:28 smithi086 ceph-mon[32985]: osd.0 [v2:172.21.15.70:6802/1808329001,v1:172.21.15.70:6803/1808329001] boot 2024-09-13T12:49:28.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:28 smithi086 ceph-mon[32985]: osdmap e8: 1 total, 1 up, 1 in 2024-09-13T12:49:28.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:28 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-13T12:49:29.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:29 smithi105 ceph-mon[33061]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:29.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:29 smithi105 ceph-mon[33061]: osdmap e9: 1 total, 1 up, 1 in 2024-09-13T12:49:29.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:29 smithi105 ceph-mon[33061]: Detected new or changed devices on smithi070 2024-09-13T12:49:29.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:29 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:29.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:29 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:29.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:29 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-13T12:49:29.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:29 smithi105 ceph-mon[33061]: Adjusting osd_memory_target on smithi070 to 17088M 2024-09-13T12:49:29.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:29 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:29.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:29 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:29.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:29 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:29.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:29 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:29.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:29 smithi070 ceph-mon[29685]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:29.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:29 smithi070 ceph-mon[29685]: osdmap e9: 1 total, 1 up, 1 in 2024-09-13T12:49:29.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:29 smithi070 ceph-mon[29685]: Detected new or changed devices on smithi070 2024-09-13T12:49:29.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:29 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:29.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:29 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:29.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:29 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-13T12:49:29.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:29 smithi070 ceph-mon[29685]: Adjusting osd_memory_target on smithi070 to 17088M 2024-09-13T12:49:29.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:29 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:29.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:29 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:29.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:29 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:29.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:29 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:29.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:29 smithi086 ceph-mon[32985]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-13T12:49:29.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:29 smithi086 ceph-mon[32985]: osdmap e9: 1 total, 1 up, 1 in 2024-09-13T12:49:29.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:29 smithi086 ceph-mon[32985]: Detected new or changed devices on smithi070 2024-09-13T12:49:29.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:29 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:29.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:29 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:29.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:29 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-13T12:49:29.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:29 smithi086 ceph-mon[32985]: Adjusting osd_memory_target on smithi070 to 17088M 2024-09-13T12:49:29.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:29 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:29.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:29 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:29.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:29 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:29.677 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:29 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:29.959 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:49:29.985 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi070:vg_nvme/lv_3 2024-09-13T12:49:30.228 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:49:31.554 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:31 smithi070 ceph-mon[29685]: pgmap v43: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:31.554 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:31 smithi070 ceph-mon[29685]: from='client.14256 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:49:31.554 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:49:31.554 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:49:31.554 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:31.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:31 smithi105 ceph-mon[33061]: pgmap v43: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:31.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:31 smithi105 ceph-mon[33061]: from='client.14256 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:49:31.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:31 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:49:31.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:31 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:49:31.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:31 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:31.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:31 smithi086 ceph-mon[32985]: pgmap v43: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:31.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:31 smithi086 ceph-mon[32985]: from='client.14256 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi070:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:49:31.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:31 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:49:31.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:31 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:49:31.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:31 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:33.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:33 smithi105 ceph-mon[33061]: pgmap v44: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:33.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:33 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/2443513571' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "eac14cf5-cd48-4d91-9670-00cb56cd337c"} : dispatch 2024-09-13T12:49:33.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:33 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/2443513571' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "eac14cf5-cd48-4d91-9670-00cb56cd337c"}]': finished 2024-09-13T12:49:33.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:33 smithi105 ceph-mon[33061]: osdmap e10: 2 total, 1 up, 2 in 2024-09-13T12:49:33.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:33 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:33.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:33 smithi070 ceph-mon[29685]: pgmap v44: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:33.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:33 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/2443513571' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "eac14cf5-cd48-4d91-9670-00cb56cd337c"} : dispatch 2024-09-13T12:49:33.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:33 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/2443513571' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "eac14cf5-cd48-4d91-9670-00cb56cd337c"}]': finished 2024-09-13T12:49:33.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:33 smithi070 ceph-mon[29685]: osdmap e10: 2 total, 1 up, 2 in 2024-09-13T12:49:33.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:33 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:33.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:33 smithi086 ceph-mon[32985]: pgmap v44: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:33.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:33 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/2443513571' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "eac14cf5-cd48-4d91-9670-00cb56cd337c"} : dispatch 2024-09-13T12:49:33.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:33 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/2443513571' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "eac14cf5-cd48-4d91-9670-00cb56cd337c"}]': finished 2024-09-13T12:49:33.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:33 smithi086 ceph-mon[32985]: osdmap e10: 2 total, 1 up, 2 in 2024-09-13T12:49:33.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:33 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:34.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:34 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/1487556723' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:49:34.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:34 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/1487556723' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:49:34.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:34 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/1487556723' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:49:35.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:35 smithi105 ceph-mon[33061]: pgmap v46: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:35.668 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:35 smithi070 ceph-mon[29685]: pgmap v46: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:35.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:35 smithi086 ceph-mon[32985]: pgmap v46: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:37.564 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:37 smithi070 ceph-mon[29685]: pgmap v47: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:37.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:37 smithi105 ceph-mon[33061]: pgmap v47: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:37.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:37 smithi086 ceph-mon[32985]: pgmap v47: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:39.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:39 smithi070 ceph-mon[29685]: pgmap v48: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:39.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:39 smithi105 ceph-mon[33061]: pgmap v48: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:39.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:39 smithi086 ceph-mon[32985]: pgmap v48: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:41.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:41 smithi105 ceph-mon[33061]: pgmap v49: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:41.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:41 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-13T12:49:41.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:41 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:41.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:41 smithi105 ceph-mon[33061]: Deploying daemon osd.1 on smithi070 2024-09-13T12:49:41.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:41 smithi070 ceph-mon[29685]: pgmap v49: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:41.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:41 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-13T12:49:41.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:41 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:41.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:41 smithi070 ceph-mon[29685]: Deploying daemon osd.1 on smithi070 2024-09-13T12:49:41.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:41 smithi086 ceph-mon[32985]: pgmap v49: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:41.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:41 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-13T12:49:41.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:41 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:41.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:41 smithi086 ceph-mon[32985]: Deploying daemon osd.1 on smithi070 2024-09-13T12:49:43.516 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:43 smithi070 ceph-mon[29685]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:43.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:43 smithi105 ceph-mon[33061]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:43.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:43 smithi086 ceph-mon[32985]: pgmap v50: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:45.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:45 smithi070 ceph-mon[29685]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:45.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:45 smithi105 ceph-mon[33061]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:45.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:45 smithi086 ceph-mon[32985]: pgmap v51: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:46.412 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:46 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:46.412 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:46 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:46.412 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:46 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:46.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:46 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:46.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:46 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:46.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:46 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:46.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:46 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:46.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:46 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:46.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:46 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:47.723 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:47 smithi070 ceph-mon[29685]: pgmap v52: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:48.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:47 smithi105 ceph-mon[33061]: pgmap v52: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:48.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:47 smithi086 ceph-mon[32985]: pgmap v52: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:49.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:49 smithi105 ceph-mon[33061]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:49.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:49 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:49.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:49 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:49.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:49 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:49.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:49 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:49.608 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:49 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:49.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:49 smithi070 ceph-mon[29685]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:49.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:49 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:49.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:49 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:49.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:49 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:49.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:49 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:49.670 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:49 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:49.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:49 smithi086 ceph-mon[32985]: pgmap v53: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:49.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:49 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:49.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:49 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:49.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:49 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:49.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:49 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:49.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:49 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:50.544 INFO:teuthology.orchestra.run.smithi070.stdout:Created osd(s) 1 on host 'smithi070' 2024-09-13T12:49:51.139 DEBUG:teuthology.orchestra.run.smithi070:osd.1> sudo journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.1.service 2024-09-13T12:49:51.141 INFO:tasks.cephadm:Deploying osd.2 on smithi086 with /dev/vg_nvme/lv_4... 2024-09-13T12:49:51.142 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-13T12:49:51.380 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:51 smithi070 ceph-mon[29685]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:51.380 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:51 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:51.380 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:51 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:51.380 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:51 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:51.380 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:51 smithi070 ceph-mon[29685]: from='osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-13T12:49:51.396 INFO:teuthology.orchestra.run.smithi086.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.b/config 2024-09-13T12:49:51.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:51 smithi086 ceph-mon[32985]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:51.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:51 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:51.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:51 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:51.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:51 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:51.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:51 smithi086 ceph-mon[32985]: from='osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-13T12:49:51.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:51 smithi105 ceph-mon[33061]: pgmap v54: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:51.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:51 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:49:51.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:51 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:51.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:51 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:51.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:51 smithi105 ceph-mon[33061]: from='osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-13T12:49:52.700 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:52 smithi086 ceph-mon[32985]: from='osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-13T12:49:52.700 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:52 smithi086 ceph-mon[32985]: osdmap e11: 2 total, 1 up, 2 in 2024-09-13T12:49:52.700 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:52 smithi086 ceph-mon[32985]: from='osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-13T12:49:52.700 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:52 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:52.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:52 smithi105 ceph-mon[33061]: from='osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-13T12:49:52.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:52 smithi105 ceph-mon[33061]: osdmap e11: 2 total, 1 up, 2 in 2024-09-13T12:49:52.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:52 smithi105 ceph-mon[33061]: from='osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-13T12:49:52.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:52 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:52.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:52 smithi070 ceph-mon[29685]: from='osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-13T12:49:52.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:52 smithi070 ceph-mon[29685]: osdmap e11: 2 total, 1 up, 2 in 2024-09-13T12:49:52.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:52 smithi070 ceph-mon[29685]: from='osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]} : dispatch 2024-09-13T12:49:52.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:52 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:52.919 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:49:52 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1[48745]: 2024-09-13T12:49:52.559+0000 7f51ffc9b640 -1 osd.1 0 waiting for initial osdmap 2024-09-13T12:49:52.920 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:49:52 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1[48745]: 2024-09-13T12:49:52.562+0000 7f51fbac2640 -1 osd.1 12 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-13T12:49:53.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:53 smithi086 ceph-mon[32985]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:53.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:53 smithi086 ceph-mon[32985]: from='osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-13T12:49:53.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:53 smithi086 ceph-mon[32985]: osdmap e12: 2 total, 1 up, 2 in 2024-09-13T12:49:53.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:53 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:53.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:53 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:53.774 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:49:53.792 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:53 smithi070 ceph-mon[29685]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:53.792 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:53 smithi070 ceph-mon[29685]: from='osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-13T12:49:53.792 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:53 smithi070 ceph-mon[29685]: osdmap e12: 2 total, 1 up, 2 in 2024-09-13T12:49:53.792 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:53 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:53.793 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:53 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:53.800 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi086:vg_nvme/lv_4 2024-09-13T12:49:53.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:53 smithi105 ceph-mon[33061]: pgmap v56: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:53.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:53 smithi105 ceph-mon[33061]: from='osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi070", "root=default"]}]': finished 2024-09-13T12:49:53.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:53 smithi105 ceph-mon[33061]: osdmap e12: 2 total, 1 up, 2 in 2024-09-13T12:49:53.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:53 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:53.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:53 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:54.055 INFO:teuthology.orchestra.run.smithi086.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.b/config 2024-09-13T12:49:54.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: purged_snaps scrub starts 2024-09-13T12:49:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: purged_snaps scrub ok 2024-09-13T12:49:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372] boot 2024-09-13T12:49:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: osdmap e13: 2 total, 2 up, 2 in 2024-09-13T12:49:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: Detected new or changed devices on smithi070 2024-09-13T12:49:54.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-13T12:49:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-13T12:49:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: Adjusting osd_memory_target on smithi070 to 8544M 2024-09-13T12:49:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:54.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:54 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:54.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: purged_snaps scrub starts 2024-09-13T12:49:54.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: purged_snaps scrub ok 2024-09-13T12:49:54.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372] boot 2024-09-13T12:49:54.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: osdmap e13: 2 total, 2 up, 2 in 2024-09-13T12:49:54.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:54.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: Detected new or changed devices on smithi070 2024-09-13T12:49:54.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:54.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:54.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-13T12:49:54.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-13T12:49:54.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: Adjusting osd_memory_target on smithi070 to 8544M 2024-09-13T12:49:54.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:54.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:54.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:54.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:54 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:54.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: purged_snaps scrub starts 2024-09-13T12:49:54.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: purged_snaps scrub ok 2024-09-13T12:49:54.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: osd.1 [v2:172.21.15.70:6810/2681390372,v1:172.21.15.70:6811/2681390372] boot 2024-09-13T12:49:54.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: osdmap e13: 2 total, 2 up, 2 in 2024-09-13T12:49:54.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-13T12:49:54.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: Detected new or changed devices on smithi070 2024-09-13T12:49:54.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:54.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:54.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-13T12:49:54.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-13T12:49:54.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: Adjusting osd_memory_target on smithi070 to 8544M 2024-09-13T12:49:54.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:54.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:54.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:49:54.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:54 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:49:55.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:55 smithi086 ceph-mon[32985]: pgmap v59: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:55.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:55 smithi086 ceph-mon[32985]: from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:49:55.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:55 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:49:55.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:55 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:49:55.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:55 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:55.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:55 smithi086 ceph-mon[32985]: osdmap e14: 2 total, 2 up, 2 in 2024-09-13T12:49:55.821 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:55 smithi070 ceph-mon[29685]: pgmap v59: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:55.821 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:55 smithi070 ceph-mon[29685]: from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:49:55.822 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:55 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:49:55.822 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:55 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:49:55.822 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:55 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:55.822 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:55 smithi070 ceph-mon[29685]: osdmap e14: 2 total, 2 up, 2 in 2024-09-13T12:49:55.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:55 smithi105 ceph-mon[33061]: pgmap v59: 0 pgs: ; 0 B data, 26 MiB used, 89 GiB / 89 GiB avail 2024-09-13T12:49:55.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:55 smithi105 ceph-mon[33061]: from='client.24140 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:49:55.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:55 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:49:55.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:55 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:49:55.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:55 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:49:55.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:55 smithi105 ceph-mon[33061]: osdmap e14: 2 total, 2 up, 2 in 2024-09-13T12:49:57.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:57 smithi105 ceph-mon[33061]: pgmap v61: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:49:57.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:57 smithi105 ceph-mon[33061]: from='client.? 172.21.15.86:0/1878216093' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b856cff8-d67e-4e9b-8365-a319c2689208"} : dispatch 2024-09-13T12:49:57.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:57 smithi105 ceph-mon[33061]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b856cff8-d67e-4e9b-8365-a319c2689208"} : dispatch 2024-09-13T12:49:57.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:57 smithi105 ceph-mon[33061]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b856cff8-d67e-4e9b-8365-a319c2689208"}]': finished 2024-09-13T12:49:57.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:57 smithi105 ceph-mon[33061]: osdmap e15: 3 total, 2 up, 3 in 2024-09-13T12:49:57.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:57 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:49:57.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:57 smithi105 ceph-mon[33061]: from='client.? 172.21.15.86:0/549125575' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:49:57.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:57 smithi070 ceph-mon[29685]: pgmap v61: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:49:57.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:57 smithi070 ceph-mon[29685]: from='client.? 172.21.15.86:0/1878216093' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b856cff8-d67e-4e9b-8365-a319c2689208"} : dispatch 2024-09-13T12:49:57.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:57 smithi070 ceph-mon[29685]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b856cff8-d67e-4e9b-8365-a319c2689208"} : dispatch 2024-09-13T12:49:57.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:57 smithi070 ceph-mon[29685]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b856cff8-d67e-4e9b-8365-a319c2689208"}]': finished 2024-09-13T12:49:57.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:57 smithi070 ceph-mon[29685]: osdmap e15: 3 total, 2 up, 3 in 2024-09-13T12:49:57.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:57 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:49:57.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:57 smithi070 ceph-mon[29685]: from='client.? 172.21.15.86:0/549125575' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:49:57.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:57 smithi086 ceph-mon[32985]: pgmap v61: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:49:57.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:57 smithi086 ceph-mon[32985]: from='client.? 172.21.15.86:0/1878216093' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b856cff8-d67e-4e9b-8365-a319c2689208"} : dispatch 2024-09-13T12:49:57.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:57 smithi086 ceph-mon[32985]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b856cff8-d67e-4e9b-8365-a319c2689208"} : dispatch 2024-09-13T12:49:57.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:57 smithi086 ceph-mon[32985]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b856cff8-d67e-4e9b-8365-a319c2689208"}]': finished 2024-09-13T12:49:57.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:57 smithi086 ceph-mon[32985]: osdmap e15: 3 total, 2 up, 3 in 2024-09-13T12:49:57.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:57 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:49:57.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:57 smithi086 ceph-mon[32985]: from='client.? 172.21.15.86:0/549125575' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:49:59.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:49:59 smithi105 ceph-mon[33061]: pgmap v63: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:49:59.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:49:59 smithi070 ceph-mon[29685]: pgmap v63: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:49:59.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:49:59 smithi086 ceph-mon[32985]: pgmap v63: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:00.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:00 smithi105 ceph-mon[33061]: overall HEALTH_OK 2024-09-13T12:50:00.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:00 smithi070 ceph-mon[29685]: overall HEALTH_OK 2024-09-13T12:50:00.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:00 smithi086 ceph-mon[32985]: overall HEALTH_OK 2024-09-13T12:50:01.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:01 smithi086 ceph-mon[32985]: pgmap v64: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:01.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:01 smithi105 ceph-mon[33061]: pgmap v64: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:01.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:01 smithi070 ceph-mon[29685]: pgmap v64: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:03.786 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:03 smithi086 ceph-mon[32985]: pgmap v65: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:03.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:03 smithi105 ceph-mon[33061]: pgmap v65: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:03.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:03 smithi070 ceph-mon[29685]: pgmap v65: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:04.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:04 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-13T12:50:04.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:04 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:04.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:04 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-13T12:50:04.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:04 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:04.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:04 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-13T12:50:04.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:04 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:05.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:05 smithi086 ceph-mon[32985]: pgmap v66: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:05.843 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:05 smithi086 ceph-mon[32985]: Deploying daemon osd.2 on smithi086 2024-09-13T12:50:05.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:05 smithi105 ceph-mon[33061]: pgmap v66: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:05.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:05 smithi105 ceph-mon[33061]: Deploying daemon osd.2 on smithi086 2024-09-13T12:50:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:05 smithi070 ceph-mon[29685]: pgmap v66: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:05 smithi070 ceph-mon[29685]: Deploying daemon osd.2 on smithi086 2024-09-13T12:50:07.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:07 smithi105 ceph-mon[33061]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:07.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:07 smithi070 ceph-mon[29685]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:07 smithi086 ceph-mon[32985]: pgmap v67: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:09.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:09 smithi105 ceph-mon[33061]: pgmap v68: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:09.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:09 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:50:09.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:09 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:09.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:09 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:09.886 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:09 smithi086 ceph-mon[32985]: pgmap v68: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:09.886 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:09 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:50:09.886 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:09 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:09.886 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:09 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:09.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:09 smithi070 ceph-mon[29685]: pgmap v68: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:09.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:09 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:50:09.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:09 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:09.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:09 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:11.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:11 smithi086 ceph-mon[32985]: pgmap v69: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:11.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:11 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:11.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:11 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:11.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:11 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:11.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:11 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:50:11.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:11 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:11.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:11 smithi105 ceph-mon[33061]: pgmap v69: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:11.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:11 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:11.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:11 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:11.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:11 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:11.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:11 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:50:11.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:11 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:11 smithi070 ceph-mon[29685]: pgmap v69: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:11 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:11 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:11 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:11 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:50:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:11 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:13.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:13 smithi105 ceph-mon[33061]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:13.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:13 smithi070 ceph-mon[29685]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:13.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:13 smithi086 ceph-mon[32985]: pgmap v70: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:14.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:14 smithi086 ceph-mon[32985]: from='osd.2 [v2:172.21.15.86:6800/2214144224,v1:172.21.15.86:6801/2214144224]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-13T12:50:14.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:14 smithi086 ceph-mon[32985]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-13T12:50:14.720 INFO:teuthology.orchestra.run.smithi086.stdout:Created osd(s) 2 on host 'smithi086' 2024-09-13T12:50:14.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:14 smithi105 ceph-mon[33061]: from='osd.2 [v2:172.21.15.86:6800/2214144224,v1:172.21.15.86:6801/2214144224]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-13T12:50:14.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:14 smithi105 ceph-mon[33061]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-13T12:50:14.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:14 smithi070 ceph-mon[29685]: from='osd.2 [v2:172.21.15.86:6800/2214144224,v1:172.21.15.86:6801/2214144224]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-13T12:50:14.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:14 smithi070 ceph-mon[29685]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-13T12:50:15.328 DEBUG:teuthology.orchestra.run.smithi086:osd.2> sudo journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.2.service 2024-09-13T12:50:15.331 INFO:tasks.cephadm:Deploying osd.3 on smithi086 with /dev/vg_nvme/lv_3... 2024-09-13T12:50:15.331 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-13T12:50:15.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:15 smithi105 ceph-mon[33061]: pgmap v71: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:15.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:15 smithi105 ceph-mon[33061]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-13T12:50:15.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:15 smithi105 ceph-mon[33061]: osdmap e16: 3 total, 2 up, 3 in 2024-09-13T12:50:15.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:15 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:15.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:15 smithi105 ceph-mon[33061]: from='osd.2 [v2:172.21.15.86:6800/2214144224,v1:172.21.15.86:6801/2214144224]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-13T12:50:15.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:15 smithi105 ceph-mon[33061]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-13T12:50:15.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:15 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:50:15.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:15 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:15.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:15 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:15.888 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:15 smithi086 ceph-mon[32985]: pgmap v71: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:15.888 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:15 smithi086 ceph-mon[32985]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-13T12:50:15.888 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:15 smithi086 ceph-mon[32985]: osdmap e16: 3 total, 2 up, 3 in 2024-09-13T12:50:15.888 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:15 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:15.888 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:15 smithi086 ceph-mon[32985]: from='osd.2 [v2:172.21.15.86:6800/2214144224,v1:172.21.15.86:6801/2214144224]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-13T12:50:15.888 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:15 smithi086 ceph-mon[32985]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-13T12:50:15.889 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:15 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:50:15.889 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:15 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:15.889 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:15 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:15.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:15 smithi070 ceph-mon[29685]: pgmap v71: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:15.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:15 smithi070 ceph-mon[29685]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-13T12:50:15.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:15 smithi070 ceph-mon[29685]: osdmap e16: 3 total, 2 up, 3 in 2024-09-13T12:50:15.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:15 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:15.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:15 smithi070 ceph-mon[29685]: from='osd.2 [v2:172.21.15.86:6800/2214144224,v1:172.21.15.86:6801/2214144224]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-13T12:50:15.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:15 smithi070 ceph-mon[29685]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-13T12:50:15.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:15 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:50:15.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:15 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:15.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:15 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:16.110 INFO:teuthology.orchestra.run.smithi086.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.b/config 2024-09-13T12:50:16.175 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:50:16 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2[37099]: 2024-09-13T12:50:16.057+0000 7fbb2fa7f640 -1 osd.2 0 waiting for initial osdmap 2024-09-13T12:50:16.176 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:50:16 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2[37099]: 2024-09-13T12:50:16.063+0000 7fbb2789e640 -1 osd.2 17 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-13T12:50:16.870 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:16 smithi086 ceph-mon[32985]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-13T12:50:16.870 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:16 smithi086 ceph-mon[32985]: osdmap e17: 3 total, 2 up, 3 in 2024-09-13T12:50:16.870 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:16 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:16.870 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:16 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:16.870 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:16 smithi086 ceph-mon[32985]: from='osd.2 ' entity='osd.2' 2024-09-13T12:50:16.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:16 smithi070 ceph-mon[29685]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-13T12:50:16.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:16 smithi070 ceph-mon[29685]: osdmap e17: 3 total, 2 up, 3 in 2024-09-13T12:50:16.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:16 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:16.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:16 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:16.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:16 smithi070 ceph-mon[29685]: from='osd.2 ' entity='osd.2' 2024-09-13T12:50:17.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:16 smithi105 ceph-mon[33061]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-13T12:50:17.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:16 smithi105 ceph-mon[33061]: osdmap e17: 3 total, 2 up, 3 in 2024-09-13T12:50:17.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:16 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:17.108 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:16 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:17.108 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:16 smithi105 ceph-mon[33061]: from='osd.2 ' entity='osd.2' 2024-09-13T12:50:17.824 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:17 smithi086 ceph-mon[32985]: purged_snaps scrub starts 2024-09-13T12:50:17.825 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:17 smithi086 ceph-mon[32985]: purged_snaps scrub ok 2024-09-13T12:50:17.825 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:17 smithi086 ceph-mon[32985]: pgmap v74: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:17.825 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:17 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:17.825 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:17 smithi086 ceph-mon[32985]: osd.2 [v2:172.21.15.86:6800/2214144224,v1:172.21.15.86:6801/2214144224] boot 2024-09-13T12:50:17.825 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:17 smithi086 ceph-mon[32985]: osdmap e18: 3 total, 3 up, 3 in 2024-09-13T12:50:17.826 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:17 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:17.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:17 smithi070 ceph-mon[29685]: purged_snaps scrub starts 2024-09-13T12:50:17.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:17 smithi070 ceph-mon[29685]: purged_snaps scrub ok 2024-09-13T12:50:17.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:17 smithi070 ceph-mon[29685]: pgmap v74: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:17.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:17 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:17.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:17 smithi070 ceph-mon[29685]: osd.2 [v2:172.21.15.86:6800/2214144224,v1:172.21.15.86:6801/2214144224] boot 2024-09-13T12:50:17.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:17 smithi070 ceph-mon[29685]: osdmap e18: 3 total, 3 up, 3 in 2024-09-13T12:50:17.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:17 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:18.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:17 smithi105 ceph-mon[33061]: purged_snaps scrub starts 2024-09-13T12:50:18.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:17 smithi105 ceph-mon[33061]: purged_snaps scrub ok 2024-09-13T12:50:18.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:17 smithi105 ceph-mon[33061]: pgmap v74: 0 pgs: ; 0 B data, 53 MiB used, 179 GiB / 179 GiB avail 2024-09-13T12:50:18.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:17 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:18.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:17 smithi105 ceph-mon[33061]: osd.2 [v2:172.21.15.86:6800/2214144224,v1:172.21.15.86:6801/2214144224] boot 2024-09-13T12:50:18.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:17 smithi105 ceph-mon[33061]: osdmap e18: 3 total, 3 up, 3 in 2024-09-13T12:50:18.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:17 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-13T12:50:19.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:19 smithi086 ceph-mon[32985]: pgmap v76: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:19.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:19 smithi086 ceph-mon[32985]: osdmap e19: 3 total, 3 up, 3 in 2024-09-13T12:50:19.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:19 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' 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-09-13T12:50:19.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:19 smithi105 ceph-mon[33061]: pgmap v76: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:19.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:19 smithi105 ceph-mon[33061]: osdmap e19: 3 total, 3 up, 3 in 2024-09-13T12:50:19.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:19 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' 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-09-13T12:50:19.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:19 smithi070 ceph-mon[29685]: pgmap v76: 0 pgs: ; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:19.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:19 smithi070 ceph-mon[29685]: osdmap e19: 3 total, 3 up, 3 in 2024-09-13T12:50:19.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:19 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' 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-09-13T12:50:20.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' 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-09-13T12:50:20.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 ceph-mon[32985]: osdmap e20: 3 total, 3 up, 3 in 2024-09-13T12:50:20.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-13T12:50:20.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 ceph-mon[32985]: Detected new or changed devices on smithi086 2024-09-13T12:50:20.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:20.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:20.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-13T12:50:20.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 ceph-mon[32985]: Adjusting osd_memory_target on smithi086 to 17088M 2024-09-13T12:50:20.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:20.177 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:20.177 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:50:20.177 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:20.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' 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-09-13T12:50:20.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 ceph-mon[33061]: osdmap e20: 3 total, 3 up, 3 in 2024-09-13T12:50:20.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-13T12:50:20.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 ceph-mon[33061]: Detected new or changed devices on smithi086 2024-09-13T12:50:20.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:20.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:20.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-13T12:50:20.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 ceph-mon[33061]: Adjusting osd_memory_target on smithi086 to 17088M 2024-09-13T12:50:20.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:20.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:20.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:50:20.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' 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-09-13T12:50:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 ceph-mon[29685]: osdmap e20: 3 total, 3 up, 3 in 2024-09-13T12:50:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-13T12:50:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 ceph-mon[29685]: Detected new or changed devices on smithi086 2024-09-13T12:50:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-13T12:50:20.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 ceph-mon[29685]: Adjusting osd_memory_target on smithi086 to 17088M 2024-09-13T12:50:20.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:20.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:20.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:50:20.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:20.586 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41034]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-13T12:50:20.586 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41034]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-13T12:50:20.586 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41034]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-13T12:50:20.587 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41034]: pam_unix(sudo:session): session closed for user root 2024-09-13T12:50:20.587 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41037]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-13T12:50:20.587 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41037]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-13T12:50:20.587 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41037]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-13T12:50:20.587 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41037]: pam_unix(sudo:session): session closed for user root 2024-09-13T12:50:20.589 INFO:teuthology.orchestra.run.smithi086.stdout: 2024-09-13T12:50:20.614 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi086:vg_nvme/lv_3 2024-09-13T12:50:20.866 INFO:teuthology.orchestra.run.smithi086.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.b/config 2024-09-13T12:50:20.919 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52245]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-13T12:50:20.919 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52245]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-13T12:50:20.919 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52245]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-13T12:50:20.919 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52245]: pam_unix(sudo:session): session closed for user root 2024-09-13T12:50:20.919 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52248]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-13T12:50:20.919 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52248]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-13T12:50:20.919 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52248]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-13T12:50:20.920 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52248]: pam_unix(sudo:session): session closed for user root 2024-09-13T12:50:20.920 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52251]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-13T12:50:20.920 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52251]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-13T12:50:20.920 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52251]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-13T12:50:20.920 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52251]: pam_unix(sudo:session): session closed for user root 2024-09-13T12:50:20.920 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52254]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-13T12:50:20.920 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52254]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-13T12:50:20.920 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52254]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-13T12:50:20.920 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52254]: pam_unix(sudo:session): session closed for user root 2024-09-13T12:50:20.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52257]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-13T12:50:20.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52257]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-13T12:50:20.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52257]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-13T12:50:20.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52257]: pam_unix(sudo:session): session closed for user root 2024-09-13T12:50:20.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52260]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-13T12:50:20.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52260]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-13T12:50:20.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52260]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-13T12:50:20.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:20 smithi070 sudo[52260]: pam_unix(sudo:session): session closed for user root 2024-09-13T12:50:20.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41058]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-13T12:50:20.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41058]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-13T12:50:20.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41058]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-13T12:50:20.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41058]: pam_unix(sudo:session): session closed for user root 2024-09-13T12:50:20.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41061]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-13T12:50:20.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41061]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-13T12:50:20.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41061]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-13T12:50:20.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:20 smithi086 sudo[41061]: pam_unix(sudo:session): session closed for user root 2024-09-13T12:50:21.076 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 sudo[34986]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-09-13T12:50:21.077 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 sudo[34986]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-13T12:50:21.077 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 sudo[34986]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-13T12:50:21.077 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 sudo[34986]: pam_unix(sudo:session): session closed for user root 2024-09-13T12:50:21.077 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 sudo[34989]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-09-13T12:50:21.077 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 sudo[34989]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-09-13T12:50:21.077 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 sudo[34989]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2024-09-13T12:50:21.077 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:20 smithi105 sudo[34989]: pam_unix(sudo:session): session closed for user root 2024-09-13T12:50:21.249 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: pgmap v79: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:21.249 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-13T12:50:21.249 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: osdmap e21: 3 total, 3 up, 3 in 2024-09-13T12:50:21.249 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-13T12:50:21.249 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:21.249 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:21.249 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T12:50:21.249 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T12:50:21.249 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:50:21.250 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:50:21.250 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:50:21.250 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T12:50:21.250 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:50:21.250 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:50:21.250 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:50:21.250 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T12:50:21.250 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:21.250 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T12:50:21.250 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:50:21.250 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:50:21.250 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:50:21.250 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:21 smithi086 ceph-mon[32985]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T12:50:21.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: pgmap v79: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:21.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-13T12:50:21.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: osdmap e21: 3 total, 3 up, 3 in 2024-09-13T12:50:21.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-13T12:50:21.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:21.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:21.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T12:50:21.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T12:50:21.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:50:21.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:50:21.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:50:21.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T12:50:21.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:50:21.358 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:50:21.358 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:50:21.358 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T12:50:21.358 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:21.358 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T12:50:21.358 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:50:21.358 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:50:21.358 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:50:21.358 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:21 smithi105 ceph-mon[33061]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T12:50:21.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: pgmap v79: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:21.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-13T12:50:21.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: osdmap e21: 3 total, 3 up, 3 in 2024-09-13T12:50:21.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-13T12:50:21.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T12:50:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T12:50:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:50:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:50:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:50:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T12:50:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:50:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:50:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:50:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T12:50:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-13T12:50:21.421 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:50:21.421 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:50:21.421 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2024-09-13T12:50:21.421 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:21 smithi070 ceph-mon[29685]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-13T12:50:22.562 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:22 smithi086 ceph-mon[32985]: osdmap e22: 3 total, 3 up, 3 in 2024-09-13T12:50:22.562 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:22 smithi086 ceph-mon[32985]: from='client.24176 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:50:22.562 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:22 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:50:22.562 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:22 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:50:22.562 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:22 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:22.608 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:22 smithi105 ceph-mon[33061]: osdmap e22: 3 total, 3 up, 3 in 2024-09-13T12:50:22.609 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:22 smithi105 ceph-mon[33061]: from='client.24176 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:50:22.609 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:22 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:50:22.609 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:22 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:50:22.609 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:22 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:22.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:22 smithi070 ceph-mon[29685]: osdmap e22: 3 total, 3 up, 3 in 2024-09-13T12:50:22.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:22 smithi070 ceph-mon[29685]: from='client.24176 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi086:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:50:22.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:22 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:50:22.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:22 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:50:22.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:22 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:23.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:23 smithi086 ceph-mon[32985]: pgmap v82: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:23.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:23 smithi086 ceph-mon[32985]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-13T12:50:23.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:23 smithi086 ceph-mon[32985]: Cluster is now healthy 2024-09-13T12:50:23.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:23 smithi086 ceph-mon[32985]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-13T12:50:23.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:23 smithi105 ceph-mon[33061]: pgmap v82: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:23.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:23 smithi105 ceph-mon[33061]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-13T12:50:23.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:23 smithi105 ceph-mon[33061]: Cluster is now healthy 2024-09-13T12:50:23.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:23 smithi105 ceph-mon[33061]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-13T12:50:23.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:23 smithi070 ceph-mon[29685]: pgmap v82: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:23.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:23 smithi070 ceph-mon[29685]: Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-13T12:50:23.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:23 smithi070 ceph-mon[29685]: Cluster is now healthy 2024-09-13T12:50:23.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:23 smithi070 ceph-mon[29685]: mgrmap e15: a(active, since 2m), standbys: b 2024-09-13T12:50:24.363 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:24 smithi086 ceph-mon[32985]: from='client.? 172.21.15.86:0/318051280' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c9fd3302-2df7-4af2-86bc-1851f74e20d0"} : dispatch 2024-09-13T12:50:24.364 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:24 smithi086 ceph-mon[32985]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c9fd3302-2df7-4af2-86bc-1851f74e20d0"} : dispatch 2024-09-13T12:50:24.364 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:24 smithi086 ceph-mon[32985]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c9fd3302-2df7-4af2-86bc-1851f74e20d0"}]': finished 2024-09-13T12:50:24.364 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:24 smithi086 ceph-mon[32985]: osdmap e23: 4 total, 3 up, 4 in 2024-09-13T12:50:24.364 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:24 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:24.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:24 smithi070 ceph-mon[29685]: from='client.? 172.21.15.86:0/318051280' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c9fd3302-2df7-4af2-86bc-1851f74e20d0"} : dispatch 2024-09-13T12:50:24.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:24 smithi070 ceph-mon[29685]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c9fd3302-2df7-4af2-86bc-1851f74e20d0"} : dispatch 2024-09-13T12:50:24.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:24 smithi070 ceph-mon[29685]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c9fd3302-2df7-4af2-86bc-1851f74e20d0"}]': finished 2024-09-13T12:50:24.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:24 smithi070 ceph-mon[29685]: osdmap e23: 4 total, 3 up, 4 in 2024-09-13T12:50:24.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:24 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:24.541 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:24 smithi105 ceph-mon[33061]: from='client.? 172.21.15.86:0/318051280' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c9fd3302-2df7-4af2-86bc-1851f74e20d0"} : dispatch 2024-09-13T12:50:24.541 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:24 smithi105 ceph-mon[33061]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "c9fd3302-2df7-4af2-86bc-1851f74e20d0"} : dispatch 2024-09-13T12:50:24.541 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:24 smithi105 ceph-mon[33061]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c9fd3302-2df7-4af2-86bc-1851f74e20d0"}]': finished 2024-09-13T12:50:24.541 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:24 smithi105 ceph-mon[33061]: osdmap e23: 4 total, 3 up, 4 in 2024-09-13T12:50:24.542 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:24 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:25.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:25 smithi105 ceph-mon[33061]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:25.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:25 smithi105 ceph-mon[33061]: from='client.? 172.21.15.86:0/1314866850' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:50:25.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:25 smithi070 ceph-mon[29685]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:25.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:25 smithi070 ceph-mon[29685]: from='client.? 172.21.15.86:0/1314866850' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:50:25.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:25 smithi086 ceph-mon[32985]: pgmap v84: 1 pgs: 1 active+clean; 577 KiB data, 81 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:25.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:25 smithi086 ceph-mon[32985]: from='client.? 172.21.15.86:0/1314866850' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:50:27.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:27 smithi105 ceph-mon[33061]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:27.661 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:27 smithi086 ceph-mon[32985]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:27.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:27 smithi070 ceph-mon[29685]: pgmap v85: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:29.359 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:29 smithi086 ceph-mon[32985]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:29.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:29 smithi105 ceph-mon[33061]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:29.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:29 smithi070 ceph-mon[29685]: pgmap v86: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:31.560 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:31 smithi086 ceph-mon[32985]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:31.560 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:31 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-13T12:50:31.560 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:31 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:31.560 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:31 smithi086 ceph-mon[32985]: Deploying daemon osd.3 on smithi086 2024-09-13T12:50:31.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:31 smithi105 ceph-mon[33061]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:31.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:31 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-13T12:50:31.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:31 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:31.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:31 smithi105 ceph-mon[33061]: Deploying daemon osd.3 on smithi086 2024-09-13T12:50:31.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:31 smithi070 ceph-mon[29685]: pgmap v87: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:31.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-13T12:50:31.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:31.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:31 smithi070 ceph-mon[29685]: Deploying daemon osd.3 on smithi086 2024-09-13T12:50:33.607 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:33 smithi105 ceph-mon[33061]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:33.637 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:33 smithi086 ceph-mon[32985]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:33.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:33 smithi070 ceph-mon[29685]: pgmap v88: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:35.369 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:35 smithi086 ceph-mon[32985]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:35.608 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:35 smithi105 ceph-mon[33061]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:35.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:35 smithi070 ceph-mon[29685]: pgmap v89: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:36.510 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:36 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:50:36.510 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:36 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:36.510 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:36 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:36.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:36 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:50:36.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:36 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:36.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:36 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:36.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:36 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:50:36.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:36 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:36.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:36 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:38.249 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:37 smithi086 ceph-mon[32985]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:38.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:37 smithi105 ceph-mon[33061]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:38.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:37 smithi070 ceph-mon[29685]: pgmap v90: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:39.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:39 smithi105 ceph-mon[33061]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:39.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:39 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:39.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:39 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:39.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:39 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:39.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:39 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:50:39.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:39 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:39.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:39 smithi070 ceph-mon[29685]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:39.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:39 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:39.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:39 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:39.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:39 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:39.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:39 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:50:39.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:39 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:39.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:39 smithi086 ceph-mon[32985]: pgmap v91: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:39.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:39 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:39.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:39 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:39.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:39 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:39.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:39 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:50:39.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:39 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:40.762 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:40 smithi086 ceph-mon[32985]: from='osd.3 [v2:172.21.15.86:6808/3848176702,v1:172.21.15.86:6809/3848176702]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-13T12:50:40.762 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:40 smithi086 ceph-mon[32985]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-13T12:50:40.808 INFO:teuthology.orchestra.run.smithi086.stdout:Created osd(s) 3 on host 'smithi086' 2024-09-13T12:50:40.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:40 smithi105 ceph-mon[33061]: from='osd.3 [v2:172.21.15.86:6808/3848176702,v1:172.21.15.86:6809/3848176702]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-13T12:50:40.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:40 smithi105 ceph-mon[33061]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-13T12:50:40.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:40 smithi070 ceph-mon[29685]: from='osd.3 [v2:172.21.15.86:6808/3848176702,v1:172.21.15.86:6809/3848176702]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-13T12:50:40.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:40 smithi070 ceph-mon[29685]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-13T12:50:41.435 DEBUG:teuthology.orchestra.run.smithi086:osd.3> sudo journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.3.service 2024-09-13T12:50:41.438 INFO:tasks.cephadm:Deploying osd.4 on smithi105 with /dev/vg_nvme/lv_4... 2024-09-13T12:50:41.438 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_4 2024-09-13T12:50:41.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:41 smithi086 ceph-mon[32985]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:41.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:41 smithi086 ceph-mon[32985]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-13T12:50:41.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:41 smithi086 ceph-mon[32985]: osdmap e24: 4 total, 3 up, 4 in 2024-09-13T12:50:41.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:41 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:41.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:41 smithi086 ceph-mon[32985]: from='osd.3 [v2:172.21.15.86:6808/3848176702,v1:172.21.15.86:6809/3848176702]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-13T12:50:41.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:41 smithi086 ceph-mon[32985]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-13T12:50:41.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:41 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:50:41.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:41 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:41.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:41 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:41.696 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T12:50:41.786 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:41 smithi105 ceph-mon[33061]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:41.787 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:41 smithi105 ceph-mon[33061]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-13T12:50:41.787 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:41 smithi105 ceph-mon[33061]: osdmap e24: 4 total, 3 up, 4 in 2024-09-13T12:50:41.787 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:41 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:41.787 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:41 smithi105 ceph-mon[33061]: from='osd.3 [v2:172.21.15.86:6808/3848176702,v1:172.21.15.86:6809/3848176702]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-13T12:50:41.787 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:41 smithi105 ceph-mon[33061]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-13T12:50:41.787 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:41 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:50:41.787 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:41 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:41.787 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:41 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:41.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:41 smithi070 ceph-mon[29685]: pgmap v92: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:41.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:41 smithi070 ceph-mon[29685]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-13T12:50:41.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:41 smithi070 ceph-mon[29685]: osdmap e24: 4 total, 3 up, 4 in 2024-09-13T12:50:41.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:41 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:41.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:41 smithi070 ceph-mon[29685]: from='osd.3 [v2:172.21.15.86:6808/3848176702,v1:172.21.15.86:6809/3848176702]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-13T12:50:41.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:41 smithi070 ceph-mon[29685]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]} : dispatch 2024-09-13T12:50:41.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:41 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:50:41.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:41 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:41.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:41 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:42.425 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:50:42 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3[42977]: 2024-09-13T12:50:42.037+0000 7f5ae5ce8640 -1 osd.3 0 waiting for initial osdmap 2024-09-13T12:50:42.426 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:50:42 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3[42977]: 2024-09-13T12:50:42.040+0000 7f5addb07640 -1 osd.3 25 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-13T12:50:42.911 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:42 smithi105 ceph-mon[33061]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-13T12:50:42.911 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:42 smithi105 ceph-mon[33061]: osdmap e25: 4 total, 3 up, 4 in 2024-09-13T12:50:42.911 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:42 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:42.911 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:42 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:42.911 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:42 smithi105 ceph-mon[33061]: from='osd.3 ' entity='osd.3' 2024-09-13T12:50:42.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:42 smithi070 ceph-mon[29685]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-13T12:50:42.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:42 smithi070 ceph-mon[29685]: osdmap e25: 4 total, 3 up, 4 in 2024-09-13T12:50:42.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:42 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:42.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:42 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:42.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:42 smithi070 ceph-mon[29685]: from='osd.3 ' entity='osd.3' 2024-09-13T12:50:42.921 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:42 smithi086 ceph-mon[32985]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi086", "root=default"]}]': finished 2024-09-13T12:50:42.921 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:42 smithi086 ceph-mon[32985]: osdmap e25: 4 total, 3 up, 4 in 2024-09-13T12:50:42.921 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:42 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:42.921 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:42 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:42.921 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:42 smithi086 ceph-mon[32985]: from='osd.3 ' entity='osd.3' 2024-09-13T12:50:43.789 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:43 smithi105 ceph-mon[33061]: purged_snaps scrub starts 2024-09-13T12:50:43.790 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:43 smithi105 ceph-mon[33061]: purged_snaps scrub ok 2024-09-13T12:50:43.790 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:43 smithi105 ceph-mon[33061]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:43.790 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:43 smithi105 ceph-mon[33061]: osd.3 [v2:172.21.15.86:6808/3848176702,v1:172.21.15.86:6809/3848176702] boot 2024-09-13T12:50:43.790 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:43 smithi105 ceph-mon[33061]: osdmap e26: 4 total, 4 up, 4 in 2024-09-13T12:50:43.790 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:43 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:43.790 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:43 smithi105 ceph-mon[33061]: osdmap e27: 4 total, 4 up, 4 in 2024-09-13T12:50:43.886 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:43 smithi086 ceph-mon[32985]: purged_snaps scrub starts 2024-09-13T12:50:43.886 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:43 smithi086 ceph-mon[32985]: purged_snaps scrub ok 2024-09-13T12:50:43.886 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:43 smithi086 ceph-mon[32985]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:43.886 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:43 smithi086 ceph-mon[32985]: osd.3 [v2:172.21.15.86:6808/3848176702,v1:172.21.15.86:6809/3848176702] boot 2024-09-13T12:50:43.886 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:43 smithi086 ceph-mon[32985]: osdmap e26: 4 total, 4 up, 4 in 2024-09-13T12:50:43.886 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:43 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:43.886 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:43 smithi086 ceph-mon[32985]: osdmap e27: 4 total, 4 up, 4 in 2024-09-13T12:50:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:43 smithi070 ceph-mon[29685]: purged_snaps scrub starts 2024-09-13T12:50:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:43 smithi070 ceph-mon[29685]: purged_snaps scrub ok 2024-09-13T12:50:43.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:43 smithi070 ceph-mon[29685]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 82 MiB used, 268 GiB / 268 GiB avail 2024-09-13T12:50:43.922 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:43 smithi070 ceph-mon[29685]: osd.3 [v2:172.21.15.86:6808/3848176702,v1:172.21.15.86:6809/3848176702] boot 2024-09-13T12:50:43.922 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:43 smithi070 ceph-mon[29685]: osdmap e26: 4 total, 4 up, 4 in 2024-09-13T12:50:43.922 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:43 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-13T12:50:43.922 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:43 smithi070 ceph-mon[29685]: osdmap e27: 4 total, 4 up, 4 in 2024-09-13T12:50:44.017 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:50:44.043 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi105:vg_nvme/lv_4 2024-09-13T12:50:44.289 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T12:50:45.383 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:50:45.383 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: osdmap e28: 4 total, 4 up, 4 in 2024-09-13T12:50:45.383 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: Detected new or changed devices on smithi086 2024-09-13T12:50:45.383 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:45.383 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:45.383 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-13T12:50:45.383 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-13T12:50:45.383 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: Adjusting osd_memory_target on smithi086 to 8544M 2024-09-13T12:50:45.384 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:45.384 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:45.384 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:50:45.384 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:45.384 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: from='client.24148 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi105:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:50:45.384 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:50:45.384 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:50:45.384 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:45 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:45.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:50:45.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: osdmap e28: 4 total, 4 up, 4 in 2024-09-13T12:50:45.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: Detected new or changed devices on smithi086 2024-09-13T12:50:45.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:45.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:45.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-13T12:50:45.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-13T12:50:45.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: Adjusting osd_memory_target on smithi086 to 8544M 2024-09-13T12:50:45.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:45.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:45.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:50:45.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:45.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: from='client.24148 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi105:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:50:45.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:50:45.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:50:45.421 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:45 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:45.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:50:45.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: osdmap e28: 4 total, 4 up, 4 in 2024-09-13T12:50:45.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: Detected new or changed devices on smithi086 2024-09-13T12:50:45.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:45.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:45.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-13T12:50:45.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-13T12:50:45.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: Adjusting osd_memory_target on smithi086 to 8544M 2024-09-13T12:50:45.427 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:45.427 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:45.427 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:50:45.427 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:50:45.427 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: from='client.24148 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi105:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:50:45.427 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:50:45.427 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:50:45.427 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:45 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:47.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:47 smithi105 ceph-mon[33061]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:50:47.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:47 smithi070 ceph-mon[29685]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:50:47.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:47 smithi086 ceph-mon[32985]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:50:48.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:48 smithi070 ceph-mon[29685]: from='client.? 172.21.15.105:0/4102073225' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2e64f9c2-3221-4f90-a171-baa718e3be7c"} : dispatch 2024-09-13T12:50:48.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:48 smithi070 ceph-mon[29685]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2e64f9c2-3221-4f90-a171-baa718e3be7c"} : dispatch 2024-09-13T12:50:48.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:48 smithi070 ceph-mon[29685]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2e64f9c2-3221-4f90-a171-baa718e3be7c"}]': finished 2024-09-13T12:50:48.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:48 smithi070 ceph-mon[29685]: osdmap e29: 5 total, 4 up, 5 in 2024-09-13T12:50:48.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:48 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:50:48.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:48 smithi070 ceph-mon[29685]: from='client.? 172.21.15.105:0/4215651505' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:50:48.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:48 smithi086 ceph-mon[32985]: from='client.? 172.21.15.105:0/4102073225' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2e64f9c2-3221-4f90-a171-baa718e3be7c"} : dispatch 2024-09-13T12:50:48.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:48 smithi086 ceph-mon[32985]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2e64f9c2-3221-4f90-a171-baa718e3be7c"} : dispatch 2024-09-13T12:50:48.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:48 smithi086 ceph-mon[32985]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2e64f9c2-3221-4f90-a171-baa718e3be7c"}]': finished 2024-09-13T12:50:48.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:48 smithi086 ceph-mon[32985]: osdmap e29: 5 total, 4 up, 5 in 2024-09-13T12:50:48.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:48 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:50:48.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:48 smithi086 ceph-mon[32985]: from='client.? 172.21.15.105:0/4215651505' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:50:48.608 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:48 smithi105 ceph-mon[33061]: from='client.? 172.21.15.105:0/4102073225' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2e64f9c2-3221-4f90-a171-baa718e3be7c"} : dispatch 2024-09-13T12:50:48.608 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:48 smithi105 ceph-mon[33061]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2e64f9c2-3221-4f90-a171-baa718e3be7c"} : dispatch 2024-09-13T12:50:48.608 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:48 smithi105 ceph-mon[33061]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2e64f9c2-3221-4f90-a171-baa718e3be7c"}]': finished 2024-09-13T12:50:48.608 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:48 smithi105 ceph-mon[33061]: osdmap e29: 5 total, 4 up, 5 in 2024-09-13T12:50:48.608 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:48 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:50:48.609 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:48 smithi105 ceph-mon[33061]: from='client.? 172.21.15.105:0/4215651505' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:50:49.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:49 smithi105 ceph-mon[33061]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 107 KiB/s, 0 objects/s recovering 2024-09-13T12:50:49.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:49 smithi070 ceph-mon[29685]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 107 KiB/s, 0 objects/s recovering 2024-09-13T12:50:49.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:49 smithi086 ceph-mon[32985]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail; 107 KiB/s, 0 objects/s recovering 2024-09-13T12:50:51.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:51 smithi105 ceph-mon[33061]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-13T12:50:51.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:51 smithi070 ceph-mon[29685]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-13T12:50:51.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:51 smithi086 ceph-mon[32985]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-09-13T12:50:53.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:53 smithi105 ceph-mon[33061]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-13T12:50:53.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:53 smithi070 ceph-mon[29685]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-13T12:50:53.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:53 smithi086 ceph-mon[32985]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-13T12:50:55.600 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:55 smithi105 ceph-mon[33061]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:50:55.600 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:55 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-13T12:50:55.600 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:55 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:55.600 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:55 smithi105 ceph-mon[33061]: Deploying daemon osd.4 on smithi105 2024-09-13T12:50:55.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:55 smithi070 ceph-mon[29685]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:50:55.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:55 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-13T12:50:55.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:55 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:55.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:55 smithi070 ceph-mon[29685]: Deploying daemon osd.4 on smithi105 2024-09-13T12:50:55.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:55 smithi086 ceph-mon[32985]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:50:55.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:55 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-13T12:50:55.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:55 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:50:55.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:55 smithi086 ceph-mon[32985]: Deploying daemon osd.4 on smithi105 2024-09-13T12:50:57.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:57 smithi105 ceph-mon[33061]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:50:57.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:57 smithi070 ceph-mon[29685]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:50:57.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:57 smithi086 ceph-mon[32985]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:50:59.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:50:59 smithi105 ceph-mon[33061]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-09-13T12:50:59.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:50:59 smithi070 ceph-mon[29685]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-09-13T12:50:59.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:50:59 smithi086 ceph-mon[32985]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail; 54 KiB/s, 0 objects/s recovering 2024-09-13T12:51:00.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:00 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:51:00.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:00 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:00.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:00 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:00.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:00 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:51:00.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:00 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:00.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:00 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:00.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:00 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:51:00.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:00 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:00.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:00 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:01.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:01 smithi070 ceph-mon[29685]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:51:01.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:01 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:01.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:01 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:01.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:01 smithi086 ceph-mon[32985]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:51:01.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:01 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:01.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:01 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:01.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:01 smithi105 ceph-mon[33061]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:51:01.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:01 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:01.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:01 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:02.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:02 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:02.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:02 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:51:02.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:02 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:02.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:02 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:02.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:02 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:51:02.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:02 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:02.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:02 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:02.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:02 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:51:02.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:02 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:03.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:03 smithi105 ceph-mon[33061]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:51:03.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:03 smithi070 ceph-mon[29685]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:51:03.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:03 smithi086 ceph-mon[32985]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:51:04.560 INFO:teuthology.orchestra.run.smithi105.stdout:Created osd(s) 4 on host 'smithi105' 2024-09-13T12:51:04.852 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:04 smithi105 ceph-mon[33061]: from='osd.4 [v2:172.21.15.105:6800/510526317,v1:172.21.15.105:6801/510526317]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-13T12:51:04.852 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:04 smithi105 ceph-mon[33061]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-13T12:51:04.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:04 smithi070 ceph-mon[29685]: from='osd.4 [v2:172.21.15.105:6800/510526317,v1:172.21.15.105:6801/510526317]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-13T12:51:04.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:04 smithi070 ceph-mon[29685]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-13T12:51:04.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:04 smithi086 ceph-mon[32985]: from='osd.4 [v2:172.21.15.105:6800/510526317,v1:172.21.15.105:6801/510526317]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-13T12:51:04.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:04 smithi086 ceph-mon[32985]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-13T12:51:05.121 DEBUG:teuthology.orchestra.run.smithi105:osd.4> sudo journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.4.service 2024-09-13T12:51:05.123 INFO:tasks.cephadm:Deploying osd.5 on smithi105 with /dev/vg_nvme/lv_3... 2024-09-13T12:51:05.123 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- lvm zap /dev/vg_nvme/lv_3 2024-09-13T12:51:05.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:05 smithi105 ceph-mon[33061]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:51:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:05 smithi105 ceph-mon[33061]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-13T12:51:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:05 smithi105 ceph-mon[33061]: osdmap e30: 5 total, 4 up, 5 in 2024-09-13T12:51:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:05 smithi105 ceph-mon[33061]: from='osd.4 [v2:172.21.15.105:6800/510526317,v1:172.21.15.105:6801/510526317]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi105", "root=default"]} : dispatch 2024-09-13T12:51:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:05 smithi105 ceph-mon[33061]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi105", "root=default"]} : dispatch 2024-09-13T12:51:05.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:51:05.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:05.858 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:05 smithi070 ceph-mon[29685]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:51:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:05 smithi070 ceph-mon[29685]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-13T12:51:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:05 smithi070 ceph-mon[29685]: osdmap e30: 5 total, 4 up, 5 in 2024-09-13T12:51:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:05 smithi070 ceph-mon[29685]: from='osd.4 [v2:172.21.15.105:6800/510526317,v1:172.21.15.105:6801/510526317]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi105", "root=default"]} : dispatch 2024-09-13T12:51:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:05 smithi070 ceph-mon[29685]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi105", "root=default"]} : dispatch 2024-09-13T12:51:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:51:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:05.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:05 smithi086 ceph-mon[32985]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:51:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:05 smithi086 ceph-mon[32985]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-13T12:51:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:05 smithi086 ceph-mon[32985]: osdmap e30: 5 total, 4 up, 5 in 2024-09-13T12:51:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:05 smithi086 ceph-mon[32985]: from='osd.4 [v2:172.21.15.105:6800/510526317,v1:172.21.15.105:6801/510526317]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi105", "root=default"]} : dispatch 2024-09-13T12:51:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:05 smithi086 ceph-mon[32985]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi105", "root=default"]} : dispatch 2024-09-13T12:51:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:51:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:06.228 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T12:51:06.289 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:51:06 smithi105 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4[37228]: 2024-09-13T12:51:06.008+0000 7fab6a7ef640 -1 osd.4 0 waiting for initial osdmap 2024-09-13T12:51:06.289 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:51:06 smithi105 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4[37228]: 2024-09-13T12:51:06.011+0000 7fab61dfa640 -1 osd.4 31 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-13T12:51:06.831 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:06 smithi105 ceph-mon[33061]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi105", "root=default"]}]': finished 2024-09-13T12:51:06.831 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:06 smithi105 ceph-mon[33061]: osdmap e31: 5 total, 4 up, 5 in 2024-09-13T12:51:06.831 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:06 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:06.831 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:06 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:06.831 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:06 smithi105 ceph-mon[33061]: from='osd.4 ' entity='osd.4' 2024-09-13T12:51:06.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:06 smithi070 ceph-mon[29685]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi105", "root=default"]}]': finished 2024-09-13T12:51:06.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:06 smithi070 ceph-mon[29685]: osdmap e31: 5 total, 4 up, 5 in 2024-09-13T12:51:06.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:06 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:06.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:06 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:06.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:06 smithi070 ceph-mon[29685]: from='osd.4 ' entity='osd.4' 2024-09-13T12:51:06.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:06 smithi086 ceph-mon[32985]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi105", "root=default"]}]': finished 2024-09-13T12:51:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:06 smithi086 ceph-mon[32985]: osdmap e31: 5 total, 4 up, 5 in 2024-09-13T12:51:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:06 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:06 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:06 smithi086 ceph-mon[32985]: from='osd.4 ' entity='osd.4' 2024-09-13T12:51:07.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:07 smithi105 ceph-mon[33061]: purged_snaps scrub starts 2024-09-13T12:51:07.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:07 smithi105 ceph-mon[33061]: purged_snaps scrub ok 2024-09-13T12:51:07.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:07 smithi105 ceph-mon[33061]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:51:07.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:07 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:07.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:07 smithi105 ceph-mon[33061]: osd.4 [v2:172.21.15.105:6800/510526317,v1:172.21.15.105:6801/510526317] boot 2024-09-13T12:51:07.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:07 smithi105 ceph-mon[33061]: osdmap e32: 5 total, 5 up, 5 in 2024-09-13T12:51:07.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:07 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:07.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:07 smithi070 ceph-mon[29685]: purged_snaps scrub starts 2024-09-13T12:51:07.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:07 smithi070 ceph-mon[29685]: purged_snaps scrub ok 2024-09-13T12:51:07.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:07 smithi070 ceph-mon[29685]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:51:07.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:07 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:07.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:07 smithi070 ceph-mon[29685]: osd.4 [v2:172.21.15.105:6800/510526317,v1:172.21.15.105:6801/510526317] boot 2024-09-13T12:51:07.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:07 smithi070 ceph-mon[29685]: osdmap e32: 5 total, 5 up, 5 in 2024-09-13T12:51:07.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:07 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:07.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:07 smithi086 ceph-mon[32985]: purged_snaps scrub starts 2024-09-13T12:51:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:07 smithi086 ceph-mon[32985]: purged_snaps scrub ok 2024-09-13T12:51:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:07 smithi086 ceph-mon[32985]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:51:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:07 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:07 smithi086 ceph-mon[32985]: osd.4 [v2:172.21.15.105:6800/510526317,v1:172.21.15.105:6801/510526317] boot 2024-09-13T12:51:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:07 smithi086 ceph-mon[32985]: osdmap e32: 5 total, 5 up, 5 in 2024-09-13T12:51:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:07 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-13T12:51:08.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:08 smithi105 ceph-mon[33061]: osdmap e33: 5 total, 5 up, 5 in 2024-09-13T12:51:08.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:08 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:08.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:08 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:08.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:08 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-13T12:51:08.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:08 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:08.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:08 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:08.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:08 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:51:08.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:08 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:08.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:08 smithi070 ceph-mon[29685]: osdmap e33: 5 total, 5 up, 5 in 2024-09-13T12:51:08.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:08 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:08.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:08 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:08.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:08 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-13T12:51:08.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:08 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:08.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:08 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:08.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:08 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:51:08.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:08 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:08.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:08 smithi086 ceph-mon[32985]: osdmap e33: 5 total, 5 up, 5 in 2024-09-13T12:51:08.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:08 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:08.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:08 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:08.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:08 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-13T12:51:08.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:08 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:08.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:08 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:08.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:08 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:51:08.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:08 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:09.665 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-09-13T12:51:09.693 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph orch daemon add osd smithi105:vg_nvme/lv_3 2024-09-13T12:51:09.718 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:09 smithi105 ceph-mon[33061]: pgmap v116: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:09.718 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:09 smithi105 ceph-mon[33061]: Detected new or changed devices on smithi105 2024-09-13T12:51:09.718 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:09 smithi105 ceph-mon[33061]: Adjusting osd_memory_target on smithi105 to 21184M 2024-09-13T12:51:09.718 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:09 smithi105 ceph-mon[33061]: osdmap e34: 5 total, 5 up, 5 in 2024-09-13T12:51:09.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:09 smithi070 ceph-mon[29685]: pgmap v116: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:09.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:09 smithi070 ceph-mon[29685]: Detected new or changed devices on smithi105 2024-09-13T12:51:09.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:09 smithi070 ceph-mon[29685]: Adjusting osd_memory_target on smithi105 to 21184M 2024-09-13T12:51:09.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:09 smithi070 ceph-mon[29685]: osdmap e34: 5 total, 5 up, 5 in 2024-09-13T12:51:09.928 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:09 smithi086 ceph-mon[32985]: pgmap v116: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:09.929 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:09 smithi086 ceph-mon[32985]: Detected new or changed devices on smithi105 2024-09-13T12:51:09.929 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:09 smithi086 ceph-mon[32985]: Adjusting osd_memory_target on smithi105 to 21184M 2024-09-13T12:51:09.929 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:09 smithi086 ceph-mon[32985]: osdmap e34: 5 total, 5 up, 5 in 2024-09-13T12:51:09.937 INFO:teuthology.orchestra.run.smithi105.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.c/config 2024-09-13T12:51:11.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:11 smithi105 ceph-mon[33061]: pgmap v118: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:11.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:11 smithi105 ceph-mon[33061]: from='client.24175 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi105:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:51:11.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:11 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:51:11.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:11 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:51:11.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:11 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:11 smithi070 ceph-mon[29685]: pgmap v118: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:11 smithi070 ceph-mon[29685]: from='client.24175 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi105:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:51:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:11 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:51:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:11 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:51:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:11 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:11.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:11 smithi086 ceph-mon[32985]: pgmap v118: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:11.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:11 smithi086 ceph-mon[32985]: from='client.24175 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi105:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:51:11.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:11 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-13T12:51:11.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:11 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-13T12:51:11.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:11 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:13.620 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:13 smithi105 ceph-mon[33061]: pgmap v119: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:13.621 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:13 smithi105 ceph-mon[33061]: from='client.? 172.21.15.105:0/3353858777' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b258d6ec-3a12-44b7-a8be-9cf85e650f25"} : dispatch 2024-09-13T12:51:13.621 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:13 smithi105 ceph-mon[33061]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b258d6ec-3a12-44b7-a8be-9cf85e650f25"} : dispatch 2024-09-13T12:51:13.621 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:13 smithi105 ceph-mon[33061]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b258d6ec-3a12-44b7-a8be-9cf85e650f25"}]': finished 2024-09-13T12:51:13.621 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:13 smithi105 ceph-mon[33061]: osdmap e35: 6 total, 5 up, 6 in 2024-09-13T12:51:13.621 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:13 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:13.621 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:13 smithi105 ceph-mon[33061]: from='client.? 172.21.15.105:0/4077564939' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:51:13.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:13 smithi070 ceph-mon[29685]: pgmap v119: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:13.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:13 smithi070 ceph-mon[29685]: from='client.? 172.21.15.105:0/3353858777' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b258d6ec-3a12-44b7-a8be-9cf85e650f25"} : dispatch 2024-09-13T12:51:13.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:13 smithi070 ceph-mon[29685]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b258d6ec-3a12-44b7-a8be-9cf85e650f25"} : dispatch 2024-09-13T12:51:13.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:13 smithi070 ceph-mon[29685]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b258d6ec-3a12-44b7-a8be-9cf85e650f25"}]': finished 2024-09-13T12:51:13.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:13 smithi070 ceph-mon[29685]: osdmap e35: 6 total, 5 up, 6 in 2024-09-13T12:51:13.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:13 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:13.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:13 smithi070 ceph-mon[29685]: from='client.? 172.21.15.105:0/4077564939' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:51:13.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:13 smithi086 ceph-mon[32985]: pgmap v119: 1 pgs: 1 peering; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:13.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:13 smithi086 ceph-mon[32985]: from='client.? 172.21.15.105:0/3353858777' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b258d6ec-3a12-44b7-a8be-9cf85e650f25"} : dispatch 2024-09-13T12:51:13.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:13 smithi086 ceph-mon[32985]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "b258d6ec-3a12-44b7-a8be-9cf85e650f25"} : dispatch 2024-09-13T12:51:13.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:13 smithi086 ceph-mon[32985]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b258d6ec-3a12-44b7-a8be-9cf85e650f25"}]': finished 2024-09-13T12:51:13.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:13 smithi086 ceph-mon[32985]: osdmap e35: 6 total, 5 up, 6 in 2024-09-13T12:51:13.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:13 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:13.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:13 smithi086 ceph-mon[32985]: from='client.? 172.21.15.105:0/4077564939' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-13T12:51:15.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:15 smithi105 ceph-mon[33061]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-13T12:51:15.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:15 smithi070 ceph-mon[29685]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-13T12:51:15.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:15 smithi086 ceph-mon[32985]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 89 KiB/s, 0 objects/s recovering 2024-09-13T12:51:17.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:17 smithi105 ceph-mon[33061]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-13T12:51:17.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:17 smithi070 ceph-mon[29685]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-13T12:51:17.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:17 smithi086 ceph-mon[32985]: pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-09-13T12:51:19.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:19 smithi105 ceph-mon[33061]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-13T12:51:19.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:19 smithi070 ceph-mon[29685]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-13T12:51:19.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:19 smithi086 ceph-mon[32985]: pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 61 KiB/s, 0 objects/s recovering 2024-09-13T12:51:20.819 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-13T12:51:20.819 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:20 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:20.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-13T12:51:20.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:20.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-13T12:51:20.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:21.733 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:21 smithi105 ceph-mon[33061]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:51:21.733 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:21 smithi105 ceph-mon[33061]: Deploying daemon osd.5 on smithi105 2024-09-13T12:51:21.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:21 smithi070 ceph-mon[29685]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:51:21.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:21 smithi070 ceph-mon[29685]: Deploying daemon osd.5 on smithi105 2024-09-13T12:51:21.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:21 smithi086 ceph-mon[32985]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:51:21.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:21 smithi086 ceph-mon[32985]: Deploying daemon osd.5 on smithi105 2024-09-13T12:51:23.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:23 smithi105 ceph-mon[33061]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:51:23.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:23 smithi070 ceph-mon[29685]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:51:23.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:23 smithi086 ceph-mon[32985]: pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:51:25.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:25 smithi105 ceph-mon[33061]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:25.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:25 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:51:25.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:25 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:25.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:25 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:25.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:25 smithi070 ceph-mon[29685]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:25.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:25 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:51:25.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:25 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:25.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:25 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:25.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:25 smithi086 ceph-mon[32985]: pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:25.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:25 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:51:25.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:25 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:25.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:25 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:28.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:27 smithi070 ceph-mon[29685]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:28.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:28.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:28.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:28.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:51:28.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:28.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:27 smithi086 ceph-mon[32985]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:28.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:27 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:28.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:27 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:28.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:27 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:28.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:27 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:51:28.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:27 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:28.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:27 smithi105 ceph-mon[33061]: pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:28.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:27 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:28.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:27 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:28.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:27 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:28.358 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:27 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:51:28.358 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:27 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:30.148 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:29 smithi105 ceph-mon[33061]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:30.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:29 smithi070 ceph-mon[29685]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:30.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:29 smithi086 ceph-mon[32985]: pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:30.771 INFO:teuthology.orchestra.run.smithi105.stdout:Created osd(s) 5 on host 'smithi105' 2024-09-13T12:51:31.067 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:30 smithi105 ceph-mon[33061]: from='osd.5 [v2:172.21.15.105:6808/1556952492,v1:172.21.15.105:6809/1556952492]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-13T12:51:31.067 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:30 smithi105 ceph-mon[33061]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-13T12:51:31.067 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:30 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:51:31.067 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:30 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:31.067 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:30 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:31.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:30 smithi070 ceph-mon[29685]: from='osd.5 [v2:172.21.15.105:6808/1556952492,v1:172.21.15.105:6809/1556952492]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-13T12:51:31.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:30 smithi070 ceph-mon[29685]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-13T12:51:31.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:30 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:51:31.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:30 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:31.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:30 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:31.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:30 smithi086 ceph-mon[32985]: from='osd.5 [v2:172.21.15.105:6808/1556952492,v1:172.21.15.105:6809/1556952492]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-13T12:51:31.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:30 smithi086 ceph-mon[32985]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-13T12:51:31.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:30 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:51:31.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:30 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:31.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:30 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:31.327 DEBUG:teuthology.orchestra.run.smithi105:osd.5> sudo journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.5.service 2024-09-13T12:51:31.372 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-09-13T12:51:31.372 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-13T12:51:31.630 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:32.001 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:31 smithi070 ceph-mon[29685]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:32.001 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:31 smithi070 ceph-mon[29685]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-13T12:51:32.001 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:31 smithi070 ceph-mon[29685]: osdmap e36: 6 total, 5 up, 6 in 2024-09-13T12:51:32.001 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:32.001 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:31 smithi070 ceph-mon[29685]: from='osd.5 [v2:172.21.15.105:6808/1556952492,v1:172.21.15.105:6809/1556952492]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi105", "root=default"]} : dispatch 2024-09-13T12:51:32.001 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:31 smithi070 ceph-mon[29685]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi105", "root=default"]} : dispatch 2024-09-13T12:51:32.264 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:51:32.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:31 smithi105 ceph-mon[33061]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:32.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:31 smithi105 ceph-mon[33061]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-13T12:51:32.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:31 smithi105 ceph-mon[33061]: osdmap e36: 6 total, 5 up, 6 in 2024-09-13T12:51:32.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:31 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:32.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:31 smithi105 ceph-mon[33061]: from='osd.5 [v2:172.21.15.105:6808/1556952492,v1:172.21.15.105:6809/1556952492]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi105", "root=default"]} : dispatch 2024-09-13T12:51:32.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:31 smithi105 ceph-mon[33061]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi105", "root=default"]} : dispatch 2024-09-13T12:51:32.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:31 smithi086 ceph-mon[32985]: pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:32.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:31 smithi086 ceph-mon[32985]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-13T12:51:32.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:31 smithi086 ceph-mon[32985]: osdmap e36: 6 total, 5 up, 6 in 2024-09-13T12:51:32.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:31 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:32.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:31 smithi086 ceph-mon[32985]: from='osd.5 [v2:172.21.15.105:6808/1556952492,v1:172.21.15.105:6809/1556952492]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi105", "root=default"]} : dispatch 2024-09-13T12:51:32.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:31 smithi086 ceph-mon[32985]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi105", "root=default"]} : dispatch 2024-09-13T12:51:32.658 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:51:32 smithi105 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5[42704]: 2024-09-13T12:51:32.357+0000 7f291b052640 -1 osd.5 0 waiting for initial osdmap 2024-09-13T12:51:32.658 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:51:32 smithi105 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5[42704]: 2024-09-13T12:51:32.363+0000 7f2912e71640 -1 osd.5 37 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-09-13T12:51:32.849 INFO:teuthology.orchestra.run.smithi070.stdout:{"epoch":37,"num_osds":6,"num_up_osds":5,"osd_up_since":1726231866,"num_in_osds":6,"osd_in_since":1726231872,"num_remapped_pgs":0} 2024-09-13T12:51:33.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:32 smithi070 ceph-mon[29685]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi105", "root=default"]}]': finished 2024-09-13T12:51:33.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:32 smithi070 ceph-mon[29685]: osdmap e37: 6 total, 5 up, 6 in 2024-09-13T12:51:33.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:33.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:33.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:32 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/1830573338' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-13T12:51:33.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:32 smithi070 ceph-mon[29685]: from='osd.5 ' entity='osd.5' 2024-09-13T12:51:33.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:32 smithi105 ceph-mon[33061]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi105", "root=default"]}]': finished 2024-09-13T12:51:33.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:32 smithi105 ceph-mon[33061]: osdmap e37: 6 total, 5 up, 6 in 2024-09-13T12:51:33.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:32 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:33.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:32 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:33.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:32 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/1830573338' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-13T12:51:33.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:32 smithi105 ceph-mon[33061]: from='osd.5 ' entity='osd.5' 2024-09-13T12:51:33.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:32 smithi086 ceph-mon[32985]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi105", "root=default"]}]': finished 2024-09-13T12:51:33.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:32 smithi086 ceph-mon[32985]: osdmap e37: 6 total, 5 up, 6 in 2024-09-13T12:51:33.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:32 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:33.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:32 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:33.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:32 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/1830573338' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-13T12:51:33.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:32 smithi086 ceph-mon[32985]: from='osd.5 ' entity='osd.5' 2024-09-13T12:51:33.851 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph osd stat -f json 2024-09-13T12:51:34.022 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:33 smithi105 ceph-mon[33061]: purged_snaps scrub starts 2024-09-13T12:51:34.023 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:33 smithi105 ceph-mon[33061]: purged_snaps scrub ok 2024-09-13T12:51:34.023 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:33 smithi105 ceph-mon[33061]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:34.023 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:33 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:34.023 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:33 smithi105 ceph-mon[33061]: osd.5 [v2:172.21.15.105:6808/1556952492,v1:172.21.15.105:6809/1556952492] boot 2024-09-13T12:51:34.023 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:33 smithi105 ceph-mon[33061]: osdmap e38: 6 total, 6 up, 6 in 2024-09-13T12:51:34.023 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:33 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:34.023 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:33 smithi105 ceph-mon[33061]: osdmap e39: 6 total, 6 up, 6 in 2024-09-13T12:51:34.117 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:34.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:33 smithi070 ceph-mon[29685]: purged_snaps scrub starts 2024-09-13T12:51:34.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:33 smithi070 ceph-mon[29685]: purged_snaps scrub ok 2024-09-13T12:51:34.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:33 smithi070 ceph-mon[29685]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:34.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:33 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:34.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:33 smithi070 ceph-mon[29685]: osd.5 [v2:172.21.15.105:6808/1556952492,v1:172.21.15.105:6809/1556952492] boot 2024-09-13T12:51:34.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:33 smithi070 ceph-mon[29685]: osdmap e38: 6 total, 6 up, 6 in 2024-09-13T12:51:34.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:33 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:34.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:33 smithi070 ceph-mon[29685]: osdmap e39: 6 total, 6 up, 6 in 2024-09-13T12:51:34.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:33 smithi086 ceph-mon[32985]: purged_snaps scrub starts 2024-09-13T12:51:34.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:33 smithi086 ceph-mon[32985]: purged_snaps scrub ok 2024-09-13T12:51:34.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:33 smithi086 ceph-mon[32985]: pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:51:34.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:33 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:34.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:33 smithi086 ceph-mon[32985]: osd.5 [v2:172.21.15.105:6808/1556952492,v1:172.21.15.105:6809/1556952492] boot 2024-09-13T12:51:34.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:33 smithi086 ceph-mon[32985]: osdmap e38: 6 total, 6 up, 6 in 2024-09-13T12:51:34.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:33 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-13T12:51:34.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:33 smithi086 ceph-mon[32985]: osdmap e39: 6 total, 6 up, 6 in 2024-09-13T12:51:34.778 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:51:35.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:35 smithi105 ceph-mon[33061]: pgmap v135: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:35.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:35 smithi105 ceph-mon[33061]: Detected new or changed devices on smithi105 2024-09-13T12:51:35.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:35 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:35.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:35 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:35.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:35 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-13T12:51:35.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:35 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-13T12:51:35.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:35 smithi105 ceph-mon[33061]: Adjusting osd_memory_target on smithi105 to 10592M 2024-09-13T12:51:35.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:35 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:35.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:35 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:35.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:35 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:51:35.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:35 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:35.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:35 smithi105 ceph-mon[33061]: osdmap e40: 6 total, 6 up, 6 in 2024-09-13T12:51:35.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:35 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/2246755076' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-13T12:51:35.410 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:35 smithi070 ceph-mon[29685]: pgmap v135: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:35.410 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:35 smithi070 ceph-mon[29685]: Detected new or changed devices on smithi105 2024-09-13T12:51:35.411 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:35 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:35.411 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:35 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:35.411 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:35 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-13T12:51:35.411 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:35 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-13T12:51:35.411 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:35 smithi070 ceph-mon[29685]: Adjusting osd_memory_target on smithi105 to 10592M 2024-09-13T12:51:35.411 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:35 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:35.411 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:35 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:35.411 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:35 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:51:35.411 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:35 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:35.411 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:35 smithi070 ceph-mon[29685]: osdmap e40: 6 total, 6 up, 6 in 2024-09-13T12:51:35.411 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:35 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/2246755076' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-13T12:51:35.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:35 smithi086 ceph-mon[32985]: pgmap v135: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:35.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:35 smithi086 ceph-mon[32985]: Detected new or changed devices on smithi105 2024-09-13T12:51:35.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:35 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:35.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:35 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:35.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:35 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-13T12:51:35.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:35 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-13T12:51:35.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:35 smithi086 ceph-mon[32985]: Adjusting osd_memory_target on smithi105 to 10592M 2024-09-13T12:51:35.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:35 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:35.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:35 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:51:35.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:35 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:51:35.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:35 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:51:35.427 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:35 smithi086 ceph-mon[32985]: osdmap e40: 6 total, 6 up, 6 in 2024-09-13T12:51:35.427 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:35 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/2246755076' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-13T12:51:35.438 INFO:teuthology.orchestra.run.smithi070.stdout:{"epoch":40,"num_osds":6,"num_up_osds":6,"osd_up_since":1726231892,"num_in_osds":6,"osd_in_since":1726231872,"num_remapped_pgs":0} 2024-09-13T12:51:35.439 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-13T12:51:35.680 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:36.304 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:51:36.305 INFO:teuthology.orchestra.run.smithi070.stdout:{"epoch":40,"fsid":"0c10639a-71ce-11ef-bceb-c7b262605968","created":"2024-09-13T12:47:08.409375+0000","modified":"2024-09-13T12:51:34.119588+0000","last_up_change":"2024-09-13T12:51:32.925529+0000","last_in_change":"2024-09-13T12:51:12.863425+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-09-13T12:50:18.312751+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,"is_stretch_pool":false,"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":"7a393e1c-3218-43db-91fe-bdf8b3836d26","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6802","nonce":1808329001},{"type":"v1","addr":"172.21.15.70:6803","nonce":1808329001}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6804","nonce":1808329001},{"type":"v1","addr":"172.21.15.70:6805","nonce":1808329001}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6808","nonce":1808329001},{"type":"v1","addr":"172.21.15.70:6809","nonce":1808329001}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6806","nonce":1808329001},{"type":"v1","addr":"172.21.15.70:6807","nonce":1808329001}]},"public_addr":"172.21.15.70:6803/1808329001","cluster_addr":"172.21.15.70:6805/1808329001","heartbeat_back_addr":"172.21.15.70:6809/1808329001","heartbeat_front_addr":"172.21.15.70:6807/1808329001","state":["exists","up"]},{"osd":1,"uuid":"eac14cf5-cd48-4d91-9670-00cb56cd337c","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.70:6810","nonce":2681390372},{"type":"v1","addr":"172.21.15.70:6811","nonce":2681390372}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6812","nonce":2681390372},{"type":"v1","addr":"172.21.15.70:6813","nonce":2681390372}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6816","nonce":2681390372},{"type":"v1","addr":"172.21.15.70:6817","nonce":2681390372}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6814","nonce":2681390372},{"type":"v1","addr":"172.21.15.70:6815","nonce":2681390372}]},"public_addr":"172.21.15.70:6811/2681390372","cluster_addr":"172.21.15.70:6813/2681390372","heartbeat_back_addr":"172.21.15.70:6817/2681390372","heartbeat_front_addr":"172.21.15.70:6815/2681390372","state":["exists","up"]},{"osd":2,"uuid":"b856cff8-d67e-4e9b-8365-a319c2689208","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.86:6800","nonce":2214144224},{"type":"v1","addr":"172.21.15.86:6801","nonce":2214144224}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6802","nonce":2214144224},{"type":"v1","addr":"172.21.15.86:6803","nonce":2214144224}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6806","nonce":2214144224},{"type":"v1","addr":"172.21.15.86:6807","nonce":2214144224}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6804","nonce":2214144224},{"type":"v1","addr":"172.21.15.86:6805","nonce":2214144224}]},"public_addr":"172.21.15.86:6801/2214144224","cluster_addr":"172.21.15.86:6803/2214144224","heartbeat_back_addr":"172.21.15.86:6807/2214144224","heartbeat_front_addr":"172.21.15.86:6805/2214144224","state":["exists","up"]},{"osd":3,"uuid":"c9fd3302-2df7-4af2-86bc-1851f74e20d0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6808","nonce":3848176702},{"type":"v1","addr":"172.21.15.86:6809","nonce":3848176702}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6810","nonce":3848176702},{"type":"v1","addr":"172.21.15.86:6811","nonce":3848176702}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6814","nonce":3848176702},{"type":"v1","addr":"172.21.15.86:6815","nonce":3848176702}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6812","nonce":3848176702},{"type":"v1","addr":"172.21.15.86:6813","nonce":3848176702}]},"public_addr":"172.21.15.86:6809/3848176702","cluster_addr":"172.21.15.86:6811/3848176702","heartbeat_back_addr":"172.21.15.86:6815/3848176702","heartbeat_front_addr":"172.21.15.86:6813/3848176702","state":["exists","up"]},{"osd":4,"uuid":"2e64f9c2-3221-4f90-a171-baa718e3be7c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6800","nonce":510526317},{"type":"v1","addr":"172.21.15.105:6801","nonce":510526317}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6802","nonce":510526317},{"type":"v1","addr":"172.21.15.105:6803","nonce":510526317}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6806","nonce":510526317},{"type":"v1","addr":"172.21.15.105:6807","nonce":510526317}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6804","nonce":510526317},{"type":"v1","addr":"172.21.15.105:6805","nonce":510526317}]},"public_addr":"172.21.15.105:6801/510526317","cluster_addr":"172.21.15.105:6803/510526317","heartbeat_back_addr":"172.21.15.105:6807/510526317","heartbeat_front_addr":"172.21.15.105:6805/510526317","state":["exists","up"]},{"osd":5,"uuid":"b258d6ec-3a12-44b7-a8be-9cf85e650f25","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6808","nonce":1556952492},{"type":"v1","addr":"172.21.15.105:6809","nonce":1556952492}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6810","nonce":1556952492},{"type":"v1","addr":"172.21.15.105:6811","nonce":1556952492}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6814","nonce":1556952492},{"type":"v1","addr":"172.21.15.105:6815","nonce":1556952492}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6812","nonce":1556952492},{"type":"v1","addr":"172.21.15.105:6813","nonce":1556952492}]},"public_addr":"172.21.15.105:6809/1556952492","cluster_addr":"172.21.15.105:6811/1556952492","heartbeat_back_addr":"172.21.15.105:6815/1556952492","heartbeat_front_addr":"172.21.15.105:6813/1556952492","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:49:25.705819+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:49:51.904149+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:50:15.275717+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:50:41.442022+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:51:05.396580+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:51:31.195522+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.70:0/4081542591":"2024-09-14T12:48:01.983321+0000","172.21.15.70:0/54478491":"2024-09-14T12:48:01.983321+0000","172.21.15.70:6800/3389013127":"2024-09-14T12:48:01.983321+0000","172.21.15.70:0/718518124":"2024-09-14T12:48:01.983321+0000","172.21.15.70:0/1050176505":"2024-09-14T12:47:39.384329+0000","172.21.15.70:6801/3389013127":"2024-09-14T12:48:01.983321+0000","172.21.15.70:6801/2880810988":"2024-09-14T12:47:39.384329+0000","172.21.15.70:6800/2880810988":"2024-09-14T12:47:39.384329+0000","172.21.15.70:0/2437520533":"2024-09-14T12:47:39.384329+0000","172.21.15.70:0/2943891514":"2024-09-14T12:47:39.384329+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-09-13T12:51:36.886 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-13T12:50:18.312751+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, 'is_stretch_pool': False, '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-09-13T12:51:36.887 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-09-13T12:51:37.128 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:37.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:37 smithi070 ceph-mon[29685]: pgmap v137: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:37.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:37 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/995739351' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-13T12:51:37.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:37 smithi105 ceph-mon[33061]: pgmap v137: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:37.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:37 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/995739351' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-13T12:51:37.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:37 smithi086 ceph-mon[32985]: pgmap v137: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:37.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:37 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/995739351' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-13T12:51:37.792 INFO:teuthology.orchestra.run.smithi070.stdout:pg_num: 1 2024-09-13T12:51:38.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:38 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/3612825674' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-13T12:51:38.415 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:38 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/3612825674' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-13T12:51:38.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:38 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/3612825674' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-13T12:51:38.443 INFO:tasks.cephadm:Setting up client nodes... 2024-09-13T12:51:38.443 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph config log 1 --format=json 2024-09-13T12:51:38.683 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:39.260 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:51:39.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:39 smithi105 ceph-mon[33061]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 161 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-13T12:51:39.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:39 smithi070 ceph-mon[29685]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 161 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-13T12:51:39.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:39 smithi086 ceph-mon[32985]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 161 MiB used, 536 GiB / 536 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-13T12:51:39.874 INFO:teuthology.orchestra.run.smithi070.stdout:[{"version":20,"timestamp":"2024-09-13T12:51:34.063130+0000","name":"","changes":[{"name":"osd/host:smithi105/osd_memory_target","previous_value":"22213140480","new_value":"11106570240"}]}] 2024-09-13T12:51:39.874 INFO:tasks.ceph_manager:config epoch is 20 2024-09-13T12:51:39.874 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-13T12:51:39.875 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-13T12:51:39.875 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph mgr dump --format=json 2024-09-13T12:51:40.115 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:40.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:40 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/2819204321' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-13T12:51:40.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:40 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/2819204321' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-13T12:51:40.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:40 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/2819204321' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-13T12:51:40.751 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:51:41.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:41 smithi070 ceph-mon[29685]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-13T12:51:41.241 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:41 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/1162104270' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-13T12:51:41.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:41 smithi105 ceph-mon[33061]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-13T12:51:41.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:41 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/1162104270' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-13T12:51:41.379 INFO:teuthology.orchestra.run.smithi070.stdout:{"epoch":15,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6800","nonce":299589137},{"type":"v1","addr":"172.21.15.70:6801","nonce":299589137}]},"active_addr":"172.21.15.70:6801/299589137","active_change":"2024-09-13T12:48:01.983454+0000","active_mgr_features":4540719139924082687,"available":true,"standbys":[{"gid":24107,"name":"b","mgr_features":4540719139924082687,"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, use commas to separate multiple","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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.27.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:10.4.0","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:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:1.26.1","min":"","max":"","enum_allowed":[],"desc":"Nginx 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.7.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.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy 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.51.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:3.0.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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","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":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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, use commas to separate multiple","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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.27.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:10.4.0","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:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:1.26.1","min":"","max":"","enum_allowed":[],"desc":"Nginx 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.7.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.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy 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.51.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:3.0.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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","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":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","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":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","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.70: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.70:0","nonce":3054450691}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.70:0","nonce":765577211}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.70:0","nonce":3296411424}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.70:0","nonce":3977743902}]}]} 2024-09-13T12:51:41.384 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-13T12:51:41.384 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-13T12:51:41.384 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-13T12:51:41.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:41 smithi086 ceph-mon[32985]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 81 KiB/s, 0 objects/s recovering 2024-09-13T12:51:41.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:41 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/1162104270' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-13T12:51:41.625 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:42.243 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:51:42.244 INFO:teuthology.orchestra.run.smithi070.stdout:{"epoch":40,"fsid":"0c10639a-71ce-11ef-bceb-c7b262605968","created":"2024-09-13T12:47:08.409375+0000","modified":"2024-09-13T12:51:34.119588+0000","last_up_change":"2024-09-13T12:51:32.925529+0000","last_in_change":"2024-09-13T12:51:12.863425+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-09-13T12:50:18.312751+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,"is_stretch_pool":false,"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":"7a393e1c-3218-43db-91fe-bdf8b3836d26","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6802","nonce":1808329001},{"type":"v1","addr":"172.21.15.70:6803","nonce":1808329001}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6804","nonce":1808329001},{"type":"v1","addr":"172.21.15.70:6805","nonce":1808329001}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6808","nonce":1808329001},{"type":"v1","addr":"172.21.15.70:6809","nonce":1808329001}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6806","nonce":1808329001},{"type":"v1","addr":"172.21.15.70:6807","nonce":1808329001}]},"public_addr":"172.21.15.70:6803/1808329001","cluster_addr":"172.21.15.70:6805/1808329001","heartbeat_back_addr":"172.21.15.70:6809/1808329001","heartbeat_front_addr":"172.21.15.70:6807/1808329001","state":["exists","up"]},{"osd":1,"uuid":"eac14cf5-cd48-4d91-9670-00cb56cd337c","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.70:6810","nonce":2681390372},{"type":"v1","addr":"172.21.15.70:6811","nonce":2681390372}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6812","nonce":2681390372},{"type":"v1","addr":"172.21.15.70:6813","nonce":2681390372}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6816","nonce":2681390372},{"type":"v1","addr":"172.21.15.70:6817","nonce":2681390372}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6814","nonce":2681390372},{"type":"v1","addr":"172.21.15.70:6815","nonce":2681390372}]},"public_addr":"172.21.15.70:6811/2681390372","cluster_addr":"172.21.15.70:6813/2681390372","heartbeat_back_addr":"172.21.15.70:6817/2681390372","heartbeat_front_addr":"172.21.15.70:6815/2681390372","state":["exists","up"]},{"osd":2,"uuid":"b856cff8-d67e-4e9b-8365-a319c2689208","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.86:6800","nonce":2214144224},{"type":"v1","addr":"172.21.15.86:6801","nonce":2214144224}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6802","nonce":2214144224},{"type":"v1","addr":"172.21.15.86:6803","nonce":2214144224}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6806","nonce":2214144224},{"type":"v1","addr":"172.21.15.86:6807","nonce":2214144224}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6804","nonce":2214144224},{"type":"v1","addr":"172.21.15.86:6805","nonce":2214144224}]},"public_addr":"172.21.15.86:6801/2214144224","cluster_addr":"172.21.15.86:6803/2214144224","heartbeat_back_addr":"172.21.15.86:6807/2214144224","heartbeat_front_addr":"172.21.15.86:6805/2214144224","state":["exists","up"]},{"osd":3,"uuid":"c9fd3302-2df7-4af2-86bc-1851f74e20d0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6808","nonce":3848176702},{"type":"v1","addr":"172.21.15.86:6809","nonce":3848176702}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6810","nonce":3848176702},{"type":"v1","addr":"172.21.15.86:6811","nonce":3848176702}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6814","nonce":3848176702},{"type":"v1","addr":"172.21.15.86:6815","nonce":3848176702}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6812","nonce":3848176702},{"type":"v1","addr":"172.21.15.86:6813","nonce":3848176702}]},"public_addr":"172.21.15.86:6809/3848176702","cluster_addr":"172.21.15.86:6811/3848176702","heartbeat_back_addr":"172.21.15.86:6815/3848176702","heartbeat_front_addr":"172.21.15.86:6813/3848176702","state":["exists","up"]},{"osd":4,"uuid":"2e64f9c2-3221-4f90-a171-baa718e3be7c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6800","nonce":510526317},{"type":"v1","addr":"172.21.15.105:6801","nonce":510526317}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6802","nonce":510526317},{"type":"v1","addr":"172.21.15.105:6803","nonce":510526317}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6806","nonce":510526317},{"type":"v1","addr":"172.21.15.105:6807","nonce":510526317}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6804","nonce":510526317},{"type":"v1","addr":"172.21.15.105:6805","nonce":510526317}]},"public_addr":"172.21.15.105:6801/510526317","cluster_addr":"172.21.15.105:6803/510526317","heartbeat_back_addr":"172.21.15.105:6807/510526317","heartbeat_front_addr":"172.21.15.105:6805/510526317","state":["exists","up"]},{"osd":5,"uuid":"b258d6ec-3a12-44b7-a8be-9cf85e650f25","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6808","nonce":1556952492},{"type":"v1","addr":"172.21.15.105:6809","nonce":1556952492}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6810","nonce":1556952492},{"type":"v1","addr":"172.21.15.105:6811","nonce":1556952492}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6814","nonce":1556952492},{"type":"v1","addr":"172.21.15.105:6815","nonce":1556952492}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6812","nonce":1556952492},{"type":"v1","addr":"172.21.15.105:6813","nonce":1556952492}]},"public_addr":"172.21.15.105:6809/1556952492","cluster_addr":"172.21.15.105:6811/1556952492","heartbeat_back_addr":"172.21.15.105:6815/1556952492","heartbeat_front_addr":"172.21.15.105:6813/1556952492","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:49:25.705819+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:49:51.904149+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:50:15.275717+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:50:41.442022+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:51:05.396580+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:51:31.195522+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.70:0/4081542591":"2024-09-14T12:48:01.983321+0000","172.21.15.70:0/54478491":"2024-09-14T12:48:01.983321+0000","172.21.15.70:6800/3389013127":"2024-09-14T12:48:01.983321+0000","172.21.15.70:0/718518124":"2024-09-14T12:48:01.983321+0000","172.21.15.70:0/1050176505":"2024-09-14T12:47:39.384329+0000","172.21.15.70:6801/3389013127":"2024-09-14T12:48:01.983321+0000","172.21.15.70:6801/2880810988":"2024-09-14T12:47:39.384329+0000","172.21.15.70:6800/2880810988":"2024-09-14T12:47:39.384329+0000","172.21.15.70:0/2437520533":"2024-09-14T12:47:39.384329+0000","172.21.15.70:0/2943891514":"2024-09-14T12:47:39.384329+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-09-13T12:51:42.836 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-13T12:51:42.837 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph osd dump --format=json 2024-09-13T12:51:43.077 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:43.345 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:43 smithi070 ceph-mon[29685]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-13T12:51:43.345 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:43 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/1442758326' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-13T12:51:43.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:43 smithi105 ceph-mon[33061]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-13T12:51:43.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:43 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/1442758326' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-13T12:51:43.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:43 smithi086 ceph-mon[32985]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 65 KiB/s, 0 objects/s recovering 2024-09-13T12:51:43.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:43 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/1442758326' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-13T12:51:43.733 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:51:43.733 INFO:teuthology.orchestra.run.smithi070.stdout:{"epoch":40,"fsid":"0c10639a-71ce-11ef-bceb-c7b262605968","created":"2024-09-13T12:47:08.409375+0000","modified":"2024-09-13T12:51:34.119588+0000","last_up_change":"2024-09-13T12:51:32.925529+0000","last_in_change":"2024-09-13T12:51:12.863425+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-09-13T12:50:18.312751+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,"is_stretch_pool":false,"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":"7a393e1c-3218-43db-91fe-bdf8b3836d26","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6802","nonce":1808329001},{"type":"v1","addr":"172.21.15.70:6803","nonce":1808329001}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6804","nonce":1808329001},{"type":"v1","addr":"172.21.15.70:6805","nonce":1808329001}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6808","nonce":1808329001},{"type":"v1","addr":"172.21.15.70:6809","nonce":1808329001}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6806","nonce":1808329001},{"type":"v1","addr":"172.21.15.70:6807","nonce":1808329001}]},"public_addr":"172.21.15.70:6803/1808329001","cluster_addr":"172.21.15.70:6805/1808329001","heartbeat_back_addr":"172.21.15.70:6809/1808329001","heartbeat_front_addr":"172.21.15.70:6807/1808329001","state":["exists","up"]},{"osd":1,"uuid":"eac14cf5-cd48-4d91-9670-00cb56cd337c","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.70:6810","nonce":2681390372},{"type":"v1","addr":"172.21.15.70:6811","nonce":2681390372}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6812","nonce":2681390372},{"type":"v1","addr":"172.21.15.70:6813","nonce":2681390372}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6816","nonce":2681390372},{"type":"v1","addr":"172.21.15.70:6817","nonce":2681390372}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.70:6814","nonce":2681390372},{"type":"v1","addr":"172.21.15.70:6815","nonce":2681390372}]},"public_addr":"172.21.15.70:6811/2681390372","cluster_addr":"172.21.15.70:6813/2681390372","heartbeat_back_addr":"172.21.15.70:6817/2681390372","heartbeat_front_addr":"172.21.15.70:6815/2681390372","state":["exists","up"]},{"osd":2,"uuid":"b856cff8-d67e-4e9b-8365-a319c2689208","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.86:6800","nonce":2214144224},{"type":"v1","addr":"172.21.15.86:6801","nonce":2214144224}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6802","nonce":2214144224},{"type":"v1","addr":"172.21.15.86:6803","nonce":2214144224}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6806","nonce":2214144224},{"type":"v1","addr":"172.21.15.86:6807","nonce":2214144224}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6804","nonce":2214144224},{"type":"v1","addr":"172.21.15.86:6805","nonce":2214144224}]},"public_addr":"172.21.15.86:6801/2214144224","cluster_addr":"172.21.15.86:6803/2214144224","heartbeat_back_addr":"172.21.15.86:6807/2214144224","heartbeat_front_addr":"172.21.15.86:6805/2214144224","state":["exists","up"]},{"osd":3,"uuid":"c9fd3302-2df7-4af2-86bc-1851f74e20d0","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6808","nonce":3848176702},{"type":"v1","addr":"172.21.15.86:6809","nonce":3848176702}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6810","nonce":3848176702},{"type":"v1","addr":"172.21.15.86:6811","nonce":3848176702}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6814","nonce":3848176702},{"type":"v1","addr":"172.21.15.86:6815","nonce":3848176702}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.86:6812","nonce":3848176702},{"type":"v1","addr":"172.21.15.86:6813","nonce":3848176702}]},"public_addr":"172.21.15.86:6809/3848176702","cluster_addr":"172.21.15.86:6811/3848176702","heartbeat_back_addr":"172.21.15.86:6815/3848176702","heartbeat_front_addr":"172.21.15.86:6813/3848176702","state":["exists","up"]},{"osd":4,"uuid":"2e64f9c2-3221-4f90-a171-baa718e3be7c","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6800","nonce":510526317},{"type":"v1","addr":"172.21.15.105:6801","nonce":510526317}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6802","nonce":510526317},{"type":"v1","addr":"172.21.15.105:6803","nonce":510526317}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6806","nonce":510526317},{"type":"v1","addr":"172.21.15.105:6807","nonce":510526317}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6804","nonce":510526317},{"type":"v1","addr":"172.21.15.105:6805","nonce":510526317}]},"public_addr":"172.21.15.105:6801/510526317","cluster_addr":"172.21.15.105:6803/510526317","heartbeat_back_addr":"172.21.15.105:6807/510526317","heartbeat_front_addr":"172.21.15.105:6805/510526317","state":["exists","up"]},{"osd":5,"uuid":"b258d6ec-3a12-44b7-a8be-9cf85e650f25","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6808","nonce":1556952492},{"type":"v1","addr":"172.21.15.105:6809","nonce":1556952492}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6810","nonce":1556952492},{"type":"v1","addr":"172.21.15.105:6811","nonce":1556952492}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6814","nonce":1556952492},{"type":"v1","addr":"172.21.15.105:6815","nonce":1556952492}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.105:6812","nonce":1556952492},{"type":"v1","addr":"172.21.15.105:6813","nonce":1556952492}]},"public_addr":"172.21.15.105:6809/1556952492","cluster_addr":"172.21.15.105:6811/1556952492","heartbeat_back_addr":"172.21.15.105:6815/1556952492","heartbeat_front_addr":"172.21.15.105:6813/1556952492","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:49:25.705819+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:49:51.904149+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:50:15.275717+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:50:41.442022+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:51:05.396580+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-13T12:51:31.195522+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.70:0/4081542591":"2024-09-14T12:48:01.983321+0000","172.21.15.70:0/54478491":"2024-09-14T12:48:01.983321+0000","172.21.15.70:6800/3389013127":"2024-09-14T12:48:01.983321+0000","172.21.15.70:0/718518124":"2024-09-14T12:48:01.983321+0000","172.21.15.70:0/1050176505":"2024-09-14T12:47:39.384329+0000","172.21.15.70:6801/3389013127":"2024-09-14T12:48:01.983321+0000","172.21.15.70:6801/2880810988":"2024-09-14T12:47:39.384329+0000","172.21.15.70:6800/2880810988":"2024-09-14T12:47:39.384329+0000","172.21.15.70:0/2437520533":"2024-09-14T12:47:39.384329+0000","172.21.15.70:0/2943891514":"2024-09-14T12:47:39.384329+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-09-13T12:51:44.323 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:44 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/2309788640' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-13T12:51:44.351 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-09-13T12:51:44.352 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-09-13T12:51:44.352 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-09-13T12:51:44.352 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-09-13T12:51:44.353 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-09-13T12:51:44.353 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-09-13T12:51:44.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:44 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/2309788640' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-13T12:51:44.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:44 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/2309788640' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-13T12:51:44.632 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:44.642 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:45.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:45 smithi105 ceph-mon[33061]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:51:45.395 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:45 smithi070 ceph-mon[29685]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:51:45.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:45 smithi086 ceph-mon[32985]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-09-13T12:51:46.017 INFO:teuthology.orchestra.run.smithi070.stdout:111669149711 2024-09-13T12:51:46.017 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-09-13T12:51:46.938 INFO:teuthology.orchestra.run.smithi070.stdout:163208757254 2024-09-13T12:51:46.939 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-09-13T12:51:46.957 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:46.958 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:47.001 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:47.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:47 smithi070 ceph-mon[29685]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-13T12:51:47.234 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:47.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:47 smithi105 ceph-mon[33061]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-13T12:51:47.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:47 smithi086 ceph-mon[32985]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-13T12:51:47.672 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:48.533 INFO:teuthology.orchestra.run.smithi070.stdout:55834574874 2024-09-13T12:51:48.533 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-09-13T12:51:49.059 INFO:teuthology.orchestra.run.smithi070.stdout:34359738399 2024-09-13T12:51:49.060 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-09-13T12:51:49.060 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:49.285 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:49 smithi070 ceph-mon[29685]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-13T12:51:49.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:49 smithi105 ceph-mon[33061]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-13T12:51:49.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:49 smithi086 ceph-mon[32985]: pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-09-13T12:51:50.444 INFO:teuthology.orchestra.run.smithi070.stdout:163208757255 2024-09-13T12:51:50.967 INFO:teuthology.orchestra.run.smithi070.stdout:137438953484 2024-09-13T12:51:50.967 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-09-13T12:51:51.192 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:51 smithi070 ceph-mon[29685]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:51.192 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:51 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/1400423036' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-13T12:51:51.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:51 smithi105 ceph-mon[33061]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:51.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:51 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/1400423036' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-13T12:51:51.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:51 smithi086 ceph-mon[32985]: pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:51.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:51 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/1400423036' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-13T12:51:52.030 INFO:tasks.cephadm.ceph_manager.ceph:need seq 163208757254 got 163208757255 for osd.5 2024-09-13T12:51:52.030 DEBUG:teuthology.parallel:result is None 2024-09-13T12:51:52.243 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:52.412 INFO:teuthology.orchestra.run.smithi070.stdout:111669149712 2024-09-13T12:51:52.666 INFO:teuthology.orchestra.run.smithi070.stdout:77309411350 2024-09-13T12:51:52.667 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-09-13T12:51:52.820 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:52.854 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:53.271 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:53 smithi070 ceph-mon[29685]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:53.271 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:53 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/3943144' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-13T12:51:53.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:53 smithi105 ceph-mon[33061]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:53.357 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:53 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/3943144' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-13T12:51:53.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:53 smithi086 ceph-mon[32985]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:53.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:53 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/3943144' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-13T12:51:53.637 INFO:teuthology.orchestra.run.smithi070.stdout:137438953484 2024-09-13T12:51:53.849 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149711 got 111669149712 for osd.3 2024-09-13T12:51:53.849 DEBUG:teuthology.parallel:result is None 2024-09-13T12:51:54.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:54 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/2515844794' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-13T12:51:54.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:54 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/2515844794' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-13T12:51:54.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:54 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/2515844794' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-13T12:51:54.602 INFO:teuthology.orchestra.run.smithi070.stdout:55834574875 2024-09-13T12:51:54.881 INFO:tasks.cephadm.ceph_manager.ceph:need seq 137438953484 got 137438953484 for osd.4 2024-09-13T12:51:54.881 DEBUG:teuthology.parallel:result is None 2024-09-13T12:51:55.143 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:55 smithi070 ceph-mon[29685]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:55.143 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:55 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/4018641108' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-13T12:51:55.244 INFO:teuthology.orchestra.run.smithi070.stdout:34359738401 2024-09-13T12:51:55.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:55 smithi105 ceph-mon[33061]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:55.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:55 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/4018641108' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-13T12:51:55.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:55 smithi086 ceph-mon[32985]: pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:55.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:55 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/4018641108' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-13T12:51:55.711 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574874 got 55834574875 for osd.1 2024-09-13T12:51:55.711 DEBUG:teuthology.parallel:result is None 2024-09-13T12:51:55.882 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:56.346 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:56 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/3376029998' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-13T12:51:56.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:56 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/3376029998' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-13T12:51:56.372 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738399 got 34359738401 for osd.0 2024-09-13T12:51:56.372 DEBUG:teuthology.parallel:result is None 2024-09-13T12:51:56.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:56 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/3376029998' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-13T12:51:57.051 INFO:teuthology.orchestra.run.smithi070.stdout:77309411351 2024-09-13T12:51:57.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:57 smithi105 ceph-mon[33061]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:57.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:57 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/994858552' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-13T12:51:57.377 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:57 smithi070 ceph-mon[29685]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:57.377 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:57 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/994858552' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-13T12:51:57.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:57 smithi086 ceph-mon[32985]: pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:57.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:57 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/994858552' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-13T12:51:57.671 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411350 got 77309411351 for osd.2 2024-09-13T12:51:57.671 DEBUG:teuthology.parallel:result is None 2024-09-13T12:51:57.671 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-13T12:51:57.672 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-13T12:51:57.915 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:58.538 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:51:58.538 INFO:teuthology.orchestra.run.smithi070.stderr:dumped all 2024-09-13T12:51:59.149 INFO:teuthology.orchestra.run.smithi070.stdout:{"pg_ready":true,"pg_map":{"version":148,"stamp":"2024-09-13T12:51:58.038482+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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"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":92,"ondisk_log_size":92,"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":166040,"kb_used_data":3852,"kb_used_omap":9,"kb_used_meta":162038,"kb_avail":562304872,"statfs":{"total":575970213888,"available":575800188928,"internally_reserved":0,"allocated":3944448,"data_stored":2594736,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9567,"internal_metadata":165927585},"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.013980"},"pg_stats":[{"pgid":"1.0","version":"21'92","reported_seq":63,"reported_epoch":40,"state":"active+clean","last_fresh":"2024-09-13T12:51:34.178039+0000","last_change":"2024-09-13T12:51:34.177925+0000","last_active":"2024-09-13T12:51:34.178039+0000","last_peered":"2024-09-13T12:51:34.178039+0000","last_clean":"2024-09-13T12:51:34.178039+0000","last_became_active":"2024-09-13T12:51:34.173197+0000","last_became_peered":"2024-09-13T12:51:34.173197+0000","last_unstale":"2024-09-13T12:51:34.178039+0000","last_undegraded":"2024-09-13T12:51:34.178039+0000","last_fullsized":"2024-09-13T12:51:34.178039+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-13T12:50:19.064133+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-13T12:50:19.064133+0000","last_clean_scrub_stamp":"2024-09-13T12:50:19.064133+0000","objects_scrubbed":0,"log_size":92,"log_dups_size":0,"ondisk_log_size":92,"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-09-14T21:01:49.528087+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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"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":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":38,"seq":163208757256,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27968,"kb_used_data":932,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717184,"statfs":{"total":95995035648,"available":95966396416,"internally_reserved":0,"allocated":954368,"data_stored":727640,"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":32,"seq":137438953486,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27380,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717772,"statfs":{"total":95995035648,"available":95966998528,"internally_reserved":0,"allocated":360448,"data_stored":137272,"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":111669149714,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27960,"kb_used_data":932,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717192,"statfs":{"total":95995035648,"available":95966404608,"internally_reserved":0,"allocated":954368,"data_stored":727640,"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":77309411352,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27960,"kb_used_data":932,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717192,"statfs":{"total":95995035648,"available":95966404608,"internally_reserved":0,"allocated":954368,"data_stored":727640,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":1,"up_from":13,"seq":55834574876,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27384,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717768,"statfs":{"total":95995035648,"available":95966994432,"internally_reserved":0,"allocated":360448,"data_stored":137272,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]},{"osd":0,"up_from":8,"seq":34359738401,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27388,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717764,"statfs":{"total":95995035648,"available":95966990336,"internally_reserved":0,"allocated":360448,"data_stored":137272,"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":[]}],"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":0,"data_stored":0,"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":593920,"data_stored":590368,"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-09-13T12:51:59.150 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph pg dump --format=json 2024-09-13T12:51:59.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:59 smithi105 ceph-mon[33061]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:59.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:51:59 smithi105 ceph-mon[33061]: from='client.14478 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:51:59.389 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:51:59.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:59 smithi070 ceph-mon[29685]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:59.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:51:59 smithi070 ceph-mon[29685]: from='client.14478 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:51:59.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:59 smithi086 ceph-mon[32985]: pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:51:59.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:51:59 smithi086 ceph-mon[32985]: from='client.14478 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:51:59.995 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:51:59.996 INFO:teuthology.orchestra.run.smithi070.stderr:dumped all 2024-09-13T12:52:00.418 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:00 smithi070 ceph-mon[29685]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:00.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:00 smithi086 ceph-mon[32985]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:00.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:00 smithi105 ceph-mon[33061]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:00.650 INFO:teuthology.orchestra.run.smithi070.stdout:{"pg_ready":true,"pg_map":{"version":148,"stamp":"2024-09-13T12:51:58.038482+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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"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":92,"ondisk_log_size":92,"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":166040,"kb_used_data":3852,"kb_used_omap":9,"kb_used_meta":162038,"kb_avail":562304872,"statfs":{"total":575970213888,"available":575800188928,"internally_reserved":0,"allocated":3944448,"data_stored":2594736,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9567,"internal_metadata":165927585},"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.013980"},"pg_stats":[{"pgid":"1.0","version":"21'92","reported_seq":63,"reported_epoch":40,"state":"active+clean","last_fresh":"2024-09-13T12:51:34.178039+0000","last_change":"2024-09-13T12:51:34.177925+0000","last_active":"2024-09-13T12:51:34.178039+0000","last_peered":"2024-09-13T12:51:34.178039+0000","last_clean":"2024-09-13T12:51:34.178039+0000","last_became_active":"2024-09-13T12:51:34.173197+0000","last_became_peered":"2024-09-13T12:51:34.173197+0000","last_unstale":"2024-09-13T12:51:34.178039+0000","last_undegraded":"2024-09-13T12:51:34.178039+0000","last_fullsized":"2024-09-13T12:51:34.178039+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-13T12:50:19.064133+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-13T12:50:19.064133+0000","last_clean_scrub_stamp":"2024-09-13T12:50:19.064133+0000","objects_scrubbed":0,"log_size":92,"log_dups_size":0,"ondisk_log_size":92,"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-09-14T21:01:49.528087+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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"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":76,"num_read_kb":64,"num_write":123,"num_write_kb":2150,"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":92,"ondisk_log_size":92,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":38,"seq":163208757256,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27968,"kb_used_data":932,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717184,"statfs":{"total":95995035648,"available":95966396416,"internally_reserved":0,"allocated":954368,"data_stored":727640,"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":32,"seq":137438953486,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27380,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717772,"statfs":{"total":95995035648,"available":95966998528,"internally_reserved":0,"allocated":360448,"data_stored":137272,"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":111669149714,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27960,"kb_used_data":932,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717192,"statfs":{"total":95995035648,"available":95966404608,"internally_reserved":0,"allocated":954368,"data_stored":727640,"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":77309411352,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":27960,"kb_used_data":932,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717192,"statfs":{"total":95995035648,"available":95966404608,"internally_reserved":0,"allocated":954368,"data_stored":727640,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":1,"up_from":13,"seq":55834574876,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27384,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717768,"statfs":{"total":95995035648,"available":95966994432,"internally_reserved":0,"allocated":360448,"data_stored":137272,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]},{"osd":0,"up_from":8,"seq":34359738401,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27388,"kb_used_data":352,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717764,"statfs":{"total":95995035648,"available":95966990336,"internally_reserved":0,"allocated":360448,"data_stored":137272,"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":[]}],"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":0,"data_stored":0,"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":593920,"data_stored":590368,"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-09-13T12:52:00.651 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-13T12:52:00.651 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-13T12:52:00.651 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-13T12:52:00.651 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- ceph health --format=json 2024-09-13T12:52:00.890 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:52:01.276 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:01 smithi070 ceph-mon[29685]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:01.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:01 smithi086 ceph-mon[32985]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:01.573 INFO:teuthology.orchestra.run.smithi070.stdout: 2024-09-13T12:52:01.573 INFO:teuthology.orchestra.run.smithi070.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-13T12:52:01.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:01 smithi105 ceph-mon[33061]: pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:02.306 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-13T12:52:02.306 INFO:tasks.cephadm:Setup complete, yielding 2024-09-13T12:52:02.306 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-13T12:52:02.316 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi070.front.sepia.ceph.com 2024-09-13T12:52:02.316 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 -- bash -c 'set -ex 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> for host in $HOSTNAMES; do 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> # find the hostname for "host.c" which will have no mgr 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> if [ "$HAS_MGRS" == "false" ]; then 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> HOST_C="${host}" 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> fi 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> done 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> # One last thing to worry about before draining the host 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> # is that the teuthology test tends to put the explicit 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> # hostnames in the placement for the mon service. 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> # We want to make sure we can drain without providing 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> # --force and there is a check for the host being removed 2024-09-13T12:52:02.317 DEBUG:teuthology.orchestra.run.smithi070:> # being listed explicitly in the placements. Therefore, 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> # we should remove it from the mon placement. 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> ceph orch ls mon --export > mon.yaml 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> ceph orch apply -i mon_adjusted.yaml 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> # now drain that host 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> ceph orch host drain $HOST_C --zap-osd-devices 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> # wait for drain to complete 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> sleep 15 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> done 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> # we want to check the ability to remove the host from 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> # the CRUSH map, so we should first verify the host is in 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> # the CRUSH map. 2024-09-13T12:52:02.318 DEBUG:teuthology.orchestra.run.smithi070:> ceph osd getcrushmap -o compiled-crushmap 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> exit 1 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> fi 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> # If the drain was successful, we should be able to remove the 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> # host without force with no issues. If there are still daemons 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> # we will get a response telling us to drain the host and a 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> # non-zero return code 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> ceph orch host rm $HOST_C --rm-crush-entry 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> sleep 30 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> ceph osd getcrushmap -o compiled-crushmap 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> crushtool -d compiled-crushmap -o crushmap.txt 2024-09-13T12:52:02.319 DEBUG:teuthology.orchestra.run.smithi070:> CRUSH_MAP=$(cat crushmap.txt) 2024-09-13T12:52:02.320 DEBUG:teuthology.orchestra.run.smithi070:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-09-13T12:52:02.320 DEBUG:teuthology.orchestra.run.smithi070:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-09-13T12:52:02.320 DEBUG:teuthology.orchestra.run.smithi070:> exit 1 2024-09-13T12:52:02.320 DEBUG:teuthology.orchestra.run.smithi070:> fi 2024-09-13T12:52:02.320 DEBUG:teuthology.orchestra.run.smithi070:> ' 2024-09-13T12:52:02.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:02 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/3244975840' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-13T12:52:02.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:02 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/3244975840' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-13T12:52:02.565 INFO:teuthology.orchestra.run.smithi070.stderr:Inferring config /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/mon.a/config 2024-09-13T12:52:02.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:02 smithi105 ceph-mon[33061]: from='client.? 172.21.15.70:0/3244975840' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-13T12:52:03.058 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch host ls --format json 2024-09-13T12:52:03.058 INFO:teuthology.orchestra.run.smithi070.stderr:++ jq -r '.[] | .hostname' 2024-09-13T12:52:03.234 INFO:teuthology.orchestra.run.smithi070.stderr:+ HOSTNAMES='smithi070 2024-09-13T12:52:03.234 INFO:teuthology.orchestra.run.smithi070.stderr:smithi086 2024-09-13T12:52:03.234 INFO:teuthology.orchestra.run.smithi070.stderr:smithi105' 2024-09-13T12:52:03.234 INFO:teuthology.orchestra.run.smithi070.stderr:+ for host in $HOSTNAMES 2024-09-13T12:52:03.234 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:03 smithi070 ceph-mon[29685]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:03.235 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch ps --hostname smithi070 --format json 2024-09-13T12:52:03.235 INFO:teuthology.orchestra.run.smithi070.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-13T12:52:03.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:03 smithi086 ceph-mon[32985]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:03.511 INFO:teuthology.orchestra.run.smithi070.stderr:+ HAS_MGRS=true 2024-09-13T12:52:03.511 INFO:teuthology.orchestra.run.smithi070.stderr:+ '[' true == false ']' 2024-09-13T12:52:03.511 INFO:teuthology.orchestra.run.smithi070.stderr:+ for host in $HOSTNAMES 2024-09-13T12:52:03.511 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch ps --hostname smithi086 --format json 2024-09-13T12:52:03.511 INFO:teuthology.orchestra.run.smithi070.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-13T12:52:03.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:03 smithi105 ceph-mon[33061]: pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:03.786 INFO:teuthology.orchestra.run.smithi070.stderr:+ HAS_MGRS=true 2024-09-13T12:52:03.786 INFO:teuthology.orchestra.run.smithi070.stderr:+ '[' true == false ']' 2024-09-13T12:52:03.786 INFO:teuthology.orchestra.run.smithi070.stderr:+ for host in $HOSTNAMES 2024-09-13T12:52:03.787 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch ps --hostname smithi105 --format json 2024-09-13T12:52:03.787 INFO:teuthology.orchestra.run.smithi070.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-09-13T12:52:04.068 INFO:teuthology.orchestra.run.smithi070.stderr:+ HAS_MGRS=false 2024-09-13T12:52:04.068 INFO:teuthology.orchestra.run.smithi070.stderr:+ '[' false == false ']' 2024-09-13T12:52:04.068 INFO:teuthology.orchestra.run.smithi070.stderr:+ HOST_C=smithi105 2024-09-13T12:52:04.068 INFO:teuthology.orchestra.run.smithi070.stderr:+ ceph orch ls mon --export 2024-09-13T12:52:04.345 INFO:teuthology.orchestra.run.smithi070.stderr:+ sed /smithi105/d mon.yaml 2024-09-13T12:52:04.346 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:04 smithi070 ceph-mon[29685]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:04.346 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:04 smithi070 ceph-mon[29685]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi070", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:04.346 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:04 smithi070 ceph-mon[29685]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi086", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:04.346 INFO:teuthology.orchestra.run.smithi070.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-09-13T12:52:04.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:04 smithi086 ceph-mon[32985]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:04.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:04 smithi086 ceph-mon[32985]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi070", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:04.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:04 smithi086 ceph-mon[32985]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi086", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:04.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:04 smithi105 ceph-mon[33061]: from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:04.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:04 smithi105 ceph-mon[33061]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi070", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:04.606 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:04 smithi105 ceph-mon[33061]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi086", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:04.618 INFO:teuthology.orchestra.run.smithi070.stdout:Scheduled mon update... 2024-09-13T12:52:04.629 INFO:teuthology.orchestra.run.smithi070.stderr:+ ceph orch host drain smithi105 --zap-osd-devices 2024-09-13T12:52:04.914 INFO:teuthology.orchestra.run.smithi070.stdout:Scheduled to remove the following daemons from host 'smithi105' 2024-09-13T12:52:04.914 INFO:teuthology.orchestra.run.smithi070.stdout:type id 2024-09-13T12:52:04.914 INFO:teuthology.orchestra.run.smithi070.stdout:-------------------- --------------- 2024-09-13T12:52:04.914 INFO:teuthology.orchestra.run.smithi070.stdout:mon c 2024-09-13T12:52:04.914 INFO:teuthology.orchestra.run.smithi070.stdout:osd 4 2024-09-13T12:52:04.914 INFO:teuthology.orchestra.run.smithi070.stdout:osd 5 2024-09-13T12:52:04.925 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch ps --hostname smithi105 2024-09-13T12:52:05.211 INFO:teuthology.orchestra.run.smithi070.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-13T12:52:05.212 INFO:teuthology.orchestra.run.smithi070.stderr:mon.c smithi105 running (3m) 38s ago 3m 39.7M 2048M 19.3.0-4697-gd58f7306 fec07016a2b0 4e36f8187c95 2024-09-13T12:52:05.212 INFO:teuthology.orchestra.run.smithi070.stderr:osd.4 smithi105 running (66s) 38s ago 65s 38.2M 10.3G 19.3.0-4697-gd58f7306 fec07016a2b0 f485b567ec3a 2024-09-13T12:52:05.212 INFO:teuthology.orchestra.run.smithi070.stderr:osd.5 smithi105 running (40s) 38s ago 39s 12.2M 10.3G 19.3.0-4697-gd58f7306 fec07016a2b0 e7c324879729 ' 2024-09-13T12:52:05.212 INFO:teuthology.orchestra.run.smithi070.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-13T12:52:05.212 INFO:teuthology.orchestra.run.smithi070.stderr:mon.c smithi105 running (3m) 38s ago 3m 39.7M 2048M 19.3.0-4697-gd58f7306 fec07016a2b0 4e36f8187c95 2024-09-13T12:52:05.212 INFO:teuthology.orchestra.run.smithi070.stderr:osd.4 smithi105 running (66s) 38s ago 65s 38.2M 10.3G 19.3.0-4697-gd58f7306 fec07016a2b0 f485b567ec3a 2024-09-13T12:52:05.212 INFO:teuthology.orchestra.run.smithi070.stderr:osd.5 smithi105 running (40s) 38s ago 39s 12.2M 10.3G 19.3.0-4697-gd58f7306 fec07016a2b0 e7c324879729 ' '!=' 'No daemons reported' ']' 2024-09-13T12:52:05.212 INFO:teuthology.orchestra.run.smithi070.stderr:+ sleep 15 2024-09-13T12:52:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi105", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:05.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:05.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: Saving service mon spec with placement smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;count:3 2024-09-13T12:52:05.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:05.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:52:05.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi105", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:05.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:05.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: Added label _no_schedule to host smithi105 2024-09-13T12:52:05.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:05.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: Added label _no_conf_keyring to host smithi105 2024-09-13T12:52:05.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-13T12:52:05.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: osd.4 crush weight is 0.0872955322265625 2024-09-13T12:52:05.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-13T12:52:05.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: osd.5 crush weight is 0.0872955322265625 2024-09-13T12:52:05.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:05.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:52:05.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:05.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:05.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-13T12:52:05.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-13T12:52:05.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2024-09-13T12:52:05.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:05 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2024-09-13T12:52:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi105", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: Saving service mon spec with placement smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;count:3 2024-09-13T12:52:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:52:05.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi105", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:05.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:05.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: Added label _no_schedule to host smithi105 2024-09-13T12:52:05.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:05.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: Added label _no_conf_keyring to host smithi105 2024-09-13T12:52:05.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-13T12:52:05.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: osd.4 crush weight is 0.0872955322265625 2024-09-13T12:52:05.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-13T12:52:05.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: osd.5 crush weight is 0.0872955322265625 2024-09-13T12:52:05.928 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:05.928 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:52:05.928 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:05.928 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:05.928 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-13T12:52:05.928 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-13T12:52:05.928 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2024-09-13T12:52:05.928 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:05 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2024-09-13T12:52:06.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:06.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi105", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-13T12:52:06.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:06.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:06.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: Saving service mon spec with placement smithi070:172.21.15.70=a;smithi086:172.21.15.86=b;count:3 2024-09-13T12:52:06.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:06.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:52:06.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi105", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:06.108 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:06.108 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: Added label _no_schedule to host smithi105 2024-09-13T12:52:06.108 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:06.108 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: Added label _no_conf_keyring to host smithi105 2024-09-13T12:52:06.108 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-13T12:52:06.108 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: osd.4 crush weight is 0.0872955322265625 2024-09-13T12:52:06.108 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2024-09-13T12:52:06.108 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: osd.5 crush weight is 0.0872955322265625 2024-09-13T12:52:06.108 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:06.108 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:52:06.109 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:06.109 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:06.109 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-13T12:52:06.109 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-13T12:52:06.109 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2024-09-13T12:52:06.109 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:05 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2024-09-13T12:52:06.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:06 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a[29681]: 2024-09-13T12:52:06.141+0000 7f7c8beb0640 -1 mon.a@0(leader).osd e41 definitely_dead 0 2024-09-13T12:52:06.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:06 smithi070 ceph-mon[29685]: Removing smithi105:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:52:06.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:06 smithi070 ceph-mon[29685]: Removing smithi105:/etc/ceph/ceph.client.admin.keyring 2024-09-13T12:52:06.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:06 smithi070 ceph-mon[29685]: Removing smithi105:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T12:52:06.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:06 smithi070 ceph-mon[29685]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:06.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:06 smithi070 ceph-mon[29685]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:06.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:06 smithi070 ceph-mon[29685]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-13T12:52:06.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:06 smithi070 ceph-mon[29685]: from='client.14538 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi105", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:06.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:06 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-13T12:52:06.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:06 smithi070 ceph-mon[29685]: osdmap e41: 6 total, 6 up, 6 in 2024-09-13T12:52:06.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:06 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-13T12:52:06.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:06 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2024-09-13T12:52:06.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:06 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2024-09-13T12:52:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:06 smithi086 ceph-mon[32985]: Removing smithi105:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:52:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:06 smithi086 ceph-mon[32985]: Removing smithi105:/etc/ceph/ceph.client.admin.keyring 2024-09-13T12:52:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:06 smithi086 ceph-mon[32985]: Removing smithi105:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T12:52:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:06 smithi086 ceph-mon[32985]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:06 smithi086 ceph-mon[32985]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:06 smithi086 ceph-mon[32985]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-13T12:52:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:06 smithi086 ceph-mon[32985]: from='client.14538 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi105", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:06 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-13T12:52:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:06 smithi086 ceph-mon[32985]: osdmap e41: 6 total, 6 up, 6 in 2024-09-13T12:52:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:06 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-13T12:52:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:06 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2024-09-13T12:52:06.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:06 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2024-09-13T12:52:07.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:06 smithi105 ceph-mon[33061]: Removing smithi105:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:52:07.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:06 smithi105 ceph-mon[33061]: Removing smithi105:/etc/ceph/ceph.client.admin.keyring 2024-09-13T12:52:07.106 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:06 smithi105 ceph-mon[33061]: Removing smithi105:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.client.admin.keyring 2024-09-13T12:52:07.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:06 smithi105 ceph-mon[33061]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:07.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:06 smithi105 ceph-mon[33061]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:07.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:06 smithi105 ceph-mon[33061]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-09-13T12:52:07.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:06 smithi105 ceph-mon[33061]: from='client.14538 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi105", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:07.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:06 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-09-13T12:52:07.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:06 smithi105 ceph-mon[33061]: osdmap e41: 6 total, 6 up, 6 in 2024-09-13T12:52:07.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:06 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-13T12:52:07.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:06 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2024-09-13T12:52:07.107 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:06 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2024-09-13T12:52:07.683 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:07 smithi105 systemd[1]: Stopping Ceph osd.4 for 0c10639a-71ce-11ef-bceb-c7b262605968... 2024-09-13T12:52:07.683 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:07 smithi105 ceph-mon[33061]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:07.683 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:07 smithi105 ceph-mon[33061]: osd.5 weight is now 0.0 2024-09-13T12:52:07.683 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:07 smithi105 ceph-mon[33061]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:07.683 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:07 smithi105 ceph-mon[33061]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-13T12:52:07.683 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:07 smithi105 ceph-mon[33061]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-13T12:52:07.683 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:07 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-13T12:52:07.683 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:07 smithi105 ceph-mon[33061]: osdmap e42: 6 total, 5 up, 6 in 2024-09-13T12:52:07.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:07 smithi070 ceph-mon[29685]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:07.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:07 smithi070 ceph-mon[29685]: osd.5 weight is now 0.0 2024-09-13T12:52:07.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:07 smithi070 ceph-mon[29685]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:07.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:07 smithi070 ceph-mon[29685]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-13T12:52:07.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:07 smithi070 ceph-mon[29685]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-13T12:52:07.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:07 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-13T12:52:07.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:07 smithi070 ceph-mon[29685]: osdmap e42: 6 total, 5 up, 6 in 2024-09-13T12:52:07.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:07 smithi086 ceph-mon[32985]: pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:07.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:07 smithi086 ceph-mon[32985]: osd.5 weight is now 0.0 2024-09-13T12:52:07.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:07 smithi086 ceph-mon[32985]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:07 smithi086 ceph-mon[32985]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-09-13T12:52:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:07 smithi086 ceph-mon[32985]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-13T12:52:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:07 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-09-13T12:52:07.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:07 smithi086 ceph-mon[32985]: osdmap e42: 6 total, 5 up, 6 in 2024-09-13T12:52:08.106 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:07 smithi105 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4[37228]: 2024-09-13T12:52:07.681+0000 7fab6aff0640 -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-09-13T12:52:08.106 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:07 smithi105 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4[37228]: 2024-09-13T12:52:07.681+0000 7fab6aff0640 -1 osd.4 41 *** Got signal Terminated *** 2024-09-13T12:52:08.106 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:07 smithi105 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4[37228]: 2024-09-13T12:52:07.681+0000 7fab6aff0640 -1 osd.4 41 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-13T12:52:08.459 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:08 smithi105 podman[46714]: 2024-09-13 12:52:08.203296271 +0000 UTC m=+0.650570857 container died f485b567ec3a5ddb257e0cdac884f62e49f4188552e1dd3dcabd0c760bc5f134 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-aclamk-cbt-combined-d58f730, io.buildah.version=1.37.2, GIT_BRANCH=HEAD) 2024-09-13T12:52:08.842 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:08 smithi105 ceph-mon[33061]: osd.4 now down 2024-09-13T12:52:08.842 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:08 smithi105 ceph-mon[33061]: Removing daemon osd.4 from smithi105 -- ports [] 2024-09-13T12:52:08.842 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:08 smithi105 ceph-mon[33061]: osdmap e43: 6 total, 5 up, 6 in 2024-09-13T12:52:08.842 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:08 smithi105 podman[46714]: 2024-09-13 12:52:08.623174321 +0000 UTC m=+1.070448899 container cleanup f485b567ec3a5ddb257e0cdac884f62e49f4188552e1dd3dcabd0c760bc5f134 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_CLEAN=True, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, ceph=True, CEPH_POINT_RELEASE=, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-13T12:52:08.842 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:08 smithi105 bash[46714]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4 2024-09-13T12:52:08.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:08 smithi070 ceph-mon[29685]: osd.4 now down 2024-09-13T12:52:08.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:08 smithi070 ceph-mon[29685]: Removing daemon osd.4 from smithi105 -- ports [] 2024-09-13T12:52:08.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:08 smithi070 ceph-mon[29685]: osdmap e43: 6 total, 5 up, 6 in 2024-09-13T12:52:08.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:08 smithi086 ceph-mon[32985]: osd.4 now down 2024-09-13T12:52:08.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:08 smithi086 ceph-mon[32985]: Removing daemon osd.4 from smithi105 -- ports [] 2024-09-13T12:52:08.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:08 smithi086 ceph-mon[32985]: osdmap e43: 6 total, 5 up, 6 in 2024-09-13T12:52:09.106 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:08 smithi105 podman[46729]: 2024-09-13 12:52:08.841522651 +0000 UTC m=+0.634285790 container remove f485b567ec3a5ddb257e0cdac884f62e49f4188552e1dd3dcabd0c760bc5f134 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.license=GPLv2, GIT_CLEAN=True, CEPH_POINT_RELEASE=) 2024-09-13T12:52:09.511 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:09 smithi105 podman[46816]: 2024-09-13 12:52:09.141831392 +0000 UTC m=+0.016388793 image pull fec07016a2b0bf363d0b69240081049b65cf13f1c44f6a7196cf8309aeb428cd quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f 2024-09-13T12:52:09.511 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:09 smithi105 podman[46816]: 2024-09-13 12:52:09.242029368 +0000 UTC m=+0.116586768 container create 5385f3c14a980f6cdda553320f2a1b0a19632baff9e080dbcc8cfca050a9021d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4-deactivate, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.license=GPLv2, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-13T12:52:09.511 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:09 smithi105 podman[46816]: 2024-09-13 12:52:09.436007056 +0000 UTC m=+0.310564457 container init 5385f3c14a980f6cdda553320f2a1b0a19632baff9e080dbcc8cfca050a9021d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4-deactivate, ceph=True, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, RELEASE=wip-aclamk-cbt-combined-d58f730, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2) 2024-09-13T12:52:09.511 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:09 smithi105 podman[46816]: 2024-09-13 12:52:09.439250084 +0000 UTC m=+0.313807494 container start 5385f3c14a980f6cdda553320f2a1b0a19632baff9e080dbcc8cfca050a9021d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4-deactivate, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, RELEASE=wip-aclamk-cbt-combined-d58f730, ceph=True, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=) 2024-09-13T12:52:09.511 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:09 smithi105 podman[46816]: 2024-09-13 12:52:09.510899378 +0000 UTC m=+0.385456781 container attach 5385f3c14a980f6cdda553320f2a1b0a19632baff9e080dbcc8cfca050a9021d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4-deactivate, org.label-schema.license=GPLv2, RELEASE=wip-aclamk-cbt-combined-d58f730, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux ) 2024-09-13T12:52:09.856 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:09 smithi105 podman[46816]: 2024-09-13 12:52:09.630022161 +0000 UTC m=+0.504579561 container died 5385f3c14a980f6cdda553320f2a1b0a19632baff9e080dbcc8cfca050a9021d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4-deactivate, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-aclamk-cbt-combined-d58f730, ceph=True, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240731, CEPH_POINT_RELEASE=) 2024-09-13T12:52:09.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:09 smithi105 ceph-mon[33061]: pgmap v155: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:09.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:09 smithi105 ceph-mon[33061]: osdmap e44: 6 total, 5 up, 6 in 2024-09-13T12:52:09.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:09 smithi070 ceph-mon[29685]: pgmap v155: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:09.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:09 smithi070 ceph-mon[29685]: osdmap e44: 6 total, 5 up, 6 in 2024-09-13T12:52:09.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:09 smithi086 ceph-mon[32985]: pgmap v155: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:09.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:09 smithi086 ceph-mon[32985]: osdmap e44: 6 total, 5 up, 6 in 2024-09-13T12:52:10.200 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:10 smithi105 podman[46839]: 2024-09-13 12:52:10.197772634 +0000 UTC m=+0.560983517 container remove 5385f3c14a980f6cdda553320f2a1b0a19632baff9e080dbcc8cfca050a9021d (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-4-deactivate, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, ceph=True) 2024-09-13T12:52:10.474 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:10 smithi105 systemd[1]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.4.service: Deactivated successfully. 2024-09-13T12:52:10.474 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:10 smithi105 systemd[1]: Stopped Ceph osd.4 for 0c10639a-71ce-11ef-bceb-c7b262605968. 2024-09-13T12:52:10.475 INFO:journalctl@ceph.osd.4.smithi105.stdout:Sep 13 12:52:10 smithi105 systemd[1]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.4.service: Consumed 1.719s CPU time. 2024-09-13T12:52:10.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:10 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2024-09-13T12:52:10.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:10 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-13T12:52:10.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:10 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2024-09-13T12:52:10.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:10 smithi105 ceph-mon[33061]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-13T12:52:10.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:10 smithi105 ceph-mon[33061]: Cluster is now healthy 2024-09-13T12:52:10.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:10 smithi105 ceph-mon[33061]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-13T12:52:10.857 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:10 smithi105 ceph-mon[33061]: osdmap e45: 5 total, 5 up, 5 in 2024-09-13T12:52:10.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:10 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2024-09-13T12:52:10.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:10 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-13T12:52:10.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:10 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2024-09-13T12:52:10.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:10 smithi070 ceph-mon[29685]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-13T12:52:10.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:10 smithi070 ceph-mon[29685]: Cluster is now healthy 2024-09-13T12:52:10.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:10 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-13T12:52:10.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:10 smithi070 ceph-mon[29685]: osdmap e45: 5 total, 5 up, 5 in 2024-09-13T12:52:10.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:10 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2024-09-13T12:52:10.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:10 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-09-13T12:52:10.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:10 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2024-09-13T12:52:10.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:10 smithi086 ceph-mon[32985]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-13T12:52:10.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:10 smithi086 ceph-mon[32985]: Cluster is now healthy 2024-09-13T12:52:10.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:10 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-09-13T12:52:10.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:10 smithi086 ceph-mon[32985]: osdmap e45: 5 total, 5 up, 5 in 2024-09-13T12:52:11.804 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:11 smithi105 ceph-mon[33061]: pgmap v158: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:11.805 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:11 smithi105 ceph-mon[33061]: Removing key for osd.4 2024-09-13T12:52:11.805 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:11 smithi105 ceph-mon[33061]: Successfully removed osd.4 on smithi105 2024-09-13T12:52:11.805 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:11 smithi105 ceph-mon[33061]: Successfully purged osd.4 on smithi105 2024-09-13T12:52:11.805 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:11 smithi105 ceph-mon[33061]: Zapping devices for osd.4 on smithi105 2024-09-13T12:52:11.805 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:11 smithi105 ceph-mon[33061]: osdmap e46: 5 total, 5 up, 5 in 2024-09-13T12:52:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:11 smithi070 ceph-mon[29685]: pgmap v158: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:11 smithi070 ceph-mon[29685]: Removing key for osd.4 2024-09-13T12:52:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:11 smithi070 ceph-mon[29685]: Successfully removed osd.4 on smithi105 2024-09-13T12:52:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:11 smithi070 ceph-mon[29685]: Successfully purged osd.4 on smithi105 2024-09-13T12:52:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:11 smithi070 ceph-mon[29685]: Zapping devices for osd.4 on smithi105 2024-09-13T12:52:11.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:11 smithi070 ceph-mon[29685]: osdmap e46: 5 total, 5 up, 5 in 2024-09-13T12:52:11.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:11 smithi086 ceph-mon[32985]: pgmap v158: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 536 GiB / 536 GiB avail 2024-09-13T12:52:11.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:11 smithi086 ceph-mon[32985]: Removing key for osd.4 2024-09-13T12:52:11.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:11 smithi086 ceph-mon[32985]: Successfully removed osd.4 on smithi105 2024-09-13T12:52:11.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:11 smithi086 ceph-mon[32985]: Successfully purged osd.4 on smithi105 2024-09-13T12:52:11.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:11 smithi086 ceph-mon[32985]: Zapping devices for osd.4 on smithi105 2024-09-13T12:52:11.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:11 smithi086 ceph-mon[32985]: osdmap e46: 5 total, 5 up, 5 in 2024-09-13T12:52:13.669 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:52:13 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: 2024-09-13T12:52:13.392+0000 7f90efaee640 -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-09-13T12:52:13.691 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:13 smithi105 podman[47205]: 2024-09-13 12:52:13.437666626 +0000 UTC m=+0.017991593 container died 4e36f8187c953e0dfeccc1f34b3a8a953f402c45e11c0fba520a8419326acbdc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-c, CEPH_POINT_RELEASE=, RELEASE=wip-aclamk-cbt-combined-d58f730, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-13T12:52:14.356 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:13 smithi105 podman[47205]: 2024-09-13 12:52:13.958145865 +0000 UTC m=+0.538470833 container remove 4e36f8187c953e0dfeccc1f34b3a8a953f402c45e11c0fba520a8419326acbdc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-c, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, ceph=True, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0) 2024-09-13T12:52:14.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:14 smithi105 systemd[1]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.c.service: Deactivated successfully. 2024-09-13T12:52:14.856 INFO:journalctl@ceph.mon.c.smithi105.stdout:Sep 13 12:52:14 smithi105 systemd[1]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.c.service: Consumed 2.566s CPU time. 2024-09-13T12:52:15.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: Successfully zapped devices for osd.4 on smithi105 2024-09-13T12:52:15.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:15.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-13T12:52:15.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-13T12:52:15.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: Removing monitor c from monmap... 2024-09-13T12:52:15.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-13T12:52:15.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:52:15.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:52:15.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: mon.b calling monitor election 2024-09-13T12:52:15.920 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 117 KiB/s, 0 objects/s recovering 2024-09-13T12:52:15.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: mon.a calling monitor election 2024-09-13T12:52:15.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-13T12:52:15.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: monmap epoch 4 2024-09-13T12:52:15.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: fsid 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:52:15.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: last_changed 2024-09-13T12:52:13.402629+0000 2024-09-13T12:52:15.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: created 2024-09-13T12:47:05.470739+0000 2024-09-13T12:52:15.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: min_mon_release 19 (squid) 2024-09-13T12:52:15.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: election_strategy: 1 2024-09-13T12:52:15.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-13T12:52:15.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: 1: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-13T12:52:15.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: fsmap 2024-09-13T12:52:15.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: osdmap e47: 5 total, 5 up, 5 in 2024-09-13T12:52:15.921 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-13T12:52:15.922 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:15 smithi070 ceph-mon[29685]: overall HEALTH_OK 2024-09-13T12:52:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: Successfully zapped devices for osd.4 on smithi105 2024-09-13T12:52:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-13T12:52:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-09-13T12:52:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: Removing monitor c from monmap... 2024-09-13T12:52:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-09-13T12:52:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2024-09-13T12:52:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2024-09-13T12:52:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: mon.b calling monitor election 2024-09-13T12:52:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 117 KiB/s, 0 objects/s recovering 2024-09-13T12:52:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: mon.a calling monitor election 2024-09-13T12:52:15.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-09-13T12:52:15.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: monmap epoch 4 2024-09-13T12:52:15.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: fsid 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:52:15.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: last_changed 2024-09-13T12:52:13.402629+0000 2024-09-13T12:52:15.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: created 2024-09-13T12:47:05.470739+0000 2024-09-13T12:52:15.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: min_mon_release 19 (squid) 2024-09-13T12:52:15.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: election_strategy: 1 2024-09-13T12:52:15.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: 0: [v2:172.21.15.70:3300/0,v1:172.21.15.70:6789/0] mon.a 2024-09-13T12:52:15.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: 1: [v2:172.21.15.86:3300/0,v1:172.21.15.86:6789/0] mon.b 2024-09-13T12:52:15.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: fsmap 2024-09-13T12:52:15.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: osdmap e47: 5 total, 5 up, 5 in 2024-09-13T12:52:15.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: mgrmap e15: a(active, since 4m), standbys: b 2024-09-13T12:52:15.927 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:15 smithi086 ceph-mon[32985]: overall HEALTH_OK 2024-09-13T12:52:17.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:16 smithi070 ceph-mon[29685]: Removing daemon mon.c from smithi105 -- ports [] 2024-09-13T12:52:17.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:16 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:17.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:16 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:17.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:16 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:52:17.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:16 smithi086 ceph-mon[32985]: Removing daemon mon.c from smithi105 -- ports [] 2024-09-13T12:52:17.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:16 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:17.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:16 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:17.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:16 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:52:18.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:17 smithi070 ceph-mon[29685]: pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-13T12:52:18.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:17 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:18.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:17 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:18.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:17 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:18.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:17 smithi086 ceph-mon[32985]: pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-13T12:52:18.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:17 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:18.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:17 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:18.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:17 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:20.214 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch ps --hostname smithi105 2024-09-13T12:52:20.356 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:19 smithi070 ceph-mon[29685]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-13T12:52:20.356 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:19 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:20.356 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:19 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:20.356 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:19 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:20.356 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:19 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:52:20.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:19 smithi086 ceph-mon[32985]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 76 KiB/s, 0 objects/s recovering 2024-09-13T12:52:20.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:19 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:20.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:19 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:20.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:19 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:20.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:19 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:52:20.500 INFO:teuthology.orchestra.run.smithi070.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-13T12:52:20.501 INFO:teuthology.orchestra.run.smithi070.stderr:osd.5 smithi105 running (55s) 3s ago 55s 43.2M 10.3G 19.3.0-4697-gd58f7306 fec07016a2b0 e7c324879729 ' 2024-09-13T12:52:20.501 INFO:teuthology.orchestra.run.smithi070.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-13T12:52:20.501 INFO:teuthology.orchestra.run.smithi070.stderr:osd.5 smithi105 running (55s) 3s ago 55s 43.2M 10.3G 19.3.0-4697-gd58f7306 fec07016a2b0 e7c324879729 ' '!=' 'No daemons reported' ']' 2024-09-13T12:52:20.501 INFO:teuthology.orchestra.run.smithi070.stderr:+ sleep 15 2024-09-13T12:52:20.669 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:20 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a[29681]: 2024-09-13T12:52:20.355+0000 7f7c8beb0640 -1 mon.a@0(leader).osd e47 definitely_dead 0 2024-09-13T12:52:21.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:20 smithi070 ceph-mon[29685]: Detected new or changed devices on smithi105 2024-09-13T12:52:21.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:20 smithi070 ceph-mon[29685]: Updating smithi070:/etc/ceph/ceph.conf 2024-09-13T12:52:21.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:20 smithi070 ceph-mon[29685]: Updating smithi086:/etc/ceph/ceph.conf 2024-09-13T12:52:21.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:21.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-13T12:52:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-13T12:52:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2024-09-13T12:52:21.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:20 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2024-09-13T12:52:21.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:20 smithi086 ceph-mon[32985]: Detected new or changed devices on smithi105 2024-09-13T12:52:21.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:20 smithi086 ceph-mon[32985]: Updating smithi070:/etc/ceph/ceph.conf 2024-09-13T12:52:21.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:20 smithi086 ceph-mon[32985]: Updating smithi086:/etc/ceph/ceph.conf 2024-09-13T12:52:21.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:21.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:21.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:21.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:21.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-13T12:52:21.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2024-09-13T12:52:21.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2024-09-13T12:52:21.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:20 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2024-09-13T12:52:22.106 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:21 smithi105 systemd[1]: Stopping Ceph osd.5 for 0c10639a-71ce-11ef-bceb-c7b262605968... 2024-09-13T12:52:22.107 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:21 smithi105 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5[42704]: 2024-09-13T12:52:21.866+0000 7f291c067640 -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-09-13T12:52:22.107 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:21 smithi105 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5[42704]: 2024-09-13T12:52:21.866+0000 7f291c067640 -1 osd.5 47 *** Got signal Terminated *** 2024-09-13T12:52:22.107 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:21 smithi105 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5[42704]: 2024-09-13T12:52:21.866+0000 7f291c067640 -1 osd.5 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-13T12:52:22.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:21 smithi070 ceph-mon[29685]: pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-13T12:52:22.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:21 smithi070 ceph-mon[29685]: Updating smithi070:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:52:22.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:21 smithi070 ceph-mon[29685]: Updating smithi086:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:52:22.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:21 smithi070 ceph-mon[29685]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:22.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:21 smithi070 ceph-mon[29685]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:22.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:21 smithi070 ceph-mon[29685]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-13T12:52:22.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:21 smithi070 ceph-mon[29685]: from='client.14542 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi105", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:22.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:21 smithi070 ceph-mon[29685]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-13T12:52:22.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:21 smithi070 ceph-mon[29685]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-13T12:52:22.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:21 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-13T12:52:22.420 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:21 smithi070 ceph-mon[29685]: osdmap e48: 5 total, 4 up, 5 in 2024-09-13T12:52:22.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:21 smithi086 ceph-mon[32985]: pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 67 KiB/s, 0 objects/s recovering 2024-09-13T12:52:22.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:21 smithi086 ceph-mon[32985]: Updating smithi070:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:52:22.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:21 smithi086 ceph-mon[32985]: Updating smithi086:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/config/ceph.conf 2024-09-13T12:52:22.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:21 smithi086 ceph-mon[32985]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:22.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:21 smithi086 ceph-mon[32985]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-09-13T12:52:22.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:21 smithi086 ceph-mon[32985]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-09-13T12:52:22.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:21 smithi086 ceph-mon[32985]: from='client.14542 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi105", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:22.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:21 smithi086 ceph-mon[32985]: Health check failed: 1 osds down (OSD_DOWN) 2024-09-13T12:52:22.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:21 smithi086 ceph-mon[32985]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-09-13T12:52:22.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:21 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-09-13T12:52:22.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:21 smithi086 ceph-mon[32985]: osdmap e48: 5 total, 4 up, 5 in 2024-09-13T12:52:22.669 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:22 smithi105 podman[49963]: 2024-09-13 12:52:22.389379123 +0000 UTC m=+0.622675759 container died e7c3248797295863d4e2e2417f663968728615669bcf5806612fbb16fa2bfe97 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5, CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_CLEAN=True, RELEASE=wip-aclamk-cbt-combined-d58f730, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731) 2024-09-13T12:52:22.994 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:22 smithi105 podman[49963]: 2024-09-13 12:52:22.767812422 +0000 UTC m=+1.001109012 container cleanup e7c3248797295863d4e2e2417f663968728615669bcf5806612fbb16fa2bfe97 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, RELEASE=wip-aclamk-cbt-combined-d58f730) 2024-09-13T12:52:22.994 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:22 smithi105 bash[49963]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5 2024-09-13T12:52:23.301 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:22 smithi105 podman[49978]: 2024-09-13 12:52:22.993575418 +0000 UTC m=+0.595076963 container remove e7c3248797295863d4e2e2417f663968728615669bcf5806612fbb16fa2bfe97 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5, ceph=True, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_CLEAN=True, org.label-schema.schema-version=1.0, RELEASE=wip-aclamk-cbt-combined-d58f730, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux ) 2024-09-13T12:52:23.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:22 smithi070 ceph-mon[29685]: osd.5 now down 2024-09-13T12:52:23.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:22 smithi070 ceph-mon[29685]: Removing daemon osd.5 from smithi105 -- ports [] 2024-09-13T12:52:23.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:22 smithi086 ceph-mon[32985]: osd.5 now down 2024-09-13T12:52:23.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:22 smithi086 ceph-mon[32985]: Removing daemon osd.5 from smithi105 -- ports [] 2024-09-13T12:52:23.588 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:23 smithi105 podman[50064]: 2024-09-13 12:52:23.203694015 +0000 UTC m=+0.015711494 image pull fec07016a2b0bf363d0b69240081049b65cf13f1c44f6a7196cf8309aeb428cd quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f 2024-09-13T12:52:23.589 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:23 smithi105 podman[50064]: 2024-09-13 12:52:23.319966774 +0000 UTC m=+0.131984251 container create 770cefba71aef757ee4cb9f7223b31ab2cffeb23c7b4079a710753fca5683790 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5-deactivate, org.label-schema.build-date=20240731, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-aclamk-cbt-combined-d58f730, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2) 2024-09-13T12:52:23.589 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:23 smithi105 podman[50064]: 2024-09-13 12:52:23.513535594 +0000 UTC m=+0.325553075 container init 770cefba71aef757ee4cb9f7223b31ab2cffeb23c7b4079a710753fca5683790 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5-deactivate, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.build-date=20240731, ceph=True, io.buildah.version=1.37.2, GIT_CLEAN=True, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-13T12:52:23.589 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:23 smithi105 podman[50064]: 2024-09-13 12:52:23.516749725 +0000 UTC m=+0.328767204 container start 770cefba71aef757ee4cb9f7223b31ab2cffeb23c7b4079a710753fca5683790 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5-deactivate, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2) 2024-09-13T12:52:23.589 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:23 smithi105 podman[50064]: 2024-09-13 12:52:23.588331025 +0000 UTC m=+0.400348523 container attach 770cefba71aef757ee4cb9f7223b31ab2cffeb23c7b4079a710753fca5683790 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5-deactivate, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-aclamk-cbt-combined-d58f730, maintainer=Guillaume Abrioux , GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.license=GPLv2) 2024-09-13T12:52:23.856 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:23 smithi105 podman[50064]: 2024-09-13 12:52:23.706561344 +0000 UTC m=+0.518578823 container died 770cefba71aef757ee4cb9f7223b31ab2cffeb23c7b4079a710753fca5683790 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5-deactivate, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.build-date=20240731) 2024-09-13T12:52:24.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:23 smithi070 ceph-mon[29685]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 60 KiB/s, 0 objects/s recovering 2024-09-13T12:52:24.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:23 smithi086 ceph-mon[32985]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail; 60 KiB/s, 0 objects/s recovering 2024-09-13T12:52:24.544 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:24 smithi105 podman[50087]: 2024-09-13 12:52:24.24932978 +0000 UTC m=+0.532666558 container remove 770cefba71aef757ee4cb9f7223b31ab2cffeb23c7b4079a710753fca5683790 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-5-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, RELEASE=wip-aclamk-cbt-combined-d58f730, ceph=True, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.schema-version=1.0) 2024-09-13T12:52:24.544 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:24 smithi105 systemd[1]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.5.service: Deactivated successfully. 2024-09-13T12:52:24.544 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:24 smithi105 systemd[1]: Stopped Ceph osd.5 for 0c10639a-71ce-11ef-bceb-c7b262605968. 2024-09-13T12:52:24.544 INFO:journalctl@ceph.osd.5.smithi105.stdout:Sep 13 12:52:24 smithi105 systemd[1]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.5.service: Consumed 1.717s CPU time. 2024-09-13T12:52:25.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:24 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2024-09-13T12:52:25.320 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:24 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-13T12:52:25.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:24 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2024-09-13T12:52:25.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:24 smithi070 ceph-mon[29685]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-13T12:52:25.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:24 smithi070 ceph-mon[29685]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-13T12:52:25.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:24 smithi070 ceph-mon[29685]: Cluster is now healthy 2024-09-13T12:52:25.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:24 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-13T12:52:25.321 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:24 smithi070 ceph-mon[29685]: osdmap e49: 4 total, 4 up, 4 in 2024-09-13T12:52:25.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:24 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2024-09-13T12:52:25.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:24 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-09-13T12:52:25.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:24 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2024-09-13T12:52:25.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:24 smithi086 ceph-mon[32985]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-09-13T12:52:25.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:24 smithi086 ceph-mon[32985]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-09-13T12:52:25.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:24 smithi086 ceph-mon[32985]: Cluster is now healthy 2024-09-13T12:52:25.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:24 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-09-13T12:52:25.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:24 smithi086 ceph-mon[32985]: osdmap e49: 4 total, 4 up, 4 in 2024-09-13T12:52:26.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:25 smithi070 ceph-mon[29685]: pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:52:26.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:25 smithi070 ceph-mon[29685]: Removing key for osd.5 2024-09-13T12:52:26.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:25 smithi070 ceph-mon[29685]: Successfully removed osd.5 on smithi105 2024-09-13T12:52:26.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:25 smithi070 ceph-mon[29685]: Successfully purged osd.5 on smithi105 2024-09-13T12:52:26.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:25 smithi070 ceph-mon[29685]: Zapping devices for osd.5 on smithi105 2024-09-13T12:52:26.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:25 smithi086 ceph-mon[32985]: pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 136 MiB used, 447 GiB / 447 GiB avail 2024-09-13T12:52:26.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:25 smithi086 ceph-mon[32985]: Removing key for osd.5 2024-09-13T12:52:26.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:25 smithi086 ceph-mon[32985]: Successfully removed osd.5 on smithi105 2024-09-13T12:52:26.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:25 smithi086 ceph-mon[32985]: Successfully purged osd.5 on smithi105 2024-09-13T12:52:26.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:25 smithi086 ceph-mon[32985]: Zapping devices for osd.5 on smithi105 2024-09-13T12:52:28.150 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:27 smithi070 ceph-mon[29685]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:28.151 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:28.151 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:52:28.151 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T12:52:28.151 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:27 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:28.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:27 smithi086 ceph-mon[32985]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:28.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:27 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:28.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:27 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:52:28.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:27 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T12:52:28.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:27 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:29.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:28 smithi070 ceph-mon[29685]: Successfully zapped devices for osd.5 on smithi105 2024-09-13T12:52:29.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:28 smithi070 ceph-mon[29685]: Reconfiguring mon.a (monmap changed)... 2024-09-13T12:52:29.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:28 smithi070 ceph-mon[29685]: Reconfiguring daemon mon.a on smithi070 2024-09-13T12:52:29.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:28 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:29.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:28 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:29.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:28 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T12:52:29.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:28 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T12:52:29.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:28 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:29.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:28 smithi086 ceph-mon[32985]: Successfully zapped devices for osd.5 on smithi105 2024-09-13T12:52:29.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:28 smithi086 ceph-mon[32985]: Reconfiguring mon.a (monmap changed)... 2024-09-13T12:52:29.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:28 smithi086 ceph-mon[32985]: Reconfiguring daemon mon.a on smithi070 2024-09-13T12:52:29.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:28 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:29.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:28 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:29.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:28 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T12:52:29.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:28 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T12:52:29.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:28 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:30.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:29 smithi070 ceph-mon[29685]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:30.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:29 smithi070 ceph-mon[29685]: Reconfiguring mgr.a (monmap changed)... 2024-09-13T12:52:30.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:29 smithi070 ceph-mon[29685]: Reconfiguring daemon mgr.a on smithi070 2024-09-13T12:52:30.425 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:29 smithi086 ceph-mon[32985]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:30.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:29 smithi086 ceph-mon[32985]: Reconfiguring mgr.a (monmap changed)... 2024-09-13T12:52:30.426 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:29 smithi086 ceph-mon[32985]: Reconfiguring daemon mgr.a on smithi070 2024-09-13T12:52:31.549 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:31 smithi070 ceph-mon[29685]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:31.549 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:31.550 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:31.550 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:31 smithi070 ceph-mon[29685]: Reconfiguring osd.0 (monmap changed)... 2024-09-13T12:52:31.550 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-13T12:52:31.550 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:31 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:31.550 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:31 smithi070 ceph-mon[29685]: Reconfiguring daemon osd.0 on smithi070 2024-09-13T12:52:31.675 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:31 smithi086 ceph-mon[32985]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:31.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:31 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:31.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:31 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:31.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:31 smithi086 ceph-mon[32985]: Reconfiguring osd.0 (monmap changed)... 2024-09-13T12:52:31.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:31 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-13T12:52:31.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:31 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:31.676 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:31 smithi086 ceph-mon[32985]: Reconfiguring daemon osd.0 on smithi070 2024-09-13T12:52:32.914 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:32.916 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:32.916 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:32 smithi070 ceph-mon[29685]: Reconfiguring osd.1 (monmap changed)... 2024-09-13T12:52:32.916 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-13T12:52:32.916 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:32 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:32.916 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:32 smithi070 ceph-mon[29685]: Reconfiguring daemon osd.1 on smithi070 2024-09-13T12:52:32.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:32 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:32.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:32 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:32.925 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:32 smithi086 ceph-mon[32985]: Reconfiguring osd.1 (monmap changed)... 2024-09-13T12:52:32.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:32 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-13T12:52:32.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:32 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:32.926 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:32 smithi086 ceph-mon[32985]: Reconfiguring daemon osd.1 on smithi070 2024-09-13T12:52:34.387 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:33 smithi086 ceph-mon[32985]: pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:34.387 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:33 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:34.387 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:33 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:34.387 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:33 smithi086 ceph-mon[32985]: Reconfiguring mon.b (monmap changed)... 2024-09-13T12:52:34.387 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:33 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:52:34.388 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:33 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T12:52:34.388 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:33 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:34.388 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:33 smithi086 ceph-mon[32985]: Reconfiguring daemon mon.b on smithi086 2024-09-13T12:52:34.421 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:33 smithi070 ceph-mon[29685]: pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:34.421 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:33 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:34.421 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:33 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:34.421 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:33 smithi070 ceph-mon[29685]: Reconfiguring mon.b (monmap changed)... 2024-09-13T12:52:34.421 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:33 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-13T12:52:34.421 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:33 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-13T12:52:34.421 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:33 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:34.422 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:33 smithi070 ceph-mon[29685]: Reconfiguring daemon mon.b on smithi086 2024-09-13T12:52:35.503 INFO:teuthology.orchestra.run.smithi070.stderr:++ ceph orch ps --hostname smithi105 2024-09-13T12:52:35.743 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:35 smithi086 ceph-mon[32985]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:35.744 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:35 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:35.744 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:35 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:35.744 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:35 smithi086 ceph-mon[32985]: Reconfiguring mgr.b (monmap changed)... 2024-09-13T12:52:35.744 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:35 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T12:52:35.744 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:35 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T12:52:35.744 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:35 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:35.744 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:35 smithi086 ceph-mon[32985]: Reconfiguring daemon mgr.b on smithi086 2024-09-13T12:52:35.789 INFO:teuthology.orchestra.run.smithi070.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-09-13T12:52:35.789 INFO:teuthology.orchestra.run.smithi070.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-09-13T12:52:35.790 INFO:teuthology.orchestra.run.smithi070.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-13T12:52:35.790 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:35 smithi070 ceph-mon[29685]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:35.790 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:35 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:35.790 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:35 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:35.790 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:35 smithi070 ceph-mon[29685]: Reconfiguring mgr.b (monmap changed)... 2024-09-13T12:52:35.790 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:35 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-13T12:52:35.790 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:35 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2024-09-13T12:52:35.790 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:35 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:35.790 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:35 smithi070 ceph-mon[29685]: Reconfiguring daemon mgr.b on smithi086 2024-09-13T12:52:36.049 INFO:teuthology.orchestra.run.smithi070.stderr:17 2024-09-13T12:52:36.061 INFO:teuthology.orchestra.run.smithi070.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-13T12:52:36.073 INFO:teuthology.orchestra.run.smithi070.stderr:++ cat crushmap.txt 2024-09-13T12:52:36.074 INFO:teuthology.orchestra.run.smithi070.stderr:+ CRUSH_MAP='# begin crush map 2024-09-13T12:52:36.075 INFO:teuthology.orchestra.run.smithi070.stderr:tunable choose_local_tries 0 2024-09-13T12:52:36.075 INFO:teuthology.orchestra.run.smithi070.stderr:tunable choose_local_fallback_tries 0 2024-09-13T12:52:36.075 INFO:teuthology.orchestra.run.smithi070.stderr:tunable choose_total_tries 50 2024-09-13T12:52:36.075 INFO:teuthology.orchestra.run.smithi070.stderr:tunable chooseleaf_descend_once 1 2024-09-13T12:52:36.075 INFO:teuthology.orchestra.run.smithi070.stderr:tunable chooseleaf_vary_r 1 2024-09-13T12:52:36.075 INFO:teuthology.orchestra.run.smithi070.stderr:tunable chooseleaf_stable 1 2024-09-13T12:52:36.075 INFO:teuthology.orchestra.run.smithi070.stderr:tunable straw_calc_version 1 2024-09-13T12:52:36.076 INFO:teuthology.orchestra.run.smithi070.stderr:tunable allowed_bucket_algs 54 2024-09-13T12:52:36.076 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-13T12:52:36.076 INFO:teuthology.orchestra.run.smithi070.stderr:# devices 2024-09-13T12:52:36.076 INFO:teuthology.orchestra.run.smithi070.stderr:device 0 osd.0 class ssd 2024-09-13T12:52:36.076 INFO:teuthology.orchestra.run.smithi070.stderr:device 1 osd.1 class ssd 2024-09-13T12:52:36.076 INFO:teuthology.orchestra.run.smithi070.stderr:device 2 osd.2 class ssd 2024-09-13T12:52:36.076 INFO:teuthology.orchestra.run.smithi070.stderr:device 3 osd.3 class ssd 2024-09-13T12:52:36.076 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-13T12:52:36.076 INFO:teuthology.orchestra.run.smithi070.stderr:# types 2024-09-13T12:52:36.076 INFO:teuthology.orchestra.run.smithi070.stderr:type 0 osd 2024-09-13T12:52:36.076 INFO:teuthology.orchestra.run.smithi070.stderr:type 1 host 2024-09-13T12:52:36.076 INFO:teuthology.orchestra.run.smithi070.stderr:type 2 chassis 2024-09-13T12:52:36.076 INFO:teuthology.orchestra.run.smithi070.stderr:type 3 rack 2024-09-13T12:52:36.077 INFO:teuthology.orchestra.run.smithi070.stderr:type 4 row 2024-09-13T12:52:36.077 INFO:teuthology.orchestra.run.smithi070.stderr:type 5 pdu 2024-09-13T12:52:36.077 INFO:teuthology.orchestra.run.smithi070.stderr:type 6 pod 2024-09-13T12:52:36.077 INFO:teuthology.orchestra.run.smithi070.stderr:type 7 room 2024-09-13T12:52:36.077 INFO:teuthology.orchestra.run.smithi070.stderr:type 8 datacenter 2024-09-13T12:52:36.077 INFO:teuthology.orchestra.run.smithi070.stderr:type 9 zone 2024-09-13T12:52:36.077 INFO:teuthology.orchestra.run.smithi070.stderr:type 10 region 2024-09-13T12:52:36.077 INFO:teuthology.orchestra.run.smithi070.stderr:type 11 root 2024-09-13T12:52:36.077 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-13T12:52:36.078 INFO:teuthology.orchestra.run.smithi070.stderr:# buckets 2024-09-13T12:52:36.078 INFO:teuthology.orchestra.run.smithi070.stderr:host smithi070 { 2024-09-13T12:52:36.078 INFO:teuthology.orchestra.run.smithi070.stderr: id -3 # do not change unnecessarily 2024-09-13T12:52:36.078 INFO:teuthology.orchestra.run.smithi070.stderr: id -4 class ssd # do not change unnecessarily 2024-09-13T12:52:36.078 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.17459 2024-09-13T12:52:36.078 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-13T12:52:36.078 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-13T12:52:36.078 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.0 weight 0.08730 2024-09-13T12:52:36.078 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.1 weight 0.08730 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr:host smithi086 { 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr: id -5 # do not change unnecessarily 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr: id -6 class ssd # do not change unnecessarily 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.17459 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.2 weight 0.08730 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.3 weight 0.08730 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr:host smithi105 { 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr: id -7 # do not change unnecessarily 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr: id -8 class ssd # do not change unnecessarily 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.00000 2024-09-13T12:52:36.079 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-13T12:52:36.080 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-13T12:52:36.080 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-13T12:52:36.080 INFO:teuthology.orchestra.run.smithi070.stderr:root default { 2024-09-13T12:52:36.080 INFO:teuthology.orchestra.run.smithi070.stderr: id -1 # do not change unnecessarily 2024-09-13T12:52:36.080 INFO:teuthology.orchestra.run.smithi070.stderr: id -2 class ssd # do not change unnecessarily 2024-09-13T12:52:36.080 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.34918 2024-09-13T12:52:36.080 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-13T12:52:36.080 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-13T12:52:36.080 INFO:teuthology.orchestra.run.smithi070.stderr: item smithi070 weight 0.17459 2024-09-13T12:52:36.080 INFO:teuthology.orchestra.run.smithi070.stderr: item smithi086 weight 0.17459 2024-09-13T12:52:36.080 INFO:teuthology.orchestra.run.smithi070.stderr: item smithi105 weight 0.00000 2024-09-13T12:52:36.080 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-13T12:52:36.080 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-13T12:52:36.081 INFO:teuthology.orchestra.run.smithi070.stderr:# rules 2024-09-13T12:52:36.081 INFO:teuthology.orchestra.run.smithi070.stderr:rule replicated_rule { 2024-09-13T12:52:36.081 INFO:teuthology.orchestra.run.smithi070.stderr: id 0 2024-09-13T12:52:36.081 INFO:teuthology.orchestra.run.smithi070.stderr: type replicated 2024-09-13T12:52:36.081 INFO:teuthology.orchestra.run.smithi070.stderr: step take default 2024-09-13T12:52:36.081 INFO:teuthology.orchestra.run.smithi070.stderr: step choose firstn 0 type osd 2024-09-13T12:52:36.081 INFO:teuthology.orchestra.run.smithi070.stderr: step emit 2024-09-13T12:52:36.081 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-13T12:52:36.081 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-13T12:52:36.081 INFO:teuthology.orchestra.run.smithi070.stderr:# end crush map' 2024-09-13T12:52:36.081 INFO:teuthology.orchestra.run.smithi070.stderr:+ grep -q smithi105 2024-09-13T12:52:36.082 INFO:teuthology.orchestra.run.smithi070.stderr:+ ceph orch host rm smithi105 --rm-crush-entry 2024-09-13T12:52:36.825 INFO:teuthology.orchestra.run.smithi070.stdout:Removed host 'smithi105' 2024-09-13T12:52:36.837 INFO:teuthology.orchestra.run.smithi070.stderr:+ sleep 30 2024-09-13T12:52:36.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:36 smithi070 ceph-mon[29685]: from='client.14546 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi105", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:36.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:36 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:36.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:36 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:36.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:36 smithi070 ceph-mon[29685]: Reconfiguring osd.2 (monmap changed)... 2024-09-13T12:52:36.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:36 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-13T12:52:36.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:36 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:36.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:36 smithi070 ceph-mon[29685]: Reconfiguring daemon osd.2 on smithi086 2024-09-13T12:52:36.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:36 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/725599755' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-13T12:52:36.919 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:36 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "smithi105"} : dispatch 2024-09-13T12:52:37.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:36 smithi086 ceph-mon[32985]: from='client.14546 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi105", "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:37.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:36 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:37.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:36 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:37.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:36 smithi086 ceph-mon[32985]: Reconfiguring osd.2 (monmap changed)... 2024-09-13T12:52:37.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:36 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-13T12:52:37.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:36 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:37.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:36 smithi086 ceph-mon[32985]: Reconfiguring daemon osd.2 on smithi086 2024-09-13T12:52:37.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:36 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/725599755' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-13T12:52:37.177 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:36 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "smithi105"} : dispatch 2024-09-13T12:52:38.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:37 smithi070 ceph-mon[29685]: pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:38.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:37 smithi070 ceph-mon[29685]: from='client.14554 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi105", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:38.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:37 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi105"}]': finished 2024-09-13T12:52:38.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:37 smithi070 ceph-mon[29685]: osdmap e50: 4 total, 4 up, 4 in 2024-09-13T12:52:38.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:37 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:38.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:37 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.smithi105"} : dispatch 2024-09-13T12:52:38.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:37 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi105"}]': finished 2024-09-13T12:52:38.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:37 smithi070 ceph-mon[29685]: Removed host smithi105 2024-09-13T12:52:38.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:37 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:38.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:37 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:38.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:37 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-13T12:52:38.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:37 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:38.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:37 smithi086 ceph-mon[32985]: pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:38.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:37 smithi086 ceph-mon[32985]: from='client.14554 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi105", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-13T12:52:38.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:37 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi105"}]': finished 2024-09-13T12:52:38.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:37 smithi086 ceph-mon[32985]: osdmap e50: 4 total, 4 up, 4 in 2024-09-13T12:52:38.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:37 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:38.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:37 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.smithi105"} : dispatch 2024-09-13T12:52:38.177 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:37 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi105"}]': finished 2024-09-13T12:52:38.177 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:37 smithi086 ceph-mon[32985]: Removed host smithi105 2024-09-13T12:52:38.177 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:37 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:38.177 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:37 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:38.177 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:37 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-13T12:52:38.177 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:37 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:39.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:38 smithi070 ceph-mon[29685]: Reconfiguring osd.3 (monmap changed)... 2024-09-13T12:52:39.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:38 smithi070 ceph-mon[29685]: Reconfiguring daemon osd.3 on smithi086 2024-09-13T12:52:39.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:38 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:39.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:38 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:39.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:38 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:52:39.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:38 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:39.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:38 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:52:39.170 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:38 smithi070 ceph-mon[29685]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:39.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:38 smithi086 ceph-mon[32985]: Reconfiguring osd.3 (monmap changed)... 2024-09-13T12:52:39.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:38 smithi086 ceph-mon[32985]: Reconfiguring daemon osd.3 on smithi086 2024-09-13T12:52:39.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:38 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:39.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:38 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:39.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:38 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-13T12:52:39.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:38 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-13T12:52:39.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:38 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-13T12:52:39.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:38 smithi086 ceph-mon[32985]: from='mgr.14150 172.21.15.70:0/141325814' entity='mgr.a' 2024-09-13T12:52:40.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:39 smithi070 ceph-mon[29685]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:40.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:39 smithi086 ceph-mon[32985]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:42.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:41 smithi070 ceph-mon[29685]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:42.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:41 smithi086 ceph-mon[32985]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:44.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:43 smithi070 ceph-mon[29685]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:44.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:43 smithi086 ceph-mon[32985]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:46.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:45 smithi070 ceph-mon[29685]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:46.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:45 smithi086 ceph-mon[32985]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:48.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:47 smithi070 ceph-mon[29685]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:48.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:47 smithi086 ceph-mon[32985]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:50.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:49 smithi070 ceph-mon[29685]: pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:50.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:49 smithi086 ceph-mon[32985]: pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:52.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:51 smithi070 ceph-mon[29685]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:52.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:51 smithi086 ceph-mon[32985]: pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:54.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:53 smithi070 ceph-mon[29685]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:54.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:53 smithi086 ceph-mon[32985]: pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:56.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:55 smithi070 ceph-mon[29685]: pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:56.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:55 smithi086 ceph-mon[32985]: pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:58.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:57 smithi070 ceph-mon[29685]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:52:58.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:57 smithi086 ceph-mon[32985]: pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:53:00.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:52:59 smithi070 ceph-mon[29685]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:53:00.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:52:59 smithi086 ceph-mon[32985]: pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:53:02.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:53:01 smithi070 ceph-mon[29685]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:53:02.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:53:01 smithi086 ceph-mon[32985]: pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:53:04.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:53:03 smithi070 ceph-mon[29685]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:53:04.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:53:03 smithi086 ceph-mon[32985]: pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:53:06.169 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:53:05 smithi070 ceph-mon[29685]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:53:06.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:53:05 smithi086 ceph-mon[32985]: pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:53:06.839 INFO:teuthology.orchestra.run.smithi070.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-09-13T12:53:07.099 INFO:teuthology.orchestra.run.smithi070.stderr:18 2024-09-13T12:53:07.110 INFO:teuthology.orchestra.run.smithi070.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-09-13T12:53:07.122 INFO:teuthology.orchestra.run.smithi070.stderr:++ cat crushmap.txt 2024-09-13T12:53:07.123 INFO:teuthology.orchestra.run.smithi070.stderr:+ CRUSH_MAP='# begin crush map 2024-09-13T12:53:07.123 INFO:teuthology.orchestra.run.smithi070.stderr:tunable choose_local_tries 0 2024-09-13T12:53:07.124 INFO:teuthology.orchestra.run.smithi070.stderr:tunable choose_local_fallback_tries 0 2024-09-13T12:53:07.124 INFO:teuthology.orchestra.run.smithi070.stderr:tunable choose_total_tries 50 2024-09-13T12:53:07.124 INFO:teuthology.orchestra.run.smithi070.stderr:tunable chooseleaf_descend_once 1 2024-09-13T12:53:07.124 INFO:teuthology.orchestra.run.smithi070.stderr:tunable chooseleaf_vary_r 1 2024-09-13T12:53:07.124 INFO:teuthology.orchestra.run.smithi070.stderr:tunable chooseleaf_stable 1 2024-09-13T12:53:07.124 INFO:teuthology.orchestra.run.smithi070.stderr:tunable straw_calc_version 1 2024-09-13T12:53:07.124 INFO:teuthology.orchestra.run.smithi070.stderr:tunable allowed_bucket_algs 54 2024-09-13T12:53:07.124 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-13T12:53:07.124 INFO:teuthology.orchestra.run.smithi070.stderr:# devices 2024-09-13T12:53:07.124 INFO:teuthology.orchestra.run.smithi070.stderr:device 0 osd.0 class ssd 2024-09-13T12:53:07.124 INFO:teuthology.orchestra.run.smithi070.stderr:device 1 osd.1 class ssd 2024-09-13T12:53:07.124 INFO:teuthology.orchestra.run.smithi070.stderr:device 2 osd.2 class ssd 2024-09-13T12:53:07.124 INFO:teuthology.orchestra.run.smithi070.stderr:device 3 osd.3 class ssd 2024-09-13T12:53:07.125 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-13T12:53:07.125 INFO:teuthology.orchestra.run.smithi070.stderr:# types 2024-09-13T12:53:07.125 INFO:teuthology.orchestra.run.smithi070.stderr:type 0 osd 2024-09-13T12:53:07.125 INFO:teuthology.orchestra.run.smithi070.stderr:type 1 host 2024-09-13T12:53:07.125 INFO:teuthology.orchestra.run.smithi070.stderr:type 2 chassis 2024-09-13T12:53:07.125 INFO:teuthology.orchestra.run.smithi070.stderr:type 3 rack 2024-09-13T12:53:07.125 INFO:teuthology.orchestra.run.smithi070.stderr:type 4 row 2024-09-13T12:53:07.125 INFO:teuthology.orchestra.run.smithi070.stderr:type 5 pdu 2024-09-13T12:53:07.125 INFO:teuthology.orchestra.run.smithi070.stderr:type 6 pod 2024-09-13T12:53:07.125 INFO:teuthology.orchestra.run.smithi070.stderr:type 7 room 2024-09-13T12:53:07.125 INFO:teuthology.orchestra.run.smithi070.stderr:type 8 datacenter 2024-09-13T12:53:07.125 INFO:teuthology.orchestra.run.smithi070.stderr:type 9 zone 2024-09-13T12:53:07.125 INFO:teuthology.orchestra.run.smithi070.stderr:type 10 region 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr:type 11 root 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr:# buckets 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr:host smithi070 { 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr: id -3 # do not change unnecessarily 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr: id -4 class ssd # do not change unnecessarily 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.17459 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.0 weight 0.08730 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.1 weight 0.08730 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr:host smithi086 { 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr: id -5 # do not change unnecessarily 2024-09-13T12:53:07.126 INFO:teuthology.orchestra.run.smithi070.stderr: id -6 class ssd # do not change unnecessarily 2024-09-13T12:53:07.127 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.17459 2024-09-13T12:53:07.127 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-13T12:53:07.127 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-13T12:53:07.127 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.2 weight 0.08730 2024-09-13T12:53:07.127 INFO:teuthology.orchestra.run.smithi070.stderr: item osd.3 weight 0.08730 2024-09-13T12:53:07.127 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-13T12:53:07.127 INFO:teuthology.orchestra.run.smithi070.stderr:root default { 2024-09-13T12:53:07.127 INFO:teuthology.orchestra.run.smithi070.stderr: id -1 # do not change unnecessarily 2024-09-13T12:53:07.127 INFO:teuthology.orchestra.run.smithi070.stderr: id -2 class ssd # do not change unnecessarily 2024-09-13T12:53:07.127 INFO:teuthology.orchestra.run.smithi070.stderr: # weight 0.34918 2024-09-13T12:53:07.127 INFO:teuthology.orchestra.run.smithi070.stderr: alg straw2 2024-09-13T12:53:07.127 INFO:teuthology.orchestra.run.smithi070.stderr: hash 0 # rjenkins1 2024-09-13T12:53:07.128 INFO:teuthology.orchestra.run.smithi070.stderr: item smithi070 weight 0.17459 2024-09-13T12:53:07.128 INFO:teuthology.orchestra.run.smithi070.stderr: item smithi086 weight 0.17459 2024-09-13T12:53:07.128 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-13T12:53:07.128 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-13T12:53:07.128 INFO:teuthology.orchestra.run.smithi070.stderr:# rules 2024-09-13T12:53:07.128 INFO:teuthology.orchestra.run.smithi070.stderr:rule replicated_rule { 2024-09-13T12:53:07.128 INFO:teuthology.orchestra.run.smithi070.stderr: id 0 2024-09-13T12:53:07.128 INFO:teuthology.orchestra.run.smithi070.stderr: type replicated 2024-09-13T12:53:07.128 INFO:teuthology.orchestra.run.smithi070.stderr: step take default 2024-09-13T12:53:07.128 INFO:teuthology.orchestra.run.smithi070.stderr: step choose firstn 0 type osd 2024-09-13T12:53:07.128 INFO:teuthology.orchestra.run.smithi070.stderr: step emit 2024-09-13T12:53:07.128 INFO:teuthology.orchestra.run.smithi070.stderr:} 2024-09-13T12:53:07.128 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-13T12:53:07.129 INFO:teuthology.orchestra.run.smithi070.stderr:# end crush map' 2024-09-13T12:53:07.129 INFO:teuthology.orchestra.run.smithi070.stderr:+ grep -q smithi105 2024-09-13T12:53:07.973 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-13T12:53:07.982 INFO:tasks.cephadm:Teardown begin 2024-09-13T12:53:07.982 DEBUG:teuthology.orchestra.run.smithi070:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T12:53:08.010 DEBUG:teuthology.orchestra.run.smithi086:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T12:53:08.046 DEBUG:teuthology.orchestra.run.smithi105:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T12:53:08.080 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-13T12:53:08.080 DEBUG:teuthology.orchestra.run.smithi070:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-13T12:53:08.095 DEBUG:teuthology.orchestra.run.smithi086:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-13T12:53:08.113 DEBUG:teuthology.orchestra.run.smithi105:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-13T12:53:08.136 INFO:tasks.cephadm:Stopping all daemons... 2024-09-13T12:53:08.137 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-09-13T12:53:08.137 DEBUG:teuthology.orchestra.run.smithi070:> sudo systemctl stop ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.a 2024-09-13T12:53:08.158 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:53:07 smithi070 ceph-mon[29685]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:53:08.158 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:53:07 smithi070 ceph-mon[29685]: from='client.? 172.21.15.70:0/1101201480' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-13T12:53:08.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:53:07 smithi086 ceph-mon[32985]: pgmap v192: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 358 GiB / 358 GiB avail 2024-09-13T12:53:08.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:53:07 smithi086 ceph-mon[32985]: from='client.? 172.21.15.70:0/1101201480' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2024-09-13T12:53:08.419 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:53:08 smithi070 systemd[1]: Stopping Ceph mon.a for 0c10639a-71ce-11ef-bceb-c7b262605968... 2024-09-13T12:53:08.733 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:53:08 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a[29681]: 2024-09-13T12:53:08.440+0000 7f7c916bb640 -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-09-13T12:53:08.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:53:08 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a[29681]: 2024-09-13T12:53:08.440+0000 7f7c916bb640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-09-13T12:53:08.734 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:53:08 smithi070 podman[56758]: 2024-09-13 12:53:08.471096676 +0000 UTC m=+0.148551241 container died cac558c719ec6a2ee58a36878ab59ed1a3172cd6af40f75963a9491b724bbf4a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-aclamk-cbt-combined-d58f730, CEPH_POINT_RELEASE=, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0) 2024-09-13T12:53:09.075 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:53:08 smithi070 podman[56758]: 2024-09-13 12:53:08.906755453 +0000 UTC m=+0.584210017 container cleanup cac558c719ec6a2ee58a36878ab59ed1a3172cd6af40f75963a9491b724bbf4a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.build-date=20240731, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0) 2024-09-13T12:53:09.075 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:53:08 smithi070 bash[56758]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a 2024-09-13T12:53:09.330 INFO:journalctl@ceph.mon.a.smithi070.stdout:Sep 13 12:53:09 smithi070 podman[56773]: 2024-09-13 12:53:09.074616746 +0000 UTC m=+0.606864332 container remove cac558c719ec6a2ee58a36878ab59ed1a3172cd6af40f75963a9491b724bbf4a (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-a, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, GIT_CLEAN=True, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, RELEASE=wip-aclamk-cbt-combined-d58f730) 2024-09-13T12:53:09.334 DEBUG:teuthology.orchestra.run.smithi070:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.a.service' 2024-09-13T12:53:09.422 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T12:53:09.422 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-09-13T12:53:09.422 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-09-13T12:53:09.422 DEBUG:teuthology.orchestra.run.smithi086:> sudo systemctl stop ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.b 2024-09-13T12:53:09.733 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:53:09 smithi086 systemd[1]: Stopping Ceph mon.b for 0c10639a-71ce-11ef-bceb-c7b262605968... 2024-09-13T12:53:10.175 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:53:09 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-b[32981]: 2024-09-13T12:53:09.730+0000 7fcd8f0df640 -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-09-13T12:53:10.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:53:09 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-b[32981]: 2024-09-13T12:53:09.730+0000 7fcd8f0df640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-09-13T12:53:10.176 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:53:09 smithi086 podman[47971]: 2024-09-13 12:53:09.946947368 +0000 UTC m=+0.326285304 container died 3d2b9f14f39a523bb82b796c1755943c37afaec0ffd028b0d96ba9bbb6df1a20 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-b, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-aclamk-cbt-combined-d58f730, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2) 2024-09-13T12:53:10.599 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:53:10 smithi086 podman[47971]: 2024-09-13 12:53:10.314452628 +0000 UTC m=+0.693790563 container cleanup 3d2b9f14f39a523bb82b796c1755943c37afaec0ffd028b0d96ba9bbb6df1a20 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-b, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2) 2024-09-13T12:53:10.599 INFO:journalctl@ceph.mon.b.smithi086.stdout:Sep 13 12:53:10 smithi086 bash[47971]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mon-b 2024-09-13T12:53:10.739 DEBUG:teuthology.orchestra.run.smithi086:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.b.service' 2024-09-13T12:53:10.787 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T12:53:10.787 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-09-13T12:53:10.787 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-09-13T12:53:10.787 DEBUG:teuthology.orchestra.run.smithi105:> sudo systemctl stop ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.c 2024-09-13T12:53:10.835 DEBUG:teuthology.orchestra.run.smithi105:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mon.c.service' 2024-09-13T12:53:10.939 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T12:53:10.939 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-09-13T12:53:10.940 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-09-13T12:53:10.940 DEBUG:teuthology.orchestra.run.smithi070:> sudo systemctl stop ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mgr.a 2024-09-13T12:53:11.328 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:53:10 smithi070 systemd[1]: Stopping Ceph mgr.a for 0c10639a-71ce-11ef-bceb-c7b262605968... 2024-09-13T12:53:11.628 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:53:11 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a[29911]: 2024-09-13T12:53:11.326+0000 7f914d711640 -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-09-13T12:53:11.628 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:53:11 smithi070 podman[56980]: 2024-09-13 12:53:11.359009853 +0000 UTC m=+0.222903314 container died c0d35ac2635ec01c45540fa28512a24ba61dd2b8406b662c51def6736585cf76 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.vendor=CentOS, GIT_CLEAN=True, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2) 2024-09-13T12:53:11.918 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:53:11 smithi070 podman[56980]: 2024-09-13 12:53:11.844475045 +0000 UTC m=+0.708368493 container cleanup c0d35ac2635ec01c45540fa28512a24ba61dd2b8406b662c51def6736585cf76 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:d58f73069a8157a9ace12a0247ee3e8497707ea9, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-aclamk-cbt-combined-d58f730, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, io.buildah.version=1.37.2, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-09-13T12:53:11.919 INFO:journalctl@ceph.mgr.a.smithi070.stdout:Sep 13 12:53:11 smithi070 bash[56980]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-a 2024-09-13T12:53:12.226 DEBUG:teuthology.orchestra.run.smithi070:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mgr.a.service' 2024-09-13T12:53:12.260 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T12:53:12.260 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-09-13T12:53:12.260 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-09-13T12:53:12.260 DEBUG:teuthology.orchestra.run.smithi086:> sudo systemctl stop ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mgr.b 2024-09-13T12:53:12.582 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 13 12:53:12 smithi086 systemd[1]: Stopping Ceph mgr.b for 0c10639a-71ce-11ef-bceb-c7b262605968... 2024-09-13T12:53:12.870 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 13 12:53:12 smithi086 podman[48094]: 2024-09-13 12:53:12.581966041 +0000 UTC m=+0.128124408 container died 49776751a6324e4dac4a5bf9983945dbbc1957b0a1b76cc116562753027f37fc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-b, RELEASE=wip-aclamk-cbt-combined-d58f730, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , ceph=True) 2024-09-13T12:53:13.175 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 13 12:53:12 smithi086 podman[48094]: 2024-09-13 12:53:12.95234333 +0000 UTC m=+0.498501705 container cleanup 49776751a6324e4dac4a5bf9983945dbbc1957b0a1b76cc116562753027f37fc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-b, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-aclamk-cbt-combined-d58f730, GIT_CLEAN=True, ceph=True, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-13T12:53:13.176 INFO:journalctl@ceph.mgr.b.smithi086.stdout:Sep 13 12:53:12 smithi086 bash[48094]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968-mgr-b 2024-09-13T12:53:13.521 DEBUG:teuthology.orchestra.run.smithi086:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@mgr.b.service' 2024-09-13T12:53:13.555 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T12:53:13.555 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-09-13T12:53:13.555 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-09-13T12:53:13.556 DEBUG:teuthology.orchestra.run.smithi070:> sudo systemctl stop ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.0 2024-09-13T12:53:13.919 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:13 smithi070 systemd[1]: Stopping Ceph osd.0 for 0c10639a-71ce-11ef-bceb-c7b262605968... 2024-09-13T12:53:14.419 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:13 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0[43204]: 2024-09-13T12:53:13.998+0000 7f7d0c838640 -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-09-13T12:53:14.419 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:13 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0[43204]: 2024-09-13T12:53:13.998+0000 7f7d0c838640 -1 osd.0 50 *** Got signal Terminated *** 2024-09-13T12:53:14.419 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:13 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0[43204]: 2024-09-13T12:53:13.998+0000 7f7d0c838640 -1 osd.0 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-13T12:53:19.669 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:19 smithi070 podman[57101]: 2024-09-13 12:53:19.404437524 +0000 UTC m=+5.654262218 container died 3d7bae013f9ff4eed3963aedf86d4cbd580b276832e5a0f7839892d2935738dc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0, RELEASE=wip-aclamk-cbt-combined-d58f730, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.license=GPLv2) 2024-09-13T12:53:20.040 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:19 smithi070 podman[57101]: 2024-09-13 12:53:19.855720729 +0000 UTC m=+6.105545468 container cleanup 3d7bae013f9ff4eed3963aedf86d4cbd580b276832e5a0f7839892d2935738dc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , GIT_CLEAN=True, RELEASE=wip-aclamk-cbt-combined-d58f730, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD) 2024-09-13T12:53:20.041 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:19 smithi070 bash[57101]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0 2024-09-13T12:53:20.419 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:20 smithi070 podman[57118]: 2024-09-13 12:53:20.040264932 +0000 UTC m=+0.627102023 container remove 3d7bae013f9ff4eed3963aedf86d4cbd580b276832e5a0f7839892d2935738dc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0, maintainer=Guillaume Abrioux , RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, GIT_CLEAN=True, ceph=True, org.label-schema.build-date=20240731, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2) 2024-09-13T12:53:20.761 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:20 smithi070 podman[57206]: 2024-09-13 12:53:20.362879587 +0000 UTC m=+0.015748069 image pull fec07016a2b0bf363d0b69240081049b65cf13f1c44f6a7196cf8309aeb428cd quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f 2024-09-13T12:53:20.761 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:20 smithi070 podman[57206]: 2024-09-13 12:53:20.465756445 +0000 UTC m=+0.118624912 container create a5e46a9cca52c99579f510829db5d08e70c48cba382ae9fba46191c830aacfdc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0-deactivate, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-aclamk-cbt-combined-d58f730, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS) 2024-09-13T12:53:20.761 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:20 smithi070 podman[57206]: 2024-09-13 12:53:20.676663717 +0000 UTC m=+0.329532183 container init a5e46a9cca52c99579f510829db5d08e70c48cba382ae9fba46191c830aacfdc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0-deactivate, RELEASE=wip-aclamk-cbt-combined-d58f730, CEPH_POINT_RELEASE=, GIT_CLEAN=True, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, ceph=True) 2024-09-13T12:53:20.761 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:20 smithi070 podman[57206]: 2024-09-13 12:53:20.680064668 +0000 UTC m=+0.332933144 container start a5e46a9cca52c99579f510829db5d08e70c48cba382ae9fba46191c830aacfdc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, GIT_BRANCH=HEAD) 2024-09-13T12:53:20.761 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:20 smithi070 podman[57206]: 2024-09-13 12:53:20.759850553 +0000 UTC m=+0.412719044 container attach a5e46a9cca52c99579f510829db5d08e70c48cba382ae9fba46191c830aacfdc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0-deactivate, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , ceph=True, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, RELEASE=wip-aclamk-cbt-combined-d58f730) 2024-09-13T12:53:21.162 INFO:journalctl@ceph.osd.0.smithi070.stdout:Sep 13 12:53:20 smithi070 podman[57206]: 2024-09-13 12:53:20.867856197 +0000 UTC m=+0.520724676 container died a5e46a9cca52c99579f510829db5d08e70c48cba382ae9fba46191c830aacfdc (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-0-deactivate, ceph=True, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux ) 2024-09-13T12:53:21.522 DEBUG:teuthology.orchestra.run.smithi070:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.0.service' 2024-09-13T12:53:21.559 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T12:53:21.559 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-09-13T12:53:21.560 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-09-13T12:53:21.560 DEBUG:teuthology.orchestra.run.smithi070:> sudo systemctl stop ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.1 2024-09-13T12:53:21.739 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:21 smithi070 systemd[1]: Stopping Ceph osd.1 for 0c10639a-71ce-11ef-bceb-c7b262605968... 2024-09-13T12:53:22.169 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:21 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1[48745]: 2024-09-13T12:53:21.898+0000 7f5200cb0640 -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-09-13T12:53:22.169 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:21 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1[48745]: 2024-09-13T12:53:21.898+0000 7f5200cb0640 -1 osd.1 50 *** Got signal Terminated *** 2024-09-13T12:53:22.169 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:21 smithi070 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1[48745]: 2024-09-13T12:53:21.898+0000 7f5200cb0640 -1 osd.1 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-13T12:53:27.657 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:27 smithi070 podman[57313]: 2024-09-13 12:53:27.400465709 +0000 UTC m=+5.598580826 container died 8e3061afedd7422bb8fd26b9d18802a59f734c9c5ec1fb77b38ba8ad353c1962 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, ceph=True, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731) 2024-09-13T12:53:27.919 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:27 smithi070 podman[57313]: 2024-09-13 12:53:27.840224594 +0000 UTC m=+6.038339709 container cleanup 8e3061afedd7422bb8fd26b9d18802a59f734c9c5ec1fb77b38ba8ad353c1962 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, ceph=True, GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.37.2) 2024-09-13T12:53:27.919 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:27 smithi070 bash[57313]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1 2024-09-13T12:53:28.392 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:28 smithi070 podman[57339]: 2024-09-13 12:53:28.008225207 +0000 UTC m=+0.605039581 container remove 8e3061afedd7422bb8fd26b9d18802a59f734c9c5ec1fb77b38ba8ad353c1962 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, maintainer=Guillaume Abrioux , RELEASE=wip-aclamk-cbt-combined-d58f730, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_CLEAN=True) 2024-09-13T12:53:28.661 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:28 smithi070 podman[57427]: 2024-09-13 12:53:28.392116539 +0000 UTC m=+0.107093313 container create 39fc19e03bf4c727ef0bdf338eb31d8c9b5fe43f4505eca8763c490d8fda1e4e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , RELEASE=wip-aclamk-cbt-combined-d58f730, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, ceph=True, org.label-schema.build-date=20240731, GIT_CLEAN=True) 2024-09-13T12:53:28.661 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:28 smithi070 podman[57427]: 2024-09-13 12:53:28.300852813 +0000 UTC m=+0.015829602 image pull fec07016a2b0bf363d0b69240081049b65cf13f1c44f6a7196cf8309aeb428cd quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f 2024-09-13T12:53:28.661 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:28 smithi070 podman[57427]: 2024-09-13 12:53:28.586076356 +0000 UTC m=+0.301053150 container init 39fc19e03bf4c727ef0bdf338eb31d8c9b5fe43f4505eca8763c490d8fda1e4e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1-deactivate, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, ceph=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GIT_CLEAN=True, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux ) 2024-09-13T12:53:28.661 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:28 smithi070 podman[57427]: 2024-09-13 12:53:28.589332112 +0000 UTC m=+0.304308888 container start 39fc19e03bf4c727ef0bdf338eb31d8c9b5fe43f4505eca8763c490d8fda1e4e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1-deactivate, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_CLEAN=True, CEPH_POINT_RELEASE=, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD) 2024-09-13T12:53:28.661 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:28 smithi070 podman[57427]: 2024-09-13 12:53:28.660915775 +0000 UTC m=+0.375892571 container attach 39fc19e03bf4c727ef0bdf338eb31d8c9b5fe43f4505eca8763c490d8fda1e4e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1-deactivate, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, RELEASE=wip-aclamk-cbt-combined-d58f730, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, ceph=True) 2024-09-13T12:53:28.919 INFO:journalctl@ceph.osd.1.smithi070.stdout:Sep 13 12:53:28 smithi070 podman[57450]: 2024-09-13 12:53:28.805446483 +0000 UTC m=+0.016487042 container died 39fc19e03bf4c727ef0bdf338eb31d8c9b5fe43f4505eca8763c490d8fda1e4e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-1-deactivate, RELEASE=wip-aclamk-cbt-combined-d58f730, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0) 2024-09-13T12:53:29.381 DEBUG:teuthology.orchestra.run.smithi070:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.1.service' 2024-09-13T12:53:29.419 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T12:53:29.419 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-09-13T12:53:29.419 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-09-13T12:53:29.420 DEBUG:teuthology.orchestra.run.smithi086:> sudo systemctl stop ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.2 2024-09-13T12:53:29.723 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:29 smithi086 systemd[1]: Stopping Ceph osd.2 for 0c10639a-71ce-11ef-bceb-c7b262605968... 2024-09-13T12:53:30.175 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:29 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2[37099]: 2024-09-13T12:53:29.722+0000 7fbb30a94640 -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-09-13T12:53:30.176 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:29 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2[37099]: 2024-09-13T12:53:29.722+0000 7fbb30a94640 -1 osd.2 50 *** Got signal Terminated *** 2024-09-13T12:53:30.176 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:29 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2[37099]: 2024-09-13T12:53:29.722+0000 7fbb30a94640 -1 osd.2 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-13T12:53:35.465 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:35 smithi086 podman[48228]: 2024-09-13 12:53:35.191442497 +0000 UTC m=+5.574759661 container died 41876e3658d1f06bec196ad845f0e8e1c18b2faa23bb96d92f7be172ed4dffb2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.build-date=20240731, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.37.2) 2024-09-13T12:53:35.806 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:35 smithi086 podman[48228]: 2024-09-13 12:53:35.613391416 +0000 UTC m=+5.996708580 container cleanup 41876e3658d1f06bec196ad845f0e8e1c18b2faa23bb96d92f7be172ed4dffb2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, RELEASE=wip-aclamk-cbt-combined-d58f730, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2) 2024-09-13T12:53:35.807 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:35 smithi086 bash[48228]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2 2024-09-13T12:53:36.175 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:35 smithi086 podman[48245]: 2024-09-13 12:53:35.806297662 +0000 UTC m=+0.614706792 container remove 41876e3658d1f06bec196ad845f0e8e1c18b2faa23bb96d92f7be172ed4dffb2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2, io.buildah.version=1.37.2, org.label-schema.build-date=20240731, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, GIT_CLEAN=True, maintainer=Guillaume Abrioux , RELEASE=wip-aclamk-cbt-combined-d58f730, CEPH_POINT_RELEASE=, ceph=True, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0) 2024-09-13T12:53:36.476 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:36 smithi086 podman[48334]: 2024-09-13 12:53:36.207018955 +0000 UTC m=+0.090519118 container create 6578bf0374430fb5ef6061cafde84ad634aad26e46c758934bee57ab9fc44796 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2-deactivate, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, org.label-schema.build-date=20240731, org.label-schema.license=GPLv2, io.buildah.version=1.37.2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux ) 2024-09-13T12:53:36.481 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:36 smithi086 podman[48334]: 2024-09-13 12:53:36.132207826 +0000 UTC m=+0.015708001 image pull fec07016a2b0bf363d0b69240081049b65cf13f1c44f6a7196cf8309aeb428cd quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f 2024-09-13T12:53:36.481 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:36 smithi086 podman[48334]: 2024-09-13 12:53:36.409231479 +0000 UTC m=+0.292731655 container init 6578bf0374430fb5ef6061cafde84ad634aad26e46c758934bee57ab9fc44796 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2-deactivate, org.label-schema.license=GPLv2, ceph=True, 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=20240731, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True) 2024-09-13T12:53:36.481 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:36 smithi086 podman[48334]: 2024-09-13 12:53:36.41270117 +0000 UTC m=+0.296201346 container start 6578bf0374430fb5ef6061cafde84ad634aad26e46c758934bee57ab9fc44796 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2-deactivate, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True, io.buildah.version=1.37.2, GIT_BRANCH=HEAD, org.label-schema.build-date=20240731, ceph=True, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.name=CentOS Stream 9 Base Image) 2024-09-13T12:53:36.481 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:36 smithi086 podman[48334]: 2024-09-13 12:53:36.475759686 +0000 UTC m=+0.359259864 container attach 6578bf0374430fb5ef6061cafde84ad634aad26e46c758934bee57ab9fc44796 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, RELEASE=wip-aclamk-cbt-combined-d58f730, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.schema-version=1.0) 2024-09-13T12:53:36.887 INFO:journalctl@ceph.osd.2.smithi086.stdout:Sep 13 12:53:36 smithi086 podman[48334]: 2024-09-13 12:53:36.605188194 +0000 UTC m=+0.488688367 container died 6578bf0374430fb5ef6061cafde84ad634aad26e46c758934bee57ab9fc44796 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-2-deactivate, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20240731, RELEASE=wip-aclamk-cbt-combined-d58f730, ceph=True, maintainer=Guillaume Abrioux , io.buildah.version=1.37.2, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=) 2024-09-13T12:53:37.190 DEBUG:teuthology.orchestra.run.smithi086:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.2.service' 2024-09-13T12:53:37.229 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T12:53:37.229 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-09-13T12:53:37.229 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-09-13T12:53:37.229 DEBUG:teuthology.orchestra.run.smithi086:> sudo systemctl stop ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.3 2024-09-13T12:53:37.425 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:37 smithi086 systemd[1]: Stopping Ceph osd.3 for 0c10639a-71ce-11ef-bceb-c7b262605968... 2024-09-13T12:53:37.926 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:37 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3[42977]: 2024-09-13T12:53:37.548+0000 7f5ae6cfd640 -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-09-13T12:53:37.926 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:37 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3[42977]: 2024-09-13T12:53:37.548+0000 7f5ae6cfd640 -1 osd.3 50 *** Got signal Terminated *** 2024-09-13T12:53:37.926 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:37 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3[42977]: 2024-09-13T12:53:37.548+0000 7f5ae6cfd640 -1 osd.3 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-09-13T12:53:41.426 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:40 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3[42977]: 2024-09-13T12:53:40.998+0000 7f5adf30a640 -1 osd.3 50 heartbeat_check: no reply from 172.21.15.70:6806 osd.0 since back 2024-09-13T12:53:16.708948+0000 front 2024-09-13T12:53:16.708829+0000 (oldest deadline 2024-09-13T12:53:40.208628+0000) 2024-09-13T12:53:42.425 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:42 smithi086 ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3[42977]: 2024-09-13T12:53:42.019+0000 7f5adf30a640 -1 osd.3 50 heartbeat_check: no reply from 172.21.15.70:6806 osd.0 since back 2024-09-13T12:53:16.708948+0000 front 2024-09-13T12:53:16.708829+0000 (oldest deadline 2024-09-13T12:53:40.208628+0000) 2024-09-13T12:53:43.358 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:43 smithi086 podman[48436]: 2024-09-13 12:53:43.081403575 +0000 UTC m=+5.629038318 container died fa2f092ce6fdbb6967c76fee3b7d8e05dde2f5d0f76f115c69f5d68a007d0752 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.37.2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, RELEASE=wip-aclamk-cbt-combined-d58f730, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_CLEAN=True, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0) 2024-09-13T12:53:43.675 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:43 smithi086 podman[48436]: 2024-09-13 12:53:43.439950111 +0000 UTC m=+5.987584854 container cleanup fa2f092ce6fdbb6967c76fee3b7d8e05dde2f5d0f76f115c69f5d68a007d0752 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-aclamk-cbt-combined-d58f730, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD) 2024-09-13T12:53:43.676 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:43 smithi086 bash[48436]: ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3 2024-09-13T12:53:44.008 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:43 smithi086 podman[48463]: 2024-09-13 12:53:43.699104779 +0000 UTC m=+0.616615910 container remove fa2f092ce6fdbb6967c76fee3b7d8e05dde2f5d0f76f115c69f5d68a007d0752 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3, RELEASE=wip-aclamk-cbt-combined-d58f730, io.buildah.version=1.37.2, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, ceph=True, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240731) 2024-09-13T12:53:44.285 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:44 smithi086 podman[48551]: 2024-09-13 12:53:43.911028797 +0000 UTC m=+0.015808655 image pull fec07016a2b0bf363d0b69240081049b65cf13f1c44f6a7196cf8309aeb428cd quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f 2024-09-13T12:53:44.286 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:44 smithi086 podman[48551]: 2024-09-13 12:53:44.008100827 +0000 UTC m=+0.112880682 container create ffb0c58b34de3d0c4e46b1387be62d706816b4b859ead7273da279fc10b59dce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3-deactivate, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, ceph=True, RELEASE=wip-aclamk-cbt-combined-d58f730, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.37.2, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0) 2024-09-13T12:53:44.286 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:44 smithi086 podman[48551]: 2024-09-13 12:53:44.210167523 +0000 UTC m=+0.314947375 container init ffb0c58b34de3d0c4e46b1387be62d706816b4b859ead7273da279fc10b59dce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3-deactivate, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_CLEAN=True, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2) 2024-09-13T12:53:44.286 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:44 smithi086 podman[48551]: 2024-09-13 12:53:44.213381832 +0000 UTC m=+0.318161686 container start ffb0c58b34de3d0c4e46b1387be62d706816b4b859ead7273da279fc10b59dce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3-deactivate, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, io.buildah.version=1.37.2, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, GIT_CLEAN=True, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.build-date=20240731, GIT_BRANCH=HEAD) 2024-09-13T12:53:44.286 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:44 smithi086 podman[48551]: 2024-09-13 12:53:44.285175611 +0000 UTC m=+0.389955477 container attach ffb0c58b34de3d0c4e46b1387be62d706816b4b859ead7273da279fc10b59dce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3-deactivate, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, GIT_CLEAN=True, RELEASE=wip-aclamk-cbt-combined-d58f730, org.label-schema.build-date=20240731, io.buildah.version=1.37.2, org.label-schema.license=GPLv2) 2024-09-13T12:53:44.676 INFO:journalctl@ceph.osd.3.smithi086.stdout:Sep 13 12:53:44 smithi086 podman[48551]: 2024-09-13 12:53:44.40417698 +0000 UTC m=+0.508956832 container died ffb0c58b34de3d0c4e46b1387be62d706816b4b859ead7273da279fc10b59dce (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:914e971332a58dba507db28f0971f6f283c67edecc2d9a6537eea399760b8c1f, name=ceph-0c10639a-71ce-11ef-bceb-c7b262605968-osd-3-deactivate, org.label-schema.build-date=20240731, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=wip-aclamk-cbt-combined-d58f730, io.buildah.version=1.37.2, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.vendor=CentOS, GIT_COMMIT=c5aaba5e3282b30e4782f2b5d6e4e362e22dfcb7, GIT_CLEAN=True) 2024-09-13T12:53:45.012 DEBUG:teuthology.orchestra.run.smithi086:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.3.service' 2024-09-13T12:53:45.052 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T12:53:45.052 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-09-13T12:53:45.052 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-09-13T12:53:45.052 DEBUG:teuthology.orchestra.run.smithi105:> sudo systemctl stop ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.4 2024-09-13T12:53:45.098 DEBUG:teuthology.orchestra.run.smithi105:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.4.service' 2024-09-13T12:53:45.135 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T12:53:45.135 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-09-13T12:53:45.135 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-09-13T12:53:45.135 DEBUG:teuthology.orchestra.run.smithi105:> sudo systemctl stop ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.5 2024-09-13T12:53:45.213 DEBUG:teuthology.orchestra.run.smithi105:> sudo pkill -f 'journalctl -f -n 0 -u ceph-0c10639a-71ce-11ef-bceb-c7b262605968@osd.5.service' 2024-09-13T12:53:45.285 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-13T12:53:45.285 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-09-13T12:53:45.286 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-13T12:53:45.487 INFO:teuthology.orchestra.run.smithi070.stdout:Deleting cluster with fsid: 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:53:46.755 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-13T12:53:46.957 INFO:teuthology.orchestra.run.smithi086.stdout:Deleting cluster with fsid: 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:53:48.208 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 --force --keep-logs 2024-09-13T12:53:48.410 INFO:teuthology.orchestra.run.smithi105.stdout:Deleting cluster with fsid: 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:53:48.795 DEBUG:teuthology.orchestra.run.smithi070:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T12:53:48.826 DEBUG:teuthology.orchestra.run.smithi086:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T12:53:48.853 DEBUG:teuthology.orchestra.run.smithi105:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-13T12:53:48.880 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-13T12:53:48.882 DEBUG:teuthology.misc:Transferring archived files from smithi070:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi/7903512/remote/smithi070/crash 2024-09-13T12:53:48.883 DEBUG:teuthology.orchestra.run.smithi070:> sudo tar c -f - -C /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/crash -- . 2024-09-13T12:53:48.929 INFO:teuthology.orchestra.run.smithi070.stderr:tar: /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-13T12:53:48.929 INFO:teuthology.orchestra.run.smithi070.stderr:tar: Error is not recoverable: exiting now 2024-09-13T12:53:48.931 DEBUG:teuthology.misc:Transferring archived files from smithi086:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi/7903512/remote/smithi086/crash 2024-09-13T12:53:48.932 DEBUG:teuthology.orchestra.run.smithi086:> sudo tar c -f - -C /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/crash -- . 2024-09-13T12:53:48.966 INFO:teuthology.orchestra.run.smithi086.stderr:tar: /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-13T12:53:48.966 INFO:teuthology.orchestra.run.smithi086.stderr:tar: Error is not recoverable: exiting now 2024-09-13T12:53:48.968 DEBUG:teuthology.misc:Transferring archived files from smithi105:/var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/crash to /home/teuthworker/archive/akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi/7903512/remote/smithi105/crash 2024-09-13T12:53:48.969 DEBUG:teuthology.orchestra.run.smithi105:> sudo tar c -f - -C /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/crash -- . 2024-09-13T12:53:49.013 INFO:teuthology.orchestra.run.smithi105.stderr:tar: /var/lib/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/crash: Cannot open: No such file or directory 2024-09-13T12:53:49.013 INFO:teuthology.orchestra.run.smithi105.stderr:tar: Error is not recoverable: exiting now 2024-09-13T12:53:49.014 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-13T12:53:49.014 DEBUG:teuthology.orchestra.run.smithi070:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.log | egrep CEPHADM_ | 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' | egrep -v CEPHADM_STRAY_HOST | egrep -v CEPHADM_STRAY_DAEMON | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-13T12:53:49.048 INFO:tasks.cephadm:Compressing logs... 2024-09-13T12:53:49.048 DEBUG:teuthology.orchestra.run.smithi070:> 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-09-13T12:53:49.091 DEBUG:teuthology.orchestra.run.smithi086:> 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-09-13T12:53:49.093 DEBUG:teuthology.orchestra.run.smithi105:> 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-09-13T12:53:49.115 INFO:teuthology.orchestra.run.smithi086.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-13T12:53:49.115 INFO:teuthology.orchestra.run.smithi086.stderr:: No such file or directory 2024-09-13T12:53:49.115 INFO:teuthology.orchestra.run.smithi086.stderr:gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mgr.b.log 2024-09-13T12:53:49.121 INFO:teuthology.orchestra.run.smithi086.stderr:gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-13T12:53:49.121 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-volume.log: /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-13T12:53:49.121 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.2.log 2024-09-13T12:53:49.121 INFO:teuthology.orchestra.run.smithi086.stderr:gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.log 2024-09-13T12:53:49.121 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.cephadm.log: /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mon.b.log 2024-09-13T12:53:49.121 INFO:teuthology.orchestra.run.smithi086.stderr: 82.6% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-13T12:53:49.121 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.3.log 2024-09-13T12:53:49.121 INFO:teuthology.orchestra.run.smithi086.stderr: 89.9% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-13T12:53:49.121 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mon.b.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-13T12:53:49.121 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.3.log: 85.7% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-13T12:53:49.121 INFO:teuthology.orchestra.run.smithi086.stderr:/var/log/ceph/cephadm.log: 90.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-13T12:53:49.122 INFO:teuthology.orchestra.run.smithi086.stderr: 90.3% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mgr.b.log.gz 2024-09-13T12:53:49.123 INFO:teuthology.orchestra.run.smithi070.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.0.log 2024-09-13T12:53:49.123 INFO:teuthology.orchestra.run.smithi070.stderr:: No such file or directory 2024-09-13T12:53:49.123 INFO:teuthology.orchestra.run.smithi070.stderr:gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.1.log 2024-09-13T12:53:49.123 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mgr.a.log 2024-09-13T12:53:49.123 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-13T12:53:49.123 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mgr.a.log: gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-13T12:53:49.123 INFO:teuthology.orchestra.run.smithi070.stderr:gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-13T12:53:49.123 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-volume.log: /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mon.a.log 2024-09-13T12:53:49.123 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.log 2024-09-13T12:53:49.123 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mon.a.log: 83.0% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.cephadm.log.gzgzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-13T12:53:49.124 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-13T12:53:49.124 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.log: 89.8% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-13T12:53:49.124 INFO:teuthology.orchestra.run.smithi070.stderr: 85.9% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-13T12:53:49.124 INFO:teuthology.orchestra.run.smithi070.stderr:/var/log/ceph/cephadm.log: 87.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-13T12:53:49.124 INFO:teuthology.orchestra.run.smithi105.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-volume.log 2024-09-13T12:53:49.124 INFO:teuthology.orchestra.run.smithi105.stderr:: No such file or directory 2024-09-13T12:53:49.125 INFO:teuthology.orchestra.run.smithi105.stderr:gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.4.log 2024-09-13T12:53:49.125 INFO:teuthology.orchestra.run.smithi105.stderr:gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.audit.log 2024-09-13T12:53:49.125 INFO:teuthology.orchestra.run.smithi105.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-volume.log: /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mon.c.log 2024-09-13T12:53:49.125 INFO:teuthology.orchestra.run.smithi105.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.cephadm.log 2024-09-13T12:53:49.125 INFO:teuthology.orchestra.run.smithi070.stderr: 91.3% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-13T12:53:49.126 INFO:teuthology.orchestra.run.smithi086.stderr: 91.3% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-13T12:53:49.127 INFO:teuthology.orchestra.run.smithi105.stderr:gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.5.log 2024-09-13T12:53:49.127 INFO:teuthology.orchestra.run.smithi105.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mon.c.log: /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.log 2024-09-13T12:53:49.127 INFO:teuthology.orchestra.run.smithi105.stderr: 80.4% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.cephadm.log.gz 2024-09-13T12:53:49.127 INFO:teuthology.orchestra.run.smithi105.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-13T12:53:49.127 INFO:teuthology.orchestra.run.smithi105.stderr: 89.9% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.audit.log.gz 2024-09-13T12:53:49.127 INFO:teuthology.orchestra.run.smithi105.stderr:/var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.log: /var/log/ceph/cephadm.log: 85.1% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph.log.gz 2024-09-13T12:53:49.127 INFO:teuthology.orchestra.run.smithi105.stderr: 89.0% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-13T12:53:49.127 INFO:teuthology.orchestra.run.smithi105.stderr: 91.3% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-volume.log.gz 2024-09-13T12:53:49.136 INFO:teuthology.orchestra.run.smithi105.stderr: 93.0% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.4.log.gz 2024-09-13T12:53:49.137 INFO:teuthology.orchestra.run.smithi105.stderr: 92.9% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.5.log.gz 2024-09-13T12:53:49.150 INFO:teuthology.orchestra.run.smithi070.stderr: 93.3% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.1.log.gz 2024-09-13T12:53:49.157 INFO:teuthology.orchestra.run.smithi086.stderr: 93.0% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.3.log.gz 2024-09-13T12:53:49.164 INFO:teuthology.orchestra.run.smithi105.stderr: 92.6% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mon.c.log.gz 2024-09-13T12:53:49.165 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-09-13T12:53:49.166 INFO:teuthology.orchestra.run.smithi105.stderr:real 0m0.058s 2024-09-13T12:53:49.166 INFO:teuthology.orchestra.run.smithi105.stderr:user 0m0.097s 2024-09-13T12:53:49.166 INFO:teuthology.orchestra.run.smithi105.stderr:sys 0m0.021s 2024-09-13T12:53:49.167 INFO:teuthology.orchestra.run.smithi070.stderr: 93.1% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.0.log.gz 2024-09-13T12:53:49.172 INFO:teuthology.orchestra.run.smithi086.stderr: 93.4% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-osd.2.log.gz 2024-09-13T12:53:49.176 INFO:teuthology.orchestra.run.smithi086.stderr: 92.3% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mon.b.log.gz 2024-09-13T12:53:49.177 INFO:teuthology.orchestra.run.smithi070.stderr: 89.3% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mgr.a.log.gz 2024-09-13T12:53:49.178 INFO:teuthology.orchestra.run.smithi086.stderr: 2024-09-13T12:53:49.178 INFO:teuthology.orchestra.run.smithi086.stderr:real 0m0.072s 2024-09-13T12:53:49.178 INFO:teuthology.orchestra.run.smithi086.stderr:user 0m0.173s 2024-09-13T12:53:49.178 INFO:teuthology.orchestra.run.smithi086.stderr:sys 0m0.020s 2024-09-13T12:53:49.322 INFO:teuthology.orchestra.run.smithi070.stderr: 91.0% -- replaced with /var/log/ceph/0c10639a-71ce-11ef-bceb-c7b262605968/ceph-mon.a.log.gz 2024-09-13T12:53:49.324 INFO:teuthology.orchestra.run.smithi070.stderr: 2024-09-13T12:53:49.324 INFO:teuthology.orchestra.run.smithi070.stderr:real 0m0.219s 2024-09-13T12:53:49.324 INFO:teuthology.orchestra.run.smithi070.stderr:user 0m0.357s 2024-09-13T12:53:49.324 INFO:teuthology.orchestra.run.smithi070.stderr:sys 0m0.034s 2024-09-13T12:53:49.324 INFO:tasks.cephadm:Archiving logs... 2024-09-13T12:53:49.325 DEBUG:teuthology.misc:Transferring archived files from smithi070:/var/log/ceph to /home/teuthworker/archive/akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi/7903512/remote/smithi070/log 2024-09-13T12:53:49.326 DEBUG:teuthology.orchestra.run.smithi070:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-13T12:53:49.461 DEBUG:teuthology.misc:Transferring archived files from smithi086:/var/log/ceph to /home/teuthworker/archive/akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi/7903512/remote/smithi086/log 2024-09-13T12:53:49.462 DEBUG:teuthology.orchestra.run.smithi086:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-13T12:53:49.520 DEBUG:teuthology.misc:Transferring archived files from smithi105:/var/log/ceph to /home/teuthworker/archive/akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi/7903512/remote/smithi105/log 2024-09-13T12:53:49.521 DEBUG:teuthology.orchestra.run.smithi105:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-13T12:53:49.563 INFO:tasks.cephadm:Removing cluster... 2024-09-13T12:53:49.563 DEBUG:teuthology.orchestra.run.smithi070:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 --force 2024-09-13T12:53:49.751 INFO:teuthology.orchestra.run.smithi070.stdout:Deleting cluster with fsid: 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:53:50.003 DEBUG:teuthology.orchestra.run.smithi086:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 --force 2024-09-13T12:53:50.197 INFO:teuthology.orchestra.run.smithi086.stdout:Deleting cluster with fsid: 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:53:50.452 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 0c10639a-71ce-11ef-bceb-c7b262605968 --force 2024-09-13T12:53:50.654 INFO:teuthology.orchestra.run.smithi105.stdout:Deleting cluster with fsid: 0c10639a-71ce-11ef-bceb-c7b262605968 2024-09-13T12:53:50.895 INFO:tasks.cephadm:Removing cephadm ... 2024-09-13T12:53:50.895 DEBUG:teuthology.orchestra.run.smithi070:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-13T12:53:50.915 DEBUG:teuthology.orchestra.run.smithi086:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-13T12:53:50.932 DEBUG:teuthology.orchestra.run.smithi105:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-13T12:53:50.947 INFO:tasks.cephadm:Teardown complete 2024-09-13T12:53:50.948 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-09-13T12:53:50.961 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-09-13T12:53:50.961 DEBUG:teuthology.orchestra.run.smithi070:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-13T12:53:50.964 DEBUG:teuthology.orchestra.run.smithi086:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-13T12:53:50.974 DEBUG:teuthology.orchestra.run.smithi105:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-09-13T12:53:51.117 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-13T12:53:51.125 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-13T12:53:51.126 DEBUG:teuthology.orchestra.run.smithi070:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-13T12:53:51.129 DEBUG:teuthology.orchestra.run.smithi086:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-13T12:53:51.131 DEBUG:teuthology.orchestra.run.smithi105:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-13T12:53:51.143 INFO:teuthology.orchestra.run.smithi070.stderr:bash: line 1: ntpq: command not found 2024-09-13T12:53:51.144 INFO:teuthology.orchestra.run.smithi086.stderr:bash: line 1: ntpq: command not found 2024-09-13T12:53:51.145 INFO:teuthology.orchestra.run.smithi105.stderr:bash: line 1: ntpq: command not found 2024-09-13T12:53:51.148 INFO:teuthology.orchestra.run.smithi070.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-13T12:53:51.148 INFO:teuthology.orchestra.run.smithi070.stdout:=============================================================================== 2024-09-13T12:53:51.148 INFO:teuthology.orchestra.run.smithi070.stdout:^+ hv01.front.sepia.ceph.com 3 6 377 62 -131us[ -131us] +/- 61ms 2024-09-13T12:53:51.148 INFO:teuthology.orchestra.run.smithi070.stdout:^* hv02.front.sepia.ceph.com 3 6 377 62 +169us[ +176us] +/- 60ms 2024-09-13T12:53:51.148 INFO:teuthology.orchestra.run.smithi070.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 64 +28us[ +35us] +/- 80ms 2024-09-13T12:53:51.149 INFO:teuthology.orchestra.run.smithi070.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:53:51.150 INFO:teuthology.orchestra.run.smithi105.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-13T12:53:51.151 INFO:teuthology.orchestra.run.smithi105.stdout:=============================================================================== 2024-09-13T12:53:51.151 INFO:teuthology.orchestra.run.smithi105.stdout:^+ hv01.front.sepia.ceph.com 3 6 377 62 -141us[ -147us] +/- 61ms 2024-09-13T12:53:51.151 INFO:teuthology.orchestra.run.smithi105.stdout:^* hv02.front.sepia.ceph.com 3 6 377 62 +152us[ +147us] +/- 60ms 2024-09-13T12:53:51.151 INFO:teuthology.orchestra.run.smithi105.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 63 +25us[ +20us] +/- 80ms 2024-09-13T12:53:51.151 INFO:teuthology.orchestra.run.smithi105.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:53:51.151 INFO:teuthology.orchestra.run.smithi086.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-09-13T12:53:51.151 INFO:teuthology.orchestra.run.smithi086.stdout:=============================================================================== 2024-09-13T12:53:51.151 INFO:teuthology.orchestra.run.smithi086.stdout:^+ hv01.front.sepia.ceph.com 3 6 377 62 -137us[ -151us] +/- 61ms 2024-09-13T12:53:51.151 INFO:teuthology.orchestra.run.smithi086.stdout:^* hv02.front.sepia.ceph.com 3 6 377 60 +153us[ +139us] +/- 61ms 2024-09-13T12:53:51.151 INFO:teuthology.orchestra.run.smithi086.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 63 +34us[ +20us] +/- 80ms 2024-09-13T12:53:51.152 INFO:teuthology.orchestra.run.smithi086.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-09-13T12:53:51.152 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-13T12:53:51.164 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-13T12:53:51.164 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-13T12:53:51.215 DEBUG:teuthology.orchestra.run.smithi070:> 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-09-13T12:53:51.291 DEBUG:teuthology.orchestra.run.smithi086:> 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-09-13T12:53:51.361 DEBUG:teuthology.orchestra.run.smithi105:> 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-09-13T12:53:51.425 DEBUG:teuthology.orchestra.run.smithi070:> 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 context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-13T12:53:51.457 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T12:53:51.457 DEBUG:teuthology.orchestra.run.smithi086:> 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 context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-13T12:53:51.487 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T12:53:51.487 DEBUG:teuthology.orchestra.run.smithi105:> 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 context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2024-09-13T12:53:51.514 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T12:53:51.515 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-13T12:53:51.524 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-13T12:53:51.533 INFO:teuthology.task.internal:Duration was 879.137459 seconds 2024-09-13T12:53:51.533 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-13T12:53:51.542 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-13T12:53:51.543 DEBUG:teuthology.orchestra.run.smithi070:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-13T12:53:51.545 DEBUG:teuthology.orchestra.run.smithi086:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-13T12:53:51.548 DEBUG:teuthology.orchestra.run.smithi105:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-13T12:53:51.586 INFO:teuthology.orchestra.run.smithi086.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-13T12:53:51.587 INFO:teuthology.orchestra.run.smithi070.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-13T12:53:51.593 INFO:teuthology.orchestra.run.smithi105.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-09-13T12:53:51.971 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-13T12:53:51.971 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi070.front.sepia.ceph.com 2024-09-13T12:53:51.971 DEBUG:teuthology.orchestra.run.smithi070:> 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-09-13T12:53:51.994 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi086.front.sepia.ceph.com 2024-09-13T12:53:51.994 DEBUG:teuthology.orchestra.run.smithi086:> 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-09-13T12:53:52.035 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi105.front.sepia.ceph.com 2024-09-13T12:53:52.035 DEBUG:teuthology.orchestra.run.smithi105:> 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-09-13T12:53:52.055 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-13T12:53:52.056 DEBUG:teuthology.orchestra.run.smithi070:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-13T12:53:52.058 DEBUG:teuthology.orchestra.run.smithi086:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-13T12:53:52.078 DEBUG:teuthology.orchestra.run.smithi105:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-13T12:53:52.122 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-13T12:53:52.122 DEBUG:teuthology.orchestra.run.smithi070:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-13T12:53:52.130 DEBUG:teuthology.orchestra.run.smithi086:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-13T12:53:52.145 DEBUG:teuthology.orchestra.run.smithi105:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-13T12:53:52.308 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-13T12:53:52.318 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-13T12:53:52.318 DEBUG:teuthology.orchestra.run.smithi070:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-13T12:53:52.342 DEBUG:teuthology.orchestra.run.smithi086:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-13T12:53:52.367 DEBUG:teuthology.orchestra.run.smithi105:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-13T12:53:52.392 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-13T12:53:52.402 DEBUG:teuthology.orchestra.run.smithi070:> 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-09-13T12:53:52.405 DEBUG:teuthology.orchestra.run.smithi086:> 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-09-13T12:53:52.410 DEBUG:teuthology.orchestra.run.smithi105:> 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-09-13T12:53:52.426 INFO:teuthology.orchestra.run.smithi070.stdout:kernel.core_pattern = core 2024-09-13T12:53:52.432 INFO:teuthology.orchestra.run.smithi086.stdout:kernel.core_pattern = core 2024-09-13T12:53:52.455 INFO:teuthology.orchestra.run.smithi105.stdout:kernel.core_pattern = core 2024-09-13T12:53:52.479 DEBUG:teuthology.orchestra.run.smithi070:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-13T12:53:52.504 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T12:53:52.504 DEBUG:teuthology.orchestra.run.smithi086:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-13T12:53:52.519 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T12:53:52.519 DEBUG:teuthology.orchestra.run.smithi105:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-13T12:53:52.533 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-13T12:53:52.534 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-13T12:53:52.549 INFO:teuthology.task.internal:Transferring archived files... 2024-09-13T12:53:52.550 DEBUG:teuthology.misc:Transferring archived files from smithi070:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi/7903512/remote/smithi070 2024-09-13T12:53:52.550 DEBUG:teuthology.orchestra.run.smithi070:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-13T12:53:52.586 DEBUG:teuthology.misc:Transferring archived files from smithi086:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi/7903512/remote/smithi086 2024-09-13T12:53:52.587 DEBUG:teuthology.orchestra.run.smithi086:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-13T12:53:52.623 DEBUG:teuthology.misc:Transferring archived files from smithi105:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/akupczyk-2024-09-13_09:43:51-rados-wip-aclamk-cbt-combined-distro-default-smithi/7903512/remote/smithi105 2024-09-13T12:53:52.623 DEBUG:teuthology.orchestra.run.smithi105:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-13T12:53:52.657 INFO:teuthology.task.internal:Removing archive directory... 2024-09-13T12:53:52.657 DEBUG:teuthology.orchestra.run.smithi070:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-13T12:53:52.660 DEBUG:teuthology.orchestra.run.smithi086:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-13T12:53:52.662 DEBUG:teuthology.orchestra.run.smithi105:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-13T12:53:52.708 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-13T12:53:52.718 INFO:teuthology.task.internal:Not uploading archives. 2024-09-13T12:53:52.719 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-13T12:53:52.727 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-13T12:53:52.727 DEBUG:teuthology.orchestra.run.smithi070:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-13T12:53:52.729 DEBUG:teuthology.orchestra.run.smithi086:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-13T12:53:52.732 DEBUG:teuthology.orchestra.run.smithi105:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-13T12:53:52.742 INFO:teuthology.orchestra.run.smithi070.stdout: 265324 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 13 12:53 /home/ubuntu/cephtest 2024-09-13T12:53:52.745 INFO:teuthology.orchestra.run.smithi086.stdout: 265324 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 13 12:53 /home/ubuntu/cephtest 2024-09-13T12:53:52.762 INFO:teuthology.orchestra.run.smithi105.stdout: 265324 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 13 12:53 /home/ubuntu/cephtest 2024-09-13T12:53:52.763 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-13T12:53:52.773 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-13T12:53:52.796 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} duration: 879.1374590396881 flavor: default owner: scheduled_akupczyk@teuthology success: true 2024-09-13T12:53:52.796 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-13T12:53:52.898 INFO:teuthology.run:pass