2024-04-15T20:51:13.259 INFO:root:teuthology version: 0.0.1.dev267+g6c63784 2024-04-15T20:51:13.259 DEBUG:teuthology.run:Teuthology command: teuthology --name teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi --archive /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319 --verbose --owner scheduled_teuthology@teuthology --description orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/on mon_election/classic task/test_host_drain} -- /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319/orig.config.yaml 2024-04-15T20:51:13.288 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T20:51:13.371 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319 branch: main description: orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/on mon_election/classic task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7657319' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi no_nested_subset: false nuke-on-error: true os_type: centos os_version: 9.stream overrides: admin_socket: branch: main ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: true mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN - mons down - mon down - out of quorum log-only-match: - CEPHADM_ sha1: 87dbfb632e974cb2c28d17423071d2d833b53b29 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 87dbfb632e974cb2c28d17423071d2d833b53b29 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: main sha1: 3f7db60e5ba4c4d053b594b7ec58703d2833c55b owner: scheduled_teuthology@teuthology priority: 950 repo: https://git.ceph.com/ceph.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 8042 sha1: 87dbfb632e974cb2c28d17423071d2d833b53b29 sleep_before_teardown: 0 subset: 25/64 suite: orch suite_branch: main suite_path: /home/teuthworker/src/git.ceph.com_ceph_3f7db60e5ba4c4d053b594b7ec58703d2833c55b/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: 3f7db60e5ba4c4d053b594b7ec58703d2833c55b targets: smithi050.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGISAtBOGaUPpRc9FVZD59QNfE4FFYCZnFJ0ov8h4/sBYpl2zfQmqb/X/nxr26qizSMTf+RasgNnwY8QyNT6rWk= smithi151.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBE9BI2C0bnKTAnbUt4NR4vdhVFKrgthWGhm/3YJ5PTRRx/YkZpJOlfL6skmV2ZWd5kBkFcfVtN2aXhls6vs2qxc= smithi174.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJMlTQ2NVG1ZXQnuwmTKBgaa2Nhum59Ajf6HGKhh/kHs38rcIvUAsZWjuTNnRst6j81x/rs9AZyb+wXNDO/DJAc= tasks: - pexec: all: - sudo dnf install runc -y - sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf - sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 6c637841c215537a4502385240412f1966e0faab timestamp: 2024-04-15_20:08:15 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-15T20:51:13.371 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_3f7db60e5ba4c4d053b594b7ec58703d2833c55b/qa; will attempt to use it 2024-04-15T20:51:13.372 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_3f7db60e5ba4c4d053b594b7ec58703d2833c55b/qa/tasks 2024-04-15T20:51:13.372 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-15T20:51:13.373 INFO:teuthology.task.internal:Checking packages... 2024-04-15T20:51:13.394 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '87dbfb632e974cb2c28d17423071d2d833b53b29' 2024-04-15T20:51:13.395 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-15T20:51:13.395 INFO:teuthology.packaging:ref: None 2024-04-15T20:51:13.395 INFO:teuthology.packaging:tag: None 2024-04-15T20:51:13.395 INFO:teuthology.packaging:branch: main 2024-04-15T20:51:13.395 INFO:teuthology.packaging:sha1: 87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T20:51:13.395 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=main 2024-04-15T20:51:13.705 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-3084.g87dbfb63 2024-04-15T20:51:13.707 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-15T20:51:13.714 INFO:teuthology.task.internal:no buildpackages task found 2024-04-15T20:51:13.714 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-15T20:51:13.737 INFO:teuthology.task.internal:Saving configuration 2024-04-15T20:51:13.750 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-15T20:51:13.756 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T20:51:13.776 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi050.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 20:45:46.692543', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGISAtBOGaUPpRc9FVZD59QNfE4FFYCZnFJ0ov8h4/sBYpl2zfQmqb/X/nxr26qizSMTf+RasgNnwY8QyNT6rWk='} 2024-04-15T20:51:13.793 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi151.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 20:45:46.693768', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBE9BI2C0bnKTAnbUt4NR4vdhVFKrgthWGhm/3YJ5PTRRx/YkZpJOlfL6skmV2ZWd5kBkFcfVtN2aXhls6vs2qxc='} 2024-04-15T20:51:13.812 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi174.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 20:45:46.694803', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJMlTQ2NVG1ZXQnuwmTKBgaa2Nhum59Ajf6HGKhh/kHs38rcIvUAsZWjuTNnRst6j81x/rs9AZyb+wXNDO/DJAc='} 2024-04-15T20:51:13.812 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-15T20:51:13.819 INFO:teuthology.task.internal:roles: ubuntu@smithi050.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-04-15T20:51:13.819 INFO:teuthology.task.internal:roles: ubuntu@smithi151.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-04-15T20:51:13.819 INFO:teuthology.task.internal:roles: ubuntu@smithi174.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-04-15T20:51:13.820 INFO:teuthology.run_tasks:Running task console_log... 2024-04-15T20:51:13.946 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f4805beff70>, signals=[15]) 2024-04-15T20:51:13.947 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-15T20:51:13.954 INFO:teuthology.task.internal:Opening connections... 2024-04-15T20:51:13.954 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi050.front.sepia.ceph.com 2024-04-15T20:51:13.956 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T20:51:14.062 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi151.front.sepia.ceph.com 2024-04-15T20:51:14.063 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T20:51:14.149 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi174.front.sepia.ceph.com 2024-04-15T20:51:14.150 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi174.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T20:51:14.238 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-15T20:51:14.244 DEBUG:teuthology.orchestra.run.smithi050:> uname -m 2024-04-15T20:51:14.263 INFO:teuthology.orchestra.run.smithi050.stdout:x86_64 2024-04-15T20:51:14.263 DEBUG:teuthology.orchestra.run.smithi050:> cat /etc/os-release 2024-04-15T20:51:14.320 INFO:teuthology.orchestra.run.smithi050.stdout:NAME="CentOS Stream" 2024-04-15T20:51:14.320 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION="9" 2024-04-15T20:51:14.320 INFO:teuthology.orchestra.run.smithi050.stdout:ID="centos" 2024-04-15T20:51:14.320 INFO:teuthology.orchestra.run.smithi050.stdout:ID_LIKE="rhel fedora" 2024-04-15T20:51:14.320 INFO:teuthology.orchestra.run.smithi050.stdout:VERSION_ID="9" 2024-04-15T20:51:14.320 INFO:teuthology.orchestra.run.smithi050.stdout:PLATFORM_ID="platform:el9" 2024-04-15T20:51:14.320 INFO:teuthology.orchestra.run.smithi050.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T20:51:14.320 INFO:teuthology.orchestra.run.smithi050.stdout:ANSI_COLOR="0;31" 2024-04-15T20:51:14.320 INFO:teuthology.orchestra.run.smithi050.stdout:LOGO="fedora-logo-icon" 2024-04-15T20:51:14.321 INFO:teuthology.orchestra.run.smithi050.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T20:51:14.321 INFO:teuthology.orchestra.run.smithi050.stdout:HOME_URL="https://centos.org/" 2024-04-15T20:51:14.321 INFO:teuthology.orchestra.run.smithi050.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T20:51:14.321 INFO:teuthology.orchestra.run.smithi050.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T20:51:14.321 INFO:teuthology.orchestra.run.smithi050.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T20:51:14.321 INFO:teuthology.lock.ops:Updating smithi050.front.sepia.ceph.com on lock server 2024-04-15T20:51:14.349 DEBUG:teuthology.orchestra.run.smithi151:> uname -m 2024-04-15T20:51:14.367 INFO:teuthology.orchestra.run.smithi151.stdout:x86_64 2024-04-15T20:51:14.367 DEBUG:teuthology.orchestra.run.smithi151:> cat /etc/os-release 2024-04-15T20:51:14.424 INFO:teuthology.orchestra.run.smithi151.stdout:NAME="CentOS Stream" 2024-04-15T20:51:14.425 INFO:teuthology.orchestra.run.smithi151.stdout:VERSION="9" 2024-04-15T20:51:14.425 INFO:teuthology.orchestra.run.smithi151.stdout:ID="centos" 2024-04-15T20:51:14.425 INFO:teuthology.orchestra.run.smithi151.stdout:ID_LIKE="rhel fedora" 2024-04-15T20:51:14.425 INFO:teuthology.orchestra.run.smithi151.stdout:VERSION_ID="9" 2024-04-15T20:51:14.425 INFO:teuthology.orchestra.run.smithi151.stdout:PLATFORM_ID="platform:el9" 2024-04-15T20:51:14.425 INFO:teuthology.orchestra.run.smithi151.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T20:51:14.425 INFO:teuthology.orchestra.run.smithi151.stdout:ANSI_COLOR="0;31" 2024-04-15T20:51:14.425 INFO:teuthology.orchestra.run.smithi151.stdout:LOGO="fedora-logo-icon" 2024-04-15T20:51:14.425 INFO:teuthology.orchestra.run.smithi151.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T20:51:14.425 INFO:teuthology.orchestra.run.smithi151.stdout:HOME_URL="https://centos.org/" 2024-04-15T20:51:14.425 INFO:teuthology.orchestra.run.smithi151.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T20:51:14.425 INFO:teuthology.orchestra.run.smithi151.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T20:51:14.425 INFO:teuthology.orchestra.run.smithi151.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T20:51:14.426 INFO:teuthology.lock.ops:Updating smithi151.front.sepia.ceph.com on lock server 2024-04-15T20:51:14.449 DEBUG:teuthology.orchestra.run.smithi174:> uname -m 2024-04-15T20:51:14.467 INFO:teuthology.orchestra.run.smithi174.stdout:x86_64 2024-04-15T20:51:14.467 DEBUG:teuthology.orchestra.run.smithi174:> cat /etc/os-release 2024-04-15T20:51:14.524 INFO:teuthology.orchestra.run.smithi174.stdout:NAME="CentOS Stream" 2024-04-15T20:51:14.524 INFO:teuthology.orchestra.run.smithi174.stdout:VERSION="9" 2024-04-15T20:51:14.524 INFO:teuthology.orchestra.run.smithi174.stdout:ID="centos" 2024-04-15T20:51:14.524 INFO:teuthology.orchestra.run.smithi174.stdout:ID_LIKE="rhel fedora" 2024-04-15T20:51:14.524 INFO:teuthology.orchestra.run.smithi174.stdout:VERSION_ID="9" 2024-04-15T20:51:14.524 INFO:teuthology.orchestra.run.smithi174.stdout:PLATFORM_ID="platform:el9" 2024-04-15T20:51:14.524 INFO:teuthology.orchestra.run.smithi174.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T20:51:14.524 INFO:teuthology.orchestra.run.smithi174.stdout:ANSI_COLOR="0;31" 2024-04-15T20:51:14.524 INFO:teuthology.orchestra.run.smithi174.stdout:LOGO="fedora-logo-icon" 2024-04-15T20:51:14.524 INFO:teuthology.orchestra.run.smithi174.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T20:51:14.524 INFO:teuthology.orchestra.run.smithi174.stdout:HOME_URL="https://centos.org/" 2024-04-15T20:51:14.525 INFO:teuthology.orchestra.run.smithi174.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T20:51:14.525 INFO:teuthology.orchestra.run.smithi174.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T20:51:14.525 INFO:teuthology.orchestra.run.smithi174.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T20:51:14.525 INFO:teuthology.lock.ops:Updating smithi174.front.sepia.ceph.com on lock server 2024-04-15T20:51:14.549 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-15T20:51:14.558 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-15T20:51:14.625 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-15T20:51:14.625 DEBUG:teuthology.orchestra.run.smithi050:> test '!' -e /home/ubuntu/cephtest 2024-04-15T20:51:14.628 DEBUG:teuthology.orchestra.run.smithi151:> test '!' -e /home/ubuntu/cephtest 2024-04-15T20:51:14.630 DEBUG:teuthology.orchestra.run.smithi174:> test '!' -e /home/ubuntu/cephtest 2024-04-15T20:51:14.647 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-15T20:51:14.653 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-15T20:51:14.653 DEBUG:teuthology.orchestra.run.smithi050:> test -z $(ls -A /var/lib/ceph) 2024-04-15T20:51:14.685 DEBUG:teuthology.orchestra.run.smithi151:> test -z $(ls -A /var/lib/ceph) 2024-04-15T20:51:14.688 DEBUG:teuthology.orchestra.run.smithi174:> test -z $(ls -A /var/lib/ceph) 2024-04-15T20:51:14.798 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-15T20:51:14.873 INFO:teuthology.run_tasks:Running task kernel... 2024-04-15T20:51:14.887 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-15T20:51:14.887 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-15T20:51:14.887 DEBUG:teuthology.orchestra.run.smithi050:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T20:51:14.888 DEBUG:teuthology.orchestra.run.smithi151:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T20:51:14.888 DEBUG:teuthology.orchestra.run.smithi174:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T20:51:14.904 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T20:51:14.904 DEBUG:teuthology.orchestra.run.smithi151:> uname -r 2024-04-15T20:51:14.905 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T20:51:14.905 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T20:51:14.906 DEBUG:teuthology.orchestra.run.smithi050:> uname -r 2024-04-15T20:51:14.906 DEBUG:teuthology.orchestra.run.smithi174:> uname -r 2024-04-15T20:51:14.961 INFO:teuthology.orchestra.run.smithi151.stdout:5.14.0-361.el9.x86_64 2024-04-15T20:51:14.961 INFO:teuthology.task.kernel:Running kernel on smithi151: 5.14.0-361.el9.x86_64 2024-04-15T20:51:14.961 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum install -y kernel 2024-04-15T20:51:14.963 INFO:teuthology.orchestra.run.smithi174.stdout:5.14.0-361.el9.x86_64 2024-04-15T20:51:14.963 INFO:teuthology.task.kernel:Running kernel on smithi174: 5.14.0-361.el9.x86_64 2024-04-15T20:51:14.963 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum install -y kernel 2024-04-15T20:51:14.964 INFO:teuthology.orchestra.run.smithi050.stdout:5.14.0-361.el9.x86_64 2024-04-15T20:51:14.964 INFO:teuthology.task.kernel:Running kernel on smithi050: 5.14.0-361.el9.x86_64 2024-04-15T20:51:14.964 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum install -y kernel 2024-04-15T20:51:17.264 INFO:teuthology.orchestra.run.smithi174.stdout:CentOS-9 - AppStream 11 MB/s | 6.7 MB 00:00 2024-04-15T20:51:17.269 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS-9 - AppStream 11 MB/s | 6.7 MB 00:00 2024-04-15T20:51:17.388 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS-9 - AppStream 13 MB/s | 6.7 MB 00:00 2024-04-15T20:51:18.872 INFO:teuthology.orchestra.run.smithi174.stdout:CentOS-9 - BaseOS 4.1 MB/s | 2.0 MB 00:00 2024-04-15T20:51:18.953 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS-9 - BaseOS 3.9 MB/s | 2.0 MB 00:00 2024-04-15T20:51:19.155 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS-9 - BaseOS 3.2 MB/s | 2.0 MB 00:00 2024-04-15T20:51:19.994 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - BaseOS 12 MB/s | 8.0 MB 00:00 2024-04-15T20:51:20.071 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - BaseOS 14 MB/s | 8.0 MB 00:00 2024-04-15T20:51:22.262 INFO:teuthology.orchestra.run.smithi174.stdout:CentOS Stream 9 - BaseOS 2.6 MB/s | 8.0 MB 00:03 2024-04-15T20:51:24.797 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - AppStream 5.2 MB/s | 19 MB 00:03 2024-04-15T20:51:25.899 INFO:teuthology.orchestra.run.smithi174.stdout:CentOS Stream 9 - AppStream 7.4 MB/s | 19 MB 00:02 2024-04-15T20:51:28.806 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - CRB 12 MB/s | 6.2 MB 00:00 2024-04-15T20:51:30.431 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - Extras packages 36 kB/s | 16 kB 00:00 2024-04-15T20:51:31.656 INFO:teuthology.orchestra.run.smithi174.stdout:CentOS Stream 9 - CRB 2.7 MB/s | 6.2 MB 00:02 2024-04-15T20:51:31.892 INFO:teuthology.orchestra.run.smithi151.stdout:Extra Packages for Enterprise Linux 16 MB/s | 21 MB 00:01 2024-04-15T20:51:33.306 INFO:teuthology.orchestra.run.smithi174.stdout:CentOS Stream 9 - Extras packages 32 kB/s | 16 kB 00:00 2024-04-15T20:51:36.651 INFO:teuthology.orchestra.run.smithi174.stdout:Extra Packages for Enterprise Linux 6.5 MB/s | 21 MB 00:03 2024-04-15T20:51:36.858 INFO:teuthology.orchestra.run.smithi151.stdout:lab-extras 28 kB/s | 1.7 kB 00:00 2024-04-15T20:51:39.240 INFO:teuthology.orchestra.run.smithi151.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T20:51:39.240 INFO:teuthology.orchestra.run.smithi151.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T20:51:39.338 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T20:51:39.353 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T20:51:39.353 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-04-15T20:51:39.353 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T20:51:39.353 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T20:51:39.353 INFO:teuthology.orchestra.run.smithi151.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T20:51:39.353 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-04-15T20:51:39.353 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T20:51:39.353 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T20:51:39.353 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T20:51:39.353 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T20:51:39.354 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T20:51:39.354 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T20:51:39.354 INFO:teuthology.orchestra.run.smithi151.stdout:Install 4 Packages 2024-04-15T20:51:39.354 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T20:51:39.354 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 77 M 2024-04-15T20:51:39.354 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 123 M 2024-04-15T20:51:39.355 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T20:51:39.526 INFO:teuthology.orchestra.run.smithi151.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 1.6 MB/s | 277 kB 00:00 2024-04-15T20:51:40.434 INFO:teuthology.orchestra.run.smithi151.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 14 MB/s | 15 MB 00:01 2024-04-15T20:51:41.618 INFO:teuthology.orchestra.run.smithi151.stdout:(3/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 15 MB/s | 34 MB 00:02 2024-04-15T20:51:41.690 INFO:teuthology.orchestra.run.smithi174.stdout:lab-extras 13 kB/s | 1.7 kB 00:00 2024-04-15T20:51:41.868 INFO:teuthology.orchestra.run.smithi151.stdout:(4/4): kernel-modules-core-5.14.0-438.el9.x86_6 12 MB/s | 28 MB 00:02 2024-04-15T20:51:41.872 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T20:51:41.872 INFO:teuthology.orchestra.run.smithi151.stdout:Total 31 MB/s | 77 MB 00:02 2024-04-15T20:51:41.872 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T20:51:42.218 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T20:51:42.218 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T20:51:43.052 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T20:51:43.053 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T20:51:44.047 INFO:teuthology.orchestra.run.smithi174.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T20:51:44.047 INFO:teuthology.orchestra.run.smithi174.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T20:51:44.147 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T20:51:44.152 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T20:51:44.152 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repository Size 2024-04-15T20:51:44.153 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T20:51:44.153 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T20:51:44.153 INFO:teuthology.orchestra.run.smithi174.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T20:51:44.153 INFO:teuthology.orchestra.run.smithi174.stdout:Installing dependencies: 2024-04-15T20:51:44.153 INFO:teuthology.orchestra.run.smithi174.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T20:51:44.153 INFO:teuthology.orchestra.run.smithi174.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T20:51:44.153 INFO:teuthology.orchestra.run.smithi174.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T20:51:44.153 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T20:51:44.153 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T20:51:44.153 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T20:51:44.153 INFO:teuthology.orchestra.run.smithi174.stdout:Install 4 Packages 2024-04-15T20:51:44.153 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T20:51:44.154 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 77 M 2024-04-15T20:51:44.154 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 123 M 2024-04-15T20:51:44.154 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T20:51:44.308 INFO:teuthology.orchestra.run.smithi174.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 1.8 MB/s | 277 kB 00:00 2024-04-15T20:51:44.751 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - AppStream 819 kB/s | 19 MB 00:23 2024-04-15T20:51:44.958 INFO:teuthology.orchestra.run.smithi174.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 19 MB/s | 15 MB 00:00 2024-04-15T20:51:45.376 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T20:51:45.900 INFO:teuthology.orchestra.run.smithi174.stdout:(3/4): kernel-modules-core-5.14.0-438.el9.x86_6 17 MB/s | 28 MB 00:01 2024-04-15T20:51:45.981 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T20:51:46.085 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T20:51:46.192 INFO:teuthology.orchestra.run.smithi174.stdout:(4/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 17 MB/s | 34 MB 00:02 2024-04-15T20:51:46.195 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T20:51:46.195 INFO:teuthology.orchestra.run.smithi174.stdout:Total 38 MB/s | 77 MB 00:02 2024-04-15T20:51:46.196 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T20:51:46.542 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T20:51:46.543 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T20:51:47.390 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T20:51:47.390 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T20:51:48.841 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T20:51:48.979 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T20:51:49.310 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - CRB 7.1 MB/s | 6.2 MB 00:00 2024-04-15T20:51:49.714 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T20:51:50.297 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T20:51:50.391 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T20:51:50.786 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - Extras packages 60 kB/s | 16 kB 00:00 2024-04-15T20:51:51.879 INFO:teuthology.orchestra.run.smithi050.stdout:Extra Packages for Enterprise Linux 22 MB/s | 21 MB 00:00 2024-04-15T20:51:53.120 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T20:51:53.252 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T20:51:53.728 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T20:51:53.770 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:51:57.079 INFO:teuthology.orchestra.run.smithi050.stdout:lab-extras 48 kB/s | 1.7 kB 00:00 2024-04-15T20:51:57.949 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T20:51:57.993 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:51:58.546 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:51:59.536 INFO:teuthology.orchestra.run.smithi050.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T20:51:59.536 INFO:teuthology.orchestra.run.smithi050.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T20:51:59.631 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T20:51:59.638 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T20:51:59.638 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-04-15T20:51:59.638 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T20:51:59.638 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T20:51:59.638 INFO:teuthology.orchestra.run.smithi050.stdout: kernel x86_64 5.14.0-438.el9 CentOS-BaseOS 277 k 2024-04-15T20:51:59.638 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-04-15T20:51:59.638 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-core x86_64 5.14.0-438.el9 CentOS-BaseOS 15 M 2024-04-15T20:51:59.638 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-modules x86_64 5.14.0-438.el9 CentOS-BaseOS 34 M 2024-04-15T20:51:59.639 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-modules-core x86_64 5.14.0-438.el9 CentOS-BaseOS 28 M 2024-04-15T20:51:59.639 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T20:51:59.639 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T20:51:59.639 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T20:51:59.639 INFO:teuthology.orchestra.run.smithi050.stdout:Install 4 Packages 2024-04-15T20:51:59.639 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T20:51:59.639 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 77 M 2024-04-15T20:51:59.640 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 123 M 2024-04-15T20:51:59.640 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T20:51:59.789 INFO:teuthology.orchestra.run.smithi050.stdout:(1/4): kernel-5.14.0-438.el9.x86_64.rpm 1.8 MB/s | 277 kB 00:00 2024-04-15T20:52:00.431 INFO:teuthology.orchestra.run.smithi050.stdout:(2/4): kernel-core-5.14.0-438.el9.x86_64.rpm 19 MB/s | 15 MB 00:00 2024-04-15T20:52:00.939 INFO:teuthology.orchestra.run.smithi050.stdout:(3/4): kernel-modules-5.14.0-438.el9.x86_64.rpm 26 MB/s | 34 MB 00:01 2024-04-15T20:52:01.189 INFO:teuthology.orchestra.run.smithi050.stdout:(4/4): kernel-modules-core-5.14.0-438.el9.x86_6 20 MB/s | 28 MB 00:01 2024-04-15T20:52:01.192 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T20:52:01.193 INFO:teuthology.orchestra.run.smithi050.stdout:Total 49 MB/s | 77 MB 00:01 2024-04-15T20:52:01.193 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T20:52:01.627 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T20:52:01.627 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T20:52:02.495 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T20:52:02.496 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T20:52:02.701 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:04.948 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T20:52:05.579 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : kernel-modules-core-5.14.0-438.el9.x86_64 1/4 2024-04-15T20:52:05.668 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T20:52:08.526 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T20:52:08.690 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T20:52:13.793 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T20:52:13.836 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:18.966 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:28.167 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:28.167 INFO:teuthology.orchestra.run.smithi151.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T20:52:28.167 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T20:52:28.219 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:28.551 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:28.551 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T20:52:28.551 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T20:52:28.552 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T20:52:28.913 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:28.913 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T20:52:28.913 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T20:52:28.913 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T20:52:28.913 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T20:52:28.913 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T20:52:28.913 INFO:teuthology.orchestra.run.smithi151.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T20:52:28.913 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T20:52:28.913 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T20:52:29.261 DEBUG:teuthology.orchestra.run.smithi151:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T20:52:29.374 INFO:teuthology.orchestra.run.smithi151.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T20:52:29.374 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T20:52:29.375 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-438.el9.x86_64 2024-04-15T20:52:29.375 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T20:52:29.375 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T20:52:29.375 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-15T20:52:29.375 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi151.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T20:52:29.375 DEBUG:teuthology.orchestra.run.smithi151:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T20:52:29.454 INFO:teuthology.orchestra.run.smithi151.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T20:52:29.455 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T20:52:29.456 DEBUG:teuthology.orchestra.run.smithi151:> sudo rpm -qi grub2-tools 2024-04-15T20:52:29.490 INFO:teuthology.orchestra.run.smithi151.stdout:Name : grub2-tools 2024-04-15T20:52:29.490 INFO:teuthology.orchestra.run.smithi151.stdout:Epoch : 1 2024-04-15T20:52:29.490 INFO:teuthology.orchestra.run.smithi151.stdout:Version : 2.06 2024-04-15T20:52:29.490 INFO:teuthology.orchestra.run.smithi151.stdout:Release : 68.el9 2024-04-15T20:52:29.490 INFO:teuthology.orchestra.run.smithi151.stdout:Architecture: x86_64 2024-04-15T20:52:29.490 INFO:teuthology.orchestra.run.smithi151.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T20:52:29.490 INFO:teuthology.orchestra.run.smithi151.stdout:Group : Unspecified 2024-04-15T20:52:29.490 INFO:teuthology.orchestra.run.smithi151.stdout:Size : 8264254 2024-04-15T20:52:29.490 INFO:teuthology.orchestra.run.smithi151.stdout:License : GPLv3+ 2024-04-15T20:52:29.491 INFO:teuthology.orchestra.run.smithi151.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T20:52:29.491 INFO:teuthology.orchestra.run.smithi151.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T20:52:29.491 INFO:teuthology.orchestra.run.smithi151.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T20:52:29.491 INFO:teuthology.orchestra.run.smithi151.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T20:52:29.491 INFO:teuthology.orchestra.run.smithi151.stdout:Packager : builder@centos.org 2024-04-15T20:52:29.491 INFO:teuthology.orchestra.run.smithi151.stdout:Vendor : CentOS 2024-04-15T20:52:29.491 INFO:teuthology.orchestra.run.smithi151.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T20:52:29.491 INFO:teuthology.orchestra.run.smithi151.stdout:Summary : Support tools for GRUB. 2024-04-15T20:52:29.491 INFO:teuthology.orchestra.run.smithi151.stdout:Description : 2024-04-15T20:52:29.491 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T20:52:29.491 INFO:teuthology.orchestra.run.smithi151.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T20:52:29.491 INFO:teuthology.orchestra.run.smithi151.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T20:52:29.492 INFO:teuthology.orchestra.run.smithi151.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T20:52:29.492 INFO:teuthology.orchestra.run.smithi151.stdout:hardware devices. 2024-04-15T20:52:29.492 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T20:52:29.492 INFO:teuthology.orchestra.run.smithi151.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T20:52:29.493 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T20:52:29.493 INFO:teuthology.task.kernel:Updating grub on smithi151 to boot 5.14.0-438.el9.x86_64 2024-04-15T20:52:29.493 DEBUG:teuthology.orchestra.run.smithi151:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T20:52:30.107 INFO:teuthology.orchestra.run.smithi151.stderr:Generating grub configuration file ... 2024-04-15T20:52:31.467 INFO:teuthology.orchestra.run.smithi151.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T20:52:31.508 INFO:teuthology.orchestra.run.smithi151.stderr:done 2024-04-15T20:52:31.511 DEBUG:teuthology.orchestra.run.smithi151:> mktemp 2024-04-15T20:52:31.526 INFO:teuthology.orchestra.run.smithi151.stdout:/tmp/tmp.9vyy8izTNf 2024-04-15T20:52:31.526 DEBUG:teuthology.orchestra.run.smithi151:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.9vyy8izTNf 2024-04-15T20:52:31.596 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod 0666 /tmp/tmp.9vyy8izTNf 2024-04-15T20:52:31.740 DEBUG:teuthology.orchestra.remote:smithi151:/tmp/tmp.9vyy8izTNf is 6KB 2024-04-15T20:52:31.790 DEBUG:teuthology.orchestra.run.smithi151:> rm -fr /tmp/tmp.9vyy8izTNf 2024-04-15T20:52:31.804 DEBUG:teuthology.orchestra.run.smithi151:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T20:52:31.871 INFO:teuthology.orchestra.run.smithi151.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T20:52:31.872 INFO:teuthology.orchestra.run.smithi151.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T20:52:31.872 INFO:teuthology.orchestra.run.smithi151.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T20:52:31.872 INFO:teuthology.orchestra.run.smithi151.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T20:52:31.873 DEBUG:teuthology.orchestra.run.smithi151:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T20:52:31.987 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:31.987 INFO:teuthology.orchestra.run.smithi174.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T20:52:31.987 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T20:52:32.030 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:32.044 DEBUG:teuthology.orchestra.run.smithi151:> sudo shutdown -r now 2024-04-15T20:52:32.390 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:32.390 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T20:52:32.390 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T20:52:32.390 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T20:52:32.761 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:32.761 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T20:52:32.761 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T20:52:32.761 INFO:teuthology.orchestra.run.smithi174.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T20:52:32.762 INFO:teuthology.orchestra.run.smithi174.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T20:52:32.762 INFO:teuthology.orchestra.run.smithi174.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T20:52:32.762 INFO:teuthology.orchestra.run.smithi174.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T20:52:32.762 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T20:52:32.762 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T20:52:33.049 DEBUG:teuthology.orchestra.run.smithi174:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T20:52:33.146 INFO:teuthology.orchestra.run.smithi174.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T20:52:33.146 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T20:52:33.146 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-438.el9.x86_64 2024-04-15T20:52:33.146 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T20:52:33.146 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T20:52:33.146 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-04-15T20:52:33.146 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi174.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T20:52:33.147 DEBUG:teuthology.orchestra.run.smithi174:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T20:52:33.227 INFO:teuthology.orchestra.run.smithi174.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T20:52:33.227 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T20:52:33.227 DEBUG:teuthology.orchestra.run.smithi174:> sudo rpm -qi grub2-tools 2024-04-15T20:52:33.267 INFO:teuthology.orchestra.run.smithi174.stdout:Name : grub2-tools 2024-04-15T20:52:33.267 INFO:teuthology.orchestra.run.smithi174.stdout:Epoch : 1 2024-04-15T20:52:33.267 INFO:teuthology.orchestra.run.smithi174.stdout:Version : 2.06 2024-04-15T20:52:33.267 INFO:teuthology.orchestra.run.smithi174.stdout:Release : 68.el9 2024-04-15T20:52:33.267 INFO:teuthology.orchestra.run.smithi174.stdout:Architecture: x86_64 2024-04-15T20:52:33.267 INFO:teuthology.orchestra.run.smithi174.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T20:52:33.267 INFO:teuthology.orchestra.run.smithi174.stdout:Group : Unspecified 2024-04-15T20:52:33.267 INFO:teuthology.orchestra.run.smithi174.stdout:Size : 8264254 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout:License : GPLv3+ 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout:Packager : builder@centos.org 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout:Vendor : CentOS 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout:Summary : Support tools for GRUB. 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout:Description : 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T20:52:33.268 INFO:teuthology.orchestra.run.smithi174.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T20:52:33.269 INFO:teuthology.orchestra.run.smithi174.stdout:hardware devices. 2024-04-15T20:52:33.269 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T20:52:33.269 INFO:teuthology.orchestra.run.smithi174.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T20:52:33.269 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T20:52:33.270 INFO:teuthology.task.kernel:Updating grub on smithi174 to boot 5.14.0-438.el9.x86_64 2024-04-15T20:52:33.270 DEBUG:teuthology.orchestra.run.smithi174:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T20:52:33.900 INFO:teuthology.orchestra.run.smithi174.stderr:Generating grub configuration file ... 2024-04-15T20:52:35.313 INFO:teuthology.orchestra.run.smithi174.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T20:52:35.335 INFO:teuthology.orchestra.run.smithi174.stderr:done 2024-04-15T20:52:35.337 DEBUG:teuthology.orchestra.run.smithi174:> mktemp 2024-04-15T20:52:35.352 INFO:teuthology.orchestra.run.smithi174.stdout:/tmp/tmp.DyA3NlCI7R 2024-04-15T20:52:35.352 DEBUG:teuthology.orchestra.run.smithi174:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.DyA3NlCI7R 2024-04-15T20:52:35.420 DEBUG:teuthology.orchestra.run.smithi174:> sudo chmod 0666 /tmp/tmp.DyA3NlCI7R 2024-04-15T20:52:35.565 DEBUG:teuthology.orchestra.remote:smithi174:/tmp/tmp.DyA3NlCI7R is 6KB 2024-04-15T20:52:35.615 DEBUG:teuthology.orchestra.run.smithi174:> rm -fr /tmp/tmp.DyA3NlCI7R 2024-04-15T20:52:35.629 DEBUG:teuthology.orchestra.run.smithi174:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T20:52:35.694 INFO:teuthology.orchestra.run.smithi174.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T20:52:35.694 INFO:teuthology.orchestra.run.smithi174.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T20:52:35.695 INFO:teuthology.orchestra.run.smithi174.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T20:52:35.695 INFO:teuthology.orchestra.run.smithi174.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T20:52:35.696 DEBUG:teuthology.orchestra.run.smithi174:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T20:52:35.857 DEBUG:teuthology.orchestra.run.smithi174:> sudo shutdown -r now 2024-04-15T20:52:49.721 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:49.721 INFO:teuthology.orchestra.run.smithi050.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T20:52:49.721 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T20:52:49.767 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-modules-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:50.169 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: kernel-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:50.169 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : kernel-5.14.0-438.el9.x86_64 1/4 2024-04-15T20:52:50.169 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : kernel-core-5.14.0-438.el9.x86_64 2/4 2024-04-15T20:52:50.169 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : kernel-modules-5.14.0-438.el9.x86_64 3/4 2024-04-15T20:52:50.574 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : kernel-modules-core-5.14.0-438.el9.x86_64 4/4 2024-04-15T20:52:50.574 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T20:52:50.574 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T20:52:50.574 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-5.14.0-438.el9.x86_64 2024-04-15T20:52:50.574 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-core-5.14.0-438.el9.x86_64 2024-04-15T20:52:50.574 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-modules-5.14.0-438.el9.x86_64 2024-04-15T20:52:50.574 INFO:teuthology.orchestra.run.smithi050.stdout: kernel-modules-core-5.14.0-438.el9.x86_64 2024-04-15T20:52:50.574 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T20:52:50.575 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T20:52:50.923 DEBUG:teuthology.orchestra.run.smithi050:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T20:52:51.061 INFO:teuthology.orchestra.run.smithi050.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T20:52:51.062 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T20:52:51.062 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-438.el9.x86_64 2024-04-15T20:52:51.062 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T20:52:51.062 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T20:52:51.062 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-15T20:52:51.062 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi050.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T20:52:51.062 DEBUG:teuthology.orchestra.run.smithi050:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T20:52:51.146 INFO:teuthology.orchestra.run.smithi050.stdout:kernel-5.14.0-438.el9.x86_64 2024-04-15T20:52:51.146 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-438.el9.x86_64 2024-04-15T20:52:51.147 DEBUG:teuthology.orchestra.run.smithi050:> sudo rpm -qi grub2-tools 2024-04-15T20:52:51.185 INFO:teuthology.orchestra.run.smithi050.stdout:Name : grub2-tools 2024-04-15T20:52:51.185 INFO:teuthology.orchestra.run.smithi050.stdout:Epoch : 1 2024-04-15T20:52:51.185 INFO:teuthology.orchestra.run.smithi050.stdout:Version : 2.06 2024-04-15T20:52:51.185 INFO:teuthology.orchestra.run.smithi050.stdout:Release : 68.el9 2024-04-15T20:52:51.185 INFO:teuthology.orchestra.run.smithi050.stdout:Architecture: x86_64 2024-04-15T20:52:51.185 INFO:teuthology.orchestra.run.smithi050.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T20:52:51.185 INFO:teuthology.orchestra.run.smithi050.stdout:Group : Unspecified 2024-04-15T20:52:51.185 INFO:teuthology.orchestra.run.smithi050.stdout:Size : 8264254 2024-04-15T20:52:51.185 INFO:teuthology.orchestra.run.smithi050.stdout:License : GPLv3+ 2024-04-15T20:52:51.185 INFO:teuthology.orchestra.run.smithi050.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T20:52:51.185 INFO:teuthology.orchestra.run.smithi050.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T20:52:51.185 INFO:teuthology.orchestra.run.smithi050.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T20:52:51.186 INFO:teuthology.orchestra.run.smithi050.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T20:52:51.186 INFO:teuthology.orchestra.run.smithi050.stdout:Packager : builder@centos.org 2024-04-15T20:52:51.186 INFO:teuthology.orchestra.run.smithi050.stdout:Vendor : CentOS 2024-04-15T20:52:51.186 INFO:teuthology.orchestra.run.smithi050.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T20:52:51.186 INFO:teuthology.orchestra.run.smithi050.stdout:Summary : Support tools for GRUB. 2024-04-15T20:52:51.186 INFO:teuthology.orchestra.run.smithi050.stdout:Description : 2024-04-15T20:52:51.186 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T20:52:51.186 INFO:teuthology.orchestra.run.smithi050.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T20:52:51.186 INFO:teuthology.orchestra.run.smithi050.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T20:52:51.186 INFO:teuthology.orchestra.run.smithi050.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T20:52:51.186 INFO:teuthology.orchestra.run.smithi050.stdout:hardware devices. 2024-04-15T20:52:51.186 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T20:52:51.186 INFO:teuthology.orchestra.run.smithi050.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T20:52:51.187 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T20:52:51.187 INFO:teuthology.task.kernel:Updating grub on smithi050 to boot 5.14.0-438.el9.x86_64 2024-04-15T20:52:51.187 DEBUG:teuthology.orchestra.run.smithi050:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T20:52:51.757 INFO:teuthology.orchestra.run.smithi050.stderr:Generating grub configuration file ... 2024-04-15T20:52:53.203 INFO:teuthology.orchestra.run.smithi050.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T20:52:53.258 INFO:teuthology.orchestra.run.smithi050.stderr:done 2024-04-15T20:52:53.260 DEBUG:teuthology.orchestra.run.smithi050:> mktemp 2024-04-15T20:52:53.276 INFO:teuthology.orchestra.run.smithi050.stdout:/tmp/tmp.3ytn4zODeA 2024-04-15T20:52:53.276 DEBUG:teuthology.orchestra.run.smithi050:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.3ytn4zODeA 2024-04-15T20:52:53.348 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 0666 /tmp/tmp.3ytn4zODeA 2024-04-15T20:52:53.493 DEBUG:teuthology.orchestra.remote:smithi050:/tmp/tmp.3ytn4zODeA is 6KB 2024-04-15T20:52:53.541 DEBUG:teuthology.orchestra.run.smithi050:> rm -fr /tmp/tmp.3ytn4zODeA 2024-04-15T20:52:53.557 DEBUG:teuthology.orchestra.run.smithi050:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T20:52:53.635 INFO:teuthology.orchestra.run.smithi050.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T20:52:53.636 INFO:teuthology.orchestra.run.smithi050.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T20:52:53.636 INFO:teuthology.orchestra.run.smithi050.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T20:52:53.636 INFO:teuthology.orchestra.run.smithi050.stdout:15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64.conf 2024-04-15T20:52:53.638 DEBUG:teuthology.orchestra.run.smithi050:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-438.el9.x86_64 2024-04-15T20:52:53.785 DEBUG:teuthology.orchestra.run.smithi050:> sudo shutdown -r now 2024-04-15T20:53:02.054 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-15T20:53:02.055 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-04-15T20:53:02.056 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T20:53:05.862 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-04-15T20:53:05.862 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi174.front.sepia.ceph.com' 2024-04-15T20:53:05.863 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi174.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T20:53:23.806 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-15T20:53:23.807 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-04-15T20:53:23.808 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T20:53:36.671 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.151 2024-04-15T20:53:45.678 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-04-15T20:53:45.679 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T20:54:05.883 DEBUG:teuthology.orchestra.remote:timed out 2024-04-15T20:54:14.890 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi174.front.sepia.ceph.com' 2024-04-15T20:54:14.891 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi174.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T20:54:16.338 DEBUG:teuthology.orchestra.run.smithi174:> true 2024-04-15T20:54:16.819 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi174.front.sepia.ceph.com' 2024-04-15T20:54:16.820 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-438.el9.x86_64"... 2024-04-15T20:54:16.820 DEBUG:teuthology.orchestra.run.smithi174:> uname -r 2024-04-15T20:54:16.835 INFO:teuthology.orchestra.run.smithi174.stdout:5.14.0-438.el9.x86_64 2024-04-15T20:54:16.835 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-438.el9.x86_64 vs 5.14.0-438.el9.x86_64 2024-04-15T20:54:16.835 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T20:54:16.835 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T20:54:17.837 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-04-15T20:54:17.837 DEBUG:teuthology.orchestra.run.smithi174:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T20:54:17.926 INFO:teuthology.orchestra.run.smithi174.stdout:ttyS1 2024-04-15T20:54:17.968 DEBUG:teuthology.parallel:result is None 2024-04-15T20:54:23.810 DEBUG:teuthology.orchestra.remote:timed out 2024-04-15T20:54:32.811 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-04-15T20:54:32.812 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T20:54:33.230 DEBUG:teuthology.orchestra.run.smithi050:> true 2024-04-15T20:54:33.602 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-04-15T20:54:33.603 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-438.el9.x86_64"... 2024-04-15T20:54:33.603 DEBUG:teuthology.orchestra.run.smithi050:> uname -r 2024-04-15T20:54:33.617 INFO:teuthology.orchestra.run.smithi050.stdout:5.14.0-438.el9.x86_64 2024-04-15T20:54:33.618 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-438.el9.x86_64 vs 5.14.0-438.el9.x86_64 2024-04-15T20:54:33.618 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T20:54:33.618 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T20:54:34.619 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-15T20:54:34.619 DEBUG:teuthology.orchestra.run.smithi050:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T20:54:34.688 INFO:teuthology.orchestra.run.smithi050.stdout:ttyS1 2024-04-15T20:54:34.749 DEBUG:teuthology.parallel:result is None 2024-04-15T20:54:45.682 DEBUG:teuthology.orchestra.remote:timed out 2024-04-15T20:54:57.683 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-04-15T20:54:57.684 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T20:54:58.172 DEBUG:teuthology.orchestra.run.smithi151:> true 2024-04-15T20:54:58.580 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-04-15T20:54:58.580 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-438.el9.x86_64"... 2024-04-15T20:54:58.581 DEBUG:teuthology.orchestra.run.smithi151:> uname -r 2024-04-15T20:54:58.597 INFO:teuthology.orchestra.run.smithi151.stdout:5.14.0-438.el9.x86_64 2024-04-15T20:54:58.597 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-438.el9.x86_64 vs 5.14.0-438.el9.x86_64 2024-04-15T20:54:58.597 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T20:54:58.597 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T20:54:59.598 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-15T20:54:59.598 DEBUG:teuthology.orchestra.run.smithi151:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T20:54:59.680 INFO:teuthology.orchestra.run.smithi151.stdout:ttyS1 2024-04-15T20:54:59.720 DEBUG:teuthology.parallel:result is None 2024-04-15T20:54:59.720 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-15T20:54:59.729 INFO:teuthology.task.internal:Creating test directory... 2024-04-15T20:54:59.730 DEBUG:teuthology.orchestra.run.smithi050:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T20:54:59.734 DEBUG:teuthology.orchestra.run.smithi151:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T20:54:59.736 DEBUG:teuthology.orchestra.run.smithi174:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T20:54:59.756 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-15T20:54:59.768 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-15T20:54:59.781 INFO:teuthology.task.internal:Creating archive directory... 2024-04-15T20:54:59.782 DEBUG:teuthology.orchestra.run.smithi050:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T20:54:59.793 DEBUG:teuthology.orchestra.run.smithi151:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T20:54:59.795 DEBUG:teuthology.orchestra.run.smithi174:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T20:54:59.861 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-15T20:54:59.870 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-15T20:54:59.870 DEBUG:teuthology.orchestra.run.smithi050:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-15T20:54:59.873 DEBUG:teuthology.orchestra.run.smithi151:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-15T20:54:59.876 DEBUG:teuthology.orchestra.run.smithi174:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-15T20:54:59.911 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T20:54:59.915 INFO:teuthology.orchestra.run.smithi151.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T20:54:59.926 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T20:54:59.930 INFO:teuthology.orchestra.run.smithi151.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T20:54:59.936 INFO:teuthology.orchestra.run.smithi174.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T20:54:59.951 INFO:teuthology.orchestra.run.smithi174.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T20:54:59.953 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-15T20:54:59.964 INFO:teuthology.task.internal:Configuring sudo... 2024-04-15T20:54:59.964 DEBUG:teuthology.orchestra.run.smithi050:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T20:54:59.971 DEBUG:teuthology.orchestra.run.smithi151:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T20:54:59.975 DEBUG:teuthology.orchestra.run.smithi174:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T20:55:00.007 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-15T20:55:00.020 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-15T20:55:00.021 DEBUG:teuthology.orchestra.run.smithi050:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T20:55:00.043 DEBUG:teuthology.orchestra.run.smithi151:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T20:55:00.047 DEBUG:teuthology.orchestra.run.smithi174:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T20:55:00.064 DEBUG:teuthology.orchestra.run.smithi050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T20:55:00.138 DEBUG:teuthology.orchestra.run.smithi050:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T20:55:00.196 DEBUG:teuthology.orchestra.run.smithi050:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T20:55:00.280 DEBUG:teuthology.orchestra.run.smithi050:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T20:55:00.325 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T20:55:00.325 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T20:55:00.394 DEBUG:teuthology.orchestra.run.smithi151:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T20:55:00.439 DEBUG:teuthology.orchestra.run.smithi151:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T20:55:00.494 DEBUG:teuthology.orchestra.run.smithi151:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T20:55:00.573 DEBUG:teuthology.orchestra.run.smithi151:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T20:55:00.624 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-04-15T20:55:00.624 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T20:55:00.693 DEBUG:teuthology.orchestra.run.smithi174:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T20:55:00.739 DEBUG:teuthology.orchestra.run.smithi174:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T20:55:00.805 DEBUG:teuthology.orchestra.run.smithi174:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T20:55:00.848 DEBUG:teuthology.orchestra.run.smithi174:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T20:55:00.894 DEBUG:teuthology.orchestra.run.smithi174:> set -ex 2024-04-15T20:55:00.895 DEBUG:teuthology.orchestra.run.smithi174:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T20:55:00.965 DEBUG:teuthology.orchestra.run.smithi050:> sudo service rsyslog restart 2024-04-15T20:55:00.968 DEBUG:teuthology.orchestra.run.smithi151:> sudo service rsyslog restart 2024-04-15T20:55:00.970 DEBUG:teuthology.orchestra.run.smithi174:> sudo service rsyslog restart 2024-04-15T20:55:01.021 INFO:teuthology.orchestra.run.smithi151.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T20:55:01.024 INFO:teuthology.orchestra.run.smithi050.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T20:55:01.053 INFO:teuthology.orchestra.run.smithi174.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T20:55:01.513 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-15T20:55:01.523 INFO:teuthology.task.internal:Starting timer... 2024-04-15T20:55:01.523 INFO:teuthology.run_tasks:Running task pcp... 2024-04-15T20:55:01.539 INFO:teuthology.run_tasks:Running task selinux... 2024-04-15T20:55:01.565 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-15T20:55:01.565 DEBUG:teuthology.orchestra.run.smithi050:> sudo service auditd rotate 2024-04-15T20:55:01.640 INFO:teuthology.orchestra.run.smithi050.stdout:Rotating logs: 2024-04-15T20:55:01.642 DEBUG:teuthology.orchestra.run.smithi151:> sudo service auditd rotate 2024-04-15T20:55:01.692 INFO:teuthology.orchestra.run.smithi151.stdout:Rotating logs: 2024-04-15T20:55:01.694 DEBUG:teuthology.orchestra.run.smithi174:> sudo service auditd rotate 2024-04-15T20:55:01.761 INFO:teuthology.orchestra.run.smithi174.stdout:Rotating logs: 2024-04-15T20:55:01.763 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-15T20:55:01.763 DEBUG:teuthology.orchestra.run.smithi050:> /usr/sbin/getenforce 2024-04-15T20:55:01.786 INFO:teuthology.orchestra.run.smithi050.stdout:Permissive 2024-04-15T20:55:01.786 DEBUG:teuthology.orchestra.run.smithi151:> /usr/sbin/getenforce 2024-04-15T20:55:01.805 INFO:teuthology.orchestra.run.smithi151.stdout:Permissive 2024-04-15T20:55:01.805 DEBUG:teuthology.orchestra.run.smithi174:> /usr/sbin/getenforce 2024-04-15T20:55:01.830 INFO:teuthology.orchestra.run.smithi174.stdout:Permissive 2024-04-15T20:55:01.830 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi050.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi151.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi174.front.sepia.ceph.com': 'permissive'} 2024-04-15T20:55:01.831 DEBUG:teuthology.orchestra.run.smithi050:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T20:55:01.862 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T20:55:01.862 DEBUG:teuthology.orchestra.run.smithi151:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T20:55:01.892 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T20:55:01.893 DEBUG:teuthology.orchestra.run.smithi174:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T20:55:01.923 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T20:55:01.923 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-15T20:55:01.924 DEBUG:teuthology.orchestra.run.smithi050:> sudo /usr/sbin/setenforce permissive 2024-04-15T20:55:01.963 DEBUG:teuthology.orchestra.run.smithi151:> sudo /usr/sbin/setenforce permissive 2024-04-15T20:55:01.996 DEBUG:teuthology.orchestra.run.smithi174:> sudo /usr/sbin/setenforce permissive 2024-04-15T20:55:02.032 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-15T20:55:02.044 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2024-04-15T20:55:02.049 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2024-04-15T20:55:02.177 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-15T20:55:02.195 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-04-15T20:55:02.196 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi050.front.sepia.ceph.com,smithi151.front.sepia.ceph.com,smithi174.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-15T20:59:23.479 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi050.front.sepia.ceph.com'), Remote(name='ubuntu@smithi151.front.sepia.ceph.com'), Remote(name='ubuntu@smithi174.front.sepia.ceph.com')] 2024-04-15T20:59:23.480 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-04-15T20:59:23.481 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi050.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T20:59:23.576 DEBUG:teuthology.orchestra.run.smithi050:> true 2024-04-15T20:59:23.658 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi050.front.sepia.ceph.com' 2024-04-15T20:59:23.658 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-04-15T20:59:23.659 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi151.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T20:59:23.764 DEBUG:teuthology.orchestra.run.smithi151:> true 2024-04-15T20:59:23.849 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi151.front.sepia.ceph.com' 2024-04-15T20:59:23.850 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi174.front.sepia.ceph.com' 2024-04-15T20:59:23.850 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi174.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T20:59:23.947 DEBUG:teuthology.orchestra.run.smithi174:> true 2024-04-15T20:59:24.030 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi174.front.sepia.ceph.com' 2024-04-15T20:59:24.030 INFO:teuthology.run_tasks:Running task clock... 2024-04-15T20:59:24.044 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-15T20:59:24.044 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T20:59:24.045 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T20:59:24.047 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T20:59:24.047 DEBUG:teuthology.orchestra.run.smithi151:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T20:59:24.049 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T20:59:24.050 DEBUG:teuthology.orchestra.run.smithi174:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T20:59:24.079 INFO:teuthology.orchestra.run.smithi151.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T20:59:24.080 INFO:teuthology.orchestra.run.smithi050.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T20:59:24.097 INFO:teuthology.orchestra.run.smithi151.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T20:59:24.098 INFO:teuthology.orchestra.run.smithi050.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T20:59:24.103 INFO:teuthology.orchestra.run.smithi174.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T20:59:24.121 INFO:teuthology.orchestra.run.smithi174.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T20:59:24.128 INFO:teuthology.orchestra.run.smithi151.stderr:sudo: ntpd: command not found 2024-04-15T20:59:24.130 INFO:teuthology.orchestra.run.smithi050.stderr:sudo: ntpd: command not found 2024-04-15T20:59:24.143 INFO:teuthology.orchestra.run.smithi151.stdout:506 Cannot talk to daemon 2024-04-15T20:59:24.145 INFO:teuthology.orchestra.run.smithi050.stdout:506 Cannot talk to daemon 2024-04-15T20:59:24.151 INFO:teuthology.orchestra.run.smithi174.stderr:sudo: ntpd: command not found 2024-04-15T20:59:24.160 INFO:teuthology.orchestra.run.smithi151.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T20:59:24.162 INFO:teuthology.orchestra.run.smithi050.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T20:59:24.166 INFO:teuthology.orchestra.run.smithi174.stdout:506 Cannot talk to daemon 2024-04-15T20:59:24.178 INFO:teuthology.orchestra.run.smithi151.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T20:59:24.180 INFO:teuthology.orchestra.run.smithi050.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T20:59:24.183 INFO:teuthology.orchestra.run.smithi174.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T20:59:24.200 INFO:teuthology.orchestra.run.smithi174.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T20:59:24.230 INFO:teuthology.orchestra.run.smithi151.stderr:bash: line 1: ntpq: command not found 2024-04-15T20:59:24.234 INFO:teuthology.orchestra.run.smithi151.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T20:59:24.234 INFO:teuthology.orchestra.run.smithi151.stdout:=============================================================================== 2024-04-15T20:59:24.234 INFO:teuthology.orchestra.run.smithi151.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T20:59:24.234 INFO:teuthology.orchestra.run.smithi151.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T20:59:24.234 INFO:teuthology.orchestra.run.smithi151.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T20:59:24.234 INFO:teuthology.orchestra.run.smithi151.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T20:59:24.238 INFO:teuthology.orchestra.run.smithi050.stderr:bash: line 1: ntpq: command not found 2024-04-15T20:59:24.242 INFO:teuthology.orchestra.run.smithi050.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T20:59:24.242 INFO:teuthology.orchestra.run.smithi050.stdout:=============================================================================== 2024-04-15T20:59:24.242 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T20:59:24.242 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T20:59:24.242 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T20:59:24.242 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T20:59:24.258 INFO:teuthology.orchestra.run.smithi174.stderr:bash: line 1: ntpq: command not found 2024-04-15T20:59:24.261 INFO:teuthology.orchestra.run.smithi174.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T20:59:24.261 INFO:teuthology.orchestra.run.smithi174.stdout:=============================================================================== 2024-04-15T20:59:24.261 INFO:teuthology.orchestra.run.smithi174.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T20:59:24.261 INFO:teuthology.orchestra.run.smithi174.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T20:59:24.261 INFO:teuthology.orchestra.run.smithi174.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T20:59:24.262 INFO:teuthology.orchestra.run.smithi174.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T20:59:24.263 INFO:teuthology.run_tasks:Running task pexec... 2024-04-15T20:59:24.272 INFO:teuthology.task.pexec:Executing custom commands... 2024-04-15T20:59:24.273 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi050.front.sepia.ceph.com 2024-04-15T20:59:24.274 DEBUG:teuthology.orchestra.run.smithi050:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-15T20:59:24.274 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi151.front.sepia.ceph.com 2024-04-15T20:59:24.274 DEBUG:teuthology.orchestra.run.smithi151:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-15T20:59:24.275 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi174.front.sepia.ceph.com 2024-04-15T20:59:24.275 DEBUG:teuthology.orchestra.run.smithi174:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-15T20:59:24.872 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:00:54 ago on Mon 15 Apr 2024 08:58:30 PM UTC. 2024-04-15T20:59:24.886 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:00:48 ago on Mon 15 Apr 2024 08:58:36 PM UTC. 2024-04-15T20:59:24.900 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:00:55 ago on Mon 15 Apr 2024 08:58:29 PM UTC. 2024-04-15T20:59:25.022 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T20:59:25.038 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T20:59:25.038 INFO:teuthology.orchestra.run.smithi151.stdout: Package Architecture Version Repository Size 2024-04-15T20:59:25.039 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T20:59:25.039 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T20:59:25.039 INFO:teuthology.orchestra.run.smithi151.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-15T20:59:25.039 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T20:59:25.039 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T20:59:25.039 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T20:59:25.039 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-04-15T20:59:25.039 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T20:59:25.039 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 3.1 M 2024-04-15T20:59:25.039 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 9.8 M 2024-04-15T20:59:25.039 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T20:59:25.040 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T20:59:25.048 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T20:59:25.050 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T20:59:25.050 INFO:teuthology.orchestra.run.smithi174.stdout: Package Architecture Version Repository Size 2024-04-15T20:59:25.051 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T20:59:25.051 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T20:59:25.051 INFO:teuthology.orchestra.run.smithi174.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-15T20:59:25.051 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T20:59:25.051 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T20:59:25.051 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T20:59:25.051 INFO:teuthology.orchestra.run.smithi174.stdout:Install 1 Package 2024-04-15T20:59:25.051 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T20:59:25.051 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 3.1 M 2024-04-15T20:59:25.051 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 9.8 M 2024-04-15T20:59:25.051 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T20:59:25.053 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T20:59:25.053 INFO:teuthology.orchestra.run.smithi050.stdout: Package Architecture Version Repository Size 2024-04-15T20:59:25.053 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T20:59:25.053 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T20:59:25.053 INFO:teuthology.orchestra.run.smithi050.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-15T20:59:25.053 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T20:59:25.053 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T20:59:25.053 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T20:59:25.053 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-04-15T20:59:25.053 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T20:59:25.054 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 3.1 M 2024-04-15T20:59:25.054 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 9.8 M 2024-04-15T20:59:25.054 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T20:59:25.492 INFO:teuthology.orchestra.run.smithi151.stdout:runc-1.1.12-2.el9.x86_64.rpm 9.4 MB/s | 3.1 MB 00:00 2024-04-15T20:59:25.492 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T20:59:25.493 INFO:teuthology.orchestra.run.smithi151.stdout:Total 6.9 MB/s | 3.1 MB 00:00 2024-04-15T20:59:25.531 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T20:59:25.537 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T20:59:25.537 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T20:59:25.617 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T20:59:25.618 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T20:59:25.827 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T20:59:25.883 INFO:teuthology.orchestra.run.smithi174.stdout:runc-1.1.12-2.el9.x86_64.rpm 5.6 MB/s | 3.1 MB 00:00 2024-04-15T20:59:25.883 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T20:59:25.883 INFO:teuthology.orchestra.run.smithi174.stdout:Total 3.8 MB/s | 3.1 MB 00:00 2024-04-15T20:59:25.920 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T20:59:25.926 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T20:59:25.927 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T20:59:25.937 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T20:59:26.007 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T20:59:26.007 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T20:59:26.210 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T20:59:26.302 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T20:59:26.810 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T20:59:26.899 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T20:59:27.102 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T20:59:27.102 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T20:59:27.102 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T20:59:27.102 INFO:teuthology.orchestra.run.smithi151.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-15T20:59:27.102 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T20:59:27.102 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T20:59:27.199 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T20:59:27.199 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T20:59:27.199 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T20:59:27.200 INFO:teuthology.orchestra.run.smithi174.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-15T20:59:27.200 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T20:59:27.200 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T20:59:27.389 DEBUG:teuthology.parallel:result is None 2024-04-15T20:59:27.463 DEBUG:teuthology.parallel:result is None 2024-04-15T20:59:27.541 INFO:teuthology.orchestra.run.smithi050.stdout:runc-1.1.12-2.el9.x86_64.rpm 1.3 MB/s | 3.1 MB 00:02 2024-04-15T20:59:27.541 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T20:59:27.541 INFO:teuthology.orchestra.run.smithi050.stdout:Total 1.3 MB/s | 3.1 MB 00:02 2024-04-15T20:59:27.581 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T20:59:27.588 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T20:59:27.588 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T20:59:27.673 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T20:59:27.674 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T20:59:27.901 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T20:59:27.988 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T20:59:28.446 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T20:59:28.752 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T20:59:28.753 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T20:59:28.753 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T20:59:28.753 INFO:teuthology.orchestra.run.smithi050.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-15T20:59:28.753 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T20:59:28.753 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T20:59:29.122 DEBUG:teuthology.parallel:result is None 2024-04-15T20:59:29.123 INFO:teuthology.run_tasks:Running task install... 2024-04-15T20:59:29.131 DEBUG:teuthology.task.install:project ceph 2024-04-15T20:59:29.131 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '87dbfb632e974cb2c28d17423071d2d833b53b29'}} 2024-04-15T20:59:29.131 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '87dbfb632e974cb2c28d17423071d2d833b53b29'} 2024-04-15T20:59:29.131 INFO:teuthology.task.install:Using flavor: default 2024-04-15T20:59:29.137 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2024-04-15T20:59:29.137 INFO:teuthology.task.install:extra packages: [] 2024-04-15T20:59:29.137 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': '87dbfb632e974cb2c28d17423071d2d833b53b29', 'tag': None, 'wait_for_package': False} 2024-04-15T20:59:29.138 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T20:59:29.143 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': '87dbfb632e974cb2c28d17423071d2d833b53b29', 'tag': None, 'wait_for_package': False} 2024-04-15T20:59:29.143 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T20:59:29.144 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': '87dbfb632e974cb2c28d17423071d2d833b53b29', 'tag': None, 'wait_for_package': False} 2024-04-15T20:59:29.145 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T20:59:29.362 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/ 2024-04-15T20:59:29.362 INFO:teuthology.task.install.rpm:Package version is 19.0.0-3084.g87dbfb63 2024-04-15T20:59:29.372 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/ 2024-04-15T20:59:29.372 INFO:teuthology.task.install.rpm:Package version is 19.0.0-3084.g87dbfb63 2024-04-15T20:59:29.382 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/ 2024-04-15T20:59:29.382 INFO:teuthology.task.install.rpm:Package version is 19.0.0-3084.g87dbfb63 2024-04-15T20:59:29.474 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-15T20:59:29.475 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T20:59:29.475 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-15T20:59:29.504 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-04-15T20:59:29.505 DEBUG:teuthology.orchestra.run.smithi050:> 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/87dbfb632e974cb2c28d17423071d2d833b53b29/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-15T20:59:29.540 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-15T20:59:29.540 DEBUG:teuthology.orchestra.run.smithi174:> set -ex 2024-04-15T20:59:29.540 DEBUG:teuthology.orchestra.run.smithi174:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-15T20:59:29.553 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-15T20:59:29.554 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-04-15T20:59:29.554 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-15T20:59:29.574 DEBUG:teuthology.orchestra.run.smithi050:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-04-15T20:59:29.575 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-04-15T20:59:29.576 DEBUG:teuthology.orchestra.run.smithi174:> 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/87dbfb632e974cb2c28d17423071d2d833b53b29/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-15T20:59:29.588 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-04-15T20:59:29.588 DEBUG:teuthology.orchestra.run.smithi151:> 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/87dbfb632e974cb2c28d17423071d2d833b53b29/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-15T20:59:29.650 DEBUG:teuthology.orchestra.run.smithi174:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-04-15T20:59:29.656 DEBUG:teuthology.orchestra.run.smithi050:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-04-15T20:59:29.662 DEBUG:teuthology.orchestra.run.smithi151:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-04-15T20:59:29.724 INFO:teuthology.orchestra.run.smithi050.stdout:check_obsoletes = 1 2024-04-15T20:59:29.726 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum clean all 2024-04-15T20:59:29.737 DEBUG:teuthology.orchestra.run.smithi174:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-04-15T20:59:29.748 DEBUG:teuthology.orchestra.run.smithi151:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-04-15T20:59:29.766 INFO:teuthology.orchestra.run.smithi174.stdout:check_obsoletes = 1 2024-04-15T20:59:29.768 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum clean all 2024-04-15T20:59:29.777 INFO:teuthology.orchestra.run.smithi151.stdout:check_obsoletes = 1 2024-04-15T20:59:29.779 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum clean all 2024-04-15T20:59:29.982 INFO:teuthology.orchestra.run.smithi050.stdout:74 files removed 2024-04-15T20:59:30.009 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-radosgw 2024-04-15T20:59:30.028 INFO:teuthology.orchestra.run.smithi174.stdout:74 files removed 2024-04-15T20:59:30.036 INFO:teuthology.orchestra.run.smithi151.stdout:74 files removed 2024-04-15T20:59:30.055 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install ceph-radosgw 2024-04-15T20:59:30.064 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-radosgw 2024-04-15T20:59:30.664 INFO:teuthology.orchestra.run.smithi050.stdout:ceph packages for x86_64 242 kB/s | 83 kB 00:00 2024-04-15T20:59:30.763 INFO:teuthology.orchestra.run.smithi174.stdout:ceph packages for x86_64 207 kB/s | 83 kB 00:00 2024-04-15T20:59:30.764 INFO:teuthology.orchestra.run.smithi151.stdout:ceph packages for x86_64 212 kB/s | 83 kB 00:00 2024-04-15T20:59:31.065 INFO:teuthology.orchestra.run.smithi050.stdout:ceph noarch packages 33 kB/s | 11 kB 00:00 2024-04-15T20:59:31.148 INFO:teuthology.orchestra.run.smithi151.stdout:ceph noarch packages 34 kB/s | 11 kB 00:00 2024-04-15T20:59:31.179 INFO:teuthology.orchestra.run.smithi174.stdout:ceph noarch packages 31 kB/s | 11 kB 00:00 2024-04-15T20:59:31.441 INFO:teuthology.orchestra.run.smithi050.stdout:ceph source packages 5.7 kB/s | 1.9 kB 00:00 2024-04-15T20:59:31.522 INFO:teuthology.orchestra.run.smithi174.stdout:ceph source packages 6.2 kB/s | 1.9 kB 00:00 2024-04-15T20:59:31.582 INFO:teuthology.orchestra.run.smithi151.stdout:ceph source packages 4.8 kB/s | 1.9 kB 00:00 2024-04-15T20:59:31.851 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS-9 - AppStream 18 MB/s | 6.7 MB 00:00 2024-04-15T20:59:31.966 INFO:teuthology.orchestra.run.smithi174.stdout:CentOS-9 - AppStream 16 MB/s | 6.7 MB 00:00 2024-04-15T20:59:32.092 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS-9 - AppStream 14 MB/s | 6.7 MB 00:00 2024-04-15T20:59:33.366 INFO:teuthology.orchestra.run.smithi174.stdout:CentOS-9 - BaseOS 7.3 MB/s | 2.0 MB 00:00 2024-04-15T20:59:33.452 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS-9 - BaseOS 4.7 MB/s | 2.0 MB 00:00 2024-04-15T20:59:33.501 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS-9 - BaseOS 7.0 MB/s | 2.0 MB 00:00 2024-04-15T20:59:34.308 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - BaseOS 17 MB/s | 8.0 MB 00:00 2024-04-15T20:59:34.609 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - BaseOS 10 MB/s | 8.0 MB 00:00 2024-04-15T20:59:35.073 INFO:teuthology.orchestra.run.smithi174.stdout:CentOS Stream 9 - BaseOS 5.8 MB/s | 8.0 MB 00:01 2024-04-15T20:59:36.819 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - AppStream 18 MB/s | 19 MB 00:01 2024-04-15T20:59:37.058 INFO:teuthology.orchestra.run.smithi174.stdout:CentOS Stream 9 - AppStream 22 MB/s | 19 MB 00:00 2024-04-15T20:59:38.968 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - AppStream 5.3 MB/s | 19 MB 00:03 2024-04-15T20:59:41.277 INFO:teuthology.orchestra.run.smithi174.stdout:CentOS Stream 9 - CRB 9.2 MB/s | 6.2 MB 00:00 2024-04-15T20:59:42.637 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - CRB 2.9 MB/s | 6.2 MB 00:02 2024-04-15T20:59:42.876 INFO:teuthology.orchestra.run.smithi174.stdout:CentOS Stream 9 - Extras packages 38 kB/s | 16 kB 00:00 2024-04-15T20:59:44.087 INFO:teuthology.orchestra.run.smithi050.stdout:CentOS Stream 9 - Extras packages 83 kB/s | 16 kB 00:00 2024-04-15T20:59:44.594 INFO:teuthology.orchestra.run.smithi174.stdout:Extra Packages for Enterprise Linux 13 MB/s | 21 MB 00:01 2024-04-15T20:59:45.093 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - CRB 2.4 MB/s | 6.2 MB 00:02 2024-04-15T20:59:45.864 INFO:teuthology.orchestra.run.smithi050.stdout:Extra Packages for Enterprise Linux 13 MB/s | 21 MB 00:01 2024-04-15T20:59:47.036 INFO:teuthology.orchestra.run.smithi151.stdout:CentOS Stream 9 - Extras packages 28 kB/s | 16 kB 00:00 2024-04-15T20:59:49.012 INFO:teuthology.orchestra.run.smithi151.stdout:Extra Packages for Enterprise Linux 11 MB/s | 21 MB 00:01 2024-04-15T20:59:49.635 INFO:teuthology.orchestra.run.smithi174.stdout:lab-extras 34 kB/s | 1.7 kB 00:00 2024-04-15T20:59:51.206 INFO:teuthology.orchestra.run.smithi050.stdout:lab-extras 31 kB/s | 1.7 kB 00:00 2024-04-15T20:59:52.432 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T20:59:52.434 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T20:59:52.434 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repository Size 2024-04-15T20:59:52.434 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T20:59:52.434 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T20:59:52.435 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-radosgw x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 11 M 2024-04-15T20:59:52.435 INFO:teuthology.orchestra.run.smithi174.stdout:Upgrading: 2024-04-15T20:59:52.435 INFO:teuthology.orchestra.run.smithi174.stdout: librados2 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 3.4 M 2024-04-15T20:59:52.435 INFO:teuthology.orchestra.run.smithi174.stdout: librbd1 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 3.1 M 2024-04-15T20:59:52.435 INFO:teuthology.orchestra.run.smithi174.stdout:Installing dependencies: 2024-04-15T20:59:52.435 INFO:teuthology.orchestra.run.smithi174.stdout: boost-program-options 2024-04-15T20:59:52.435 INFO:teuthology.orchestra.run.smithi174.stdout: x86_64 1.75.0-8.el9 CentOS-AppStream 106 k 2024-04-15T20:59:52.435 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-base x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 5.4 M 2024-04-15T20:59:52.435 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-common x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 21 M 2024-04-15T20:59:52.435 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-selinux x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 25 k 2024-04-15T20:59:52.435 INFO:teuthology.orchestra.run.smithi174.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-15T20:59:52.435 INFO:teuthology.orchestra.run.smithi174.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-15T20:59:52.435 INFO:teuthology.orchestra.run.smithi174.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: libcephfs2 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 746 k 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: libpmemobj x86_64 1.12.1-1.el9 CentOS-AppStream 159 k 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: librabbitmq x86_64 0.11.0-7.el9 CentOS-AppStream 44 k 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: libradosstriper1 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 501 k 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: librdkafka x86_64 1.6.1-102.el9 CentOS-AppStream 661 k 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: librgw2 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 5.4 M 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: lttng-ust x86_64 2.12.0-6.el9 CentOS-AppStream 282 k 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: python3-ceph-argparse 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 45 k 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: python3-ceph-common x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 135 k 2024-04-15T20:59:52.436 INFO:teuthology.orchestra.run.smithi174.stdout: python3-cephfs x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 162 k 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout: python3-prettytable noarch 0.7.2-27.el9 CentOS-AppStream 41 k 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout: python3-rados x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 321 k 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout: python3-rbd x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 298 k 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout: python3-rgw x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 99 k 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout: qatlib x86_64 24.02.0-1.el9 CentOS-AppStream 220 k 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout: qatzip-libs x86_64 1.2.0-1.el9 CentOS-AppStream 46 k 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout:Installing weak dependencies: 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout: qatlib-service x86_64 24.02.0-1.el9 CentOS-AppStream 35 k 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T20:59:52.437 INFO:teuthology.orchestra.run.smithi174.stdout:Install 30 Packages 2024-04-15T20:59:52.438 INFO:teuthology.orchestra.run.smithi174.stdout:Upgrade 2 Packages 2024-04-15T20:59:52.438 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T20:59:52.438 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 60 M 2024-04-15T20:59:52.438 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T20:59:53.611 INFO:teuthology.orchestra.run.smithi174.stdout:(1/32): ceph-base-19.0.0-3084.g87dbfb63.el9.x86 6.0 MB/s | 5.4 MB 00:00 2024-04-15T20:59:53.645 INFO:teuthology.orchestra.run.smithi174.stdout:(2/32): ceph-selinux-19.0.0-3084.g87dbfb63.el9. 760 kB/s | 25 kB 00:00 2024-04-15T20:59:53.736 INFO:teuthology.orchestra.run.smithi174.stdout:(3/32): libcephfs2-19.0.0-3084.g87dbfb63.el9.x8 8.0 MB/s | 746 kB 00:00 2024-04-15T20:59:53.803 INFO:teuthology.orchestra.run.smithi174.stdout:(4/32): libradosstriper1-19.0.0-3084.g87dbfb63. 7.4 MB/s | 501 kB 00:00 2024-04-15T20:59:54.043 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T20:59:54.045 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T20:59:54.045 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-04-15T20:59:54.045 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T20:59:54.045 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T20:59:54.045 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-radosgw x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 11 M 2024-04-15T20:59:54.045 INFO:teuthology.orchestra.run.smithi050.stdout:Upgrading: 2024-04-15T20:59:54.045 INFO:teuthology.orchestra.run.smithi050.stdout: librados2 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 3.4 M 2024-04-15T20:59:54.046 INFO:teuthology.orchestra.run.smithi050.stdout: librbd1 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 3.1 M 2024-04-15T20:59:54.046 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-04-15T20:59:54.046 INFO:teuthology.orchestra.run.smithi050.stdout: boost-program-options 2024-04-15T20:59:54.046 INFO:teuthology.orchestra.run.smithi050.stdout: x86_64 1.75.0-8.el9 CentOS-AppStream 106 k 2024-04-15T20:59:54.046 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-base x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 5.4 M 2024-04-15T20:59:54.046 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-common x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 21 M 2024-04-15T20:59:54.046 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-selinux x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 25 k 2024-04-15T20:59:54.046 INFO:teuthology.orchestra.run.smithi050.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-15T20:59:54.046 INFO:teuthology.orchestra.run.smithi050.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-15T20:59:54.046 INFO:teuthology.orchestra.run.smithi050.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-15T20:59:54.046 INFO:teuthology.orchestra.run.smithi050.stdout: libcephfs2 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 746 k 2024-04-15T20:59:54.046 INFO:teuthology.orchestra.run.smithi050.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-15T20:59:54.046 INFO:teuthology.orchestra.run.smithi050.stdout: libpmemobj x86_64 1.12.1-1.el9 CentOS-AppStream 159 k 2024-04-15T20:59:54.047 INFO:teuthology.orchestra.run.smithi050.stdout: librabbitmq x86_64 0.11.0-7.el9 CentOS-AppStream 44 k 2024-04-15T20:59:54.047 INFO:teuthology.orchestra.run.smithi050.stdout: libradosstriper1 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 501 k 2024-04-15T20:59:54.047 INFO:teuthology.orchestra.run.smithi050.stdout: librdkafka x86_64 1.6.1-102.el9 CentOS-AppStream 661 k 2024-04-15T20:59:54.047 INFO:teuthology.orchestra.run.smithi050.stdout: librgw2 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 5.4 M 2024-04-15T20:59:54.047 INFO:teuthology.orchestra.run.smithi050.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-15T20:59:54.047 INFO:teuthology.orchestra.run.smithi050.stdout: lttng-ust x86_64 2.12.0-6.el9 CentOS-AppStream 282 k 2024-04-15T20:59:54.047 INFO:teuthology.orchestra.run.smithi050.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-15T20:59:54.047 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ceph-argparse 2024-04-15T20:59:54.047 INFO:teuthology.orchestra.run.smithi050.stdout: x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 45 k 2024-04-15T20:59:54.047 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ceph-common x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 135 k 2024-04-15T20:59:54.047 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cephfs x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 162 k 2024-04-15T20:59:54.047 INFO:teuthology.orchestra.run.smithi050.stdout: python3-prettytable noarch 0.7.2-27.el9 CentOS-AppStream 41 k 2024-04-15T20:59:54.047 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rados x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 321 k 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rbd x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 298 k 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rgw x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 99 k 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout: qatlib x86_64 24.02.0-1.el9 CentOS-AppStream 220 k 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout: qatzip-libs x86_64 1.2.0-1.el9 CentOS-AppStream 46 k 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout:Installing weak dependencies: 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout: qatlib-service x86_64 24.02.0-1.el9 CentOS-AppStream 35 k 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout:Install 30 Packages 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout:Upgrade 2 Packages 2024-04-15T20:59:54.048 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T20:59:54.049 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 60 M 2024-04-15T20:59:54.049 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T20:59:54.137 INFO:teuthology.orchestra.run.smithi174.stdout:(5/32): librgw2-19.0.0-3084.g87dbfb63.el9.x86_6 16 MB/s | 5.4 MB 00:00 2024-04-15T20:59:54.162 INFO:teuthology.orchestra.run.smithi151.stdout:lab-extras 13 kB/s | 1.7 kB 00:00 2024-04-15T20:59:54.170 INFO:teuthology.orchestra.run.smithi174.stdout:(6/32): python3-ceph-argparse-19.0.0-3084.g87db 1.3 MB/s | 45 kB 00:00 2024-04-15T20:59:54.221 INFO:teuthology.orchestra.run.smithi174.stdout:(7/32): python3-ceph-common-19.0.0-3084.g87dbfb 2.6 MB/s | 135 kB 00:00 2024-04-15T20:59:54.271 INFO:teuthology.orchestra.run.smithi174.stdout:(8/32): python3-cephfs-19.0.0-3084.g87dbfb63.el 3.2 MB/s | 162 kB 00:00 2024-04-15T20:59:54.322 INFO:teuthology.orchestra.run.smithi174.stdout:(9/32): python3-rados-19.0.0-3084.g87dbfb63.el9 6.3 MB/s | 321 kB 00:00 2024-04-15T20:59:54.372 INFO:teuthology.orchestra.run.smithi174.stdout:(10/32): python3-rbd-19.0.0-3084.g87dbfb63.el9. 5.8 MB/s | 298 kB 00:00 2024-04-15T20:59:54.422 INFO:teuthology.orchestra.run.smithi174.stdout:(11/32): python3-rgw-19.0.0-3084.g87dbfb63.el9. 1.9 MB/s | 99 kB 00:00 2024-04-15T20:59:54.580 INFO:teuthology.orchestra.run.smithi174.stdout:(12/32): boost-program-options-1.75.0-8.el9.x86 669 kB/s | 106 kB 00:00 2024-04-15T20:59:54.622 INFO:teuthology.orchestra.run.smithi174.stdout:(13/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 3.7 MB/s | 159 kB 00:00 2024-04-15T20:59:54.664 INFO:teuthology.orchestra.run.smithi174.stdout:(14/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 1.0 MB/s | 44 kB 00:00 2024-04-15T20:59:54.723 INFO:teuthology.orchestra.run.smithi174.stdout:(15/32): librdkafka-1.6.1-102.el9.x86_64.rpm 11 MB/s | 661 kB 00:00 2024-04-15T20:59:54.765 INFO:teuthology.orchestra.run.smithi174.stdout:(16/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 6.6 MB/s | 282 kB 00:00 2024-04-15T20:59:54.807 INFO:teuthology.orchestra.run.smithi174.stdout:(17/32): python3-prettytable-0.7.2-27.el9.noarc 996 kB/s | 41 kB 00:00 2024-04-15T20:59:54.849 INFO:teuthology.orchestra.run.smithi174.stdout:(18/32): qatlib-24.02.0-1.el9.x86_64.rpm 5.1 MB/s | 220 kB 00:00 2024-04-15T20:59:54.882 INFO:teuthology.orchestra.run.smithi174.stdout:(19/32): qatlib-service-24.02.0-1.el9.x86_64.rp 1.0 MB/s | 35 kB 00:00 2024-04-15T20:59:54.916 INFO:teuthology.orchestra.run.smithi174.stdout:(20/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 1.4 MB/s | 46 kB 00:00 2024-04-15T20:59:55.425 INFO:teuthology.orchestra.run.smithi174.stdout:(21/32): ceph-radosgw-19.0.0-3084.g87dbfb63.el9 3.9 MB/s | 11 MB 00:02 2024-04-15T20:59:55.450 INFO:teuthology.orchestra.run.smithi174.stdout:(22/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 579 kB/s | 309 kB 00:00 2024-04-15T20:59:55.550 INFO:teuthology.orchestra.run.smithi174.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 259 kB/s | 26 kB 00:00 2024-04-15T20:59:55.658 INFO:teuthology.orchestra.run.smithi174.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 448 kB/s | 49 kB 00:00 2024-04-15T20:59:55.750 INFO:teuthology.orchestra.run.smithi174.stdout:(25/32): libunwind-1.6.2-1.el9.x86_64.rpm 734 kB/s | 67 kB 00:00 2024-04-15T20:59:55.926 INFO:teuthology.orchestra.run.smithi174.stdout:(26/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 4.7 MB/s | 838 kB 00:00 2024-04-15T20:59:56.034 INFO:teuthology.orchestra.run.smithi174.stdout:(27/32): re2-20211101-3.el9.x86_64.rpm 1.7 MB/s | 192 kB 00:00 2024-04-15T20:59:56.307 INFO:teuthology.orchestra.run.smithi050.stdout:(1/32): ceph-base-19.0.0-3084.g87dbfb63.el9.x86 2.6 MB/s | 5.4 MB 00:02 2024-04-15T20:59:56.335 INFO:teuthology.orchestra.run.smithi174.stdout:(28/32): ceph-common-19.0.0-3084.g87dbfb63.el9. 5.8 MB/s | 21 MB 00:03 2024-04-15T20:59:56.522 INFO:teuthology.orchestra.run.smithi050.stdout:(2/32): ceph-selinux-19.0.0-3084.g87dbfb63.el9. 302 kB/s | 25 kB 00:00 2024-04-15T20:59:56.523 INFO:teuthology.orchestra.run.smithi174.stdout:(29/32): thrift-0.15.0-2.el9.x86_64.rpm 4.5 MB/s | 1.6 MB 00:00 2024-04-15T20:59:56.523 INFO:teuthology.orchestra.run.smithi174.stdout:(30/32): libarrow-9.0.0-10.el9.x86_64.rpm 4.3 MB/s | 4.4 MB 00:01 2024-04-15T20:59:56.835 INFO:teuthology.orchestra.run.smithi174.stdout:(31/32): librbd1-19.0.0-3084.g87dbfb63.el9.x86_ 7.0 MB/s | 3.1 MB 00:00 2024-04-15T20:59:56.849 INFO:teuthology.orchestra.run.smithi050.stdout:(3/32): ceph-common-19.0.0-3084.g87dbfb63.el9.x 8.0 MB/s | 21 MB 00:02 2024-04-15T20:59:56.874 INFO:teuthology.orchestra.run.smithi050.stdout:(4/32): libcephfs2-19.0.0-3084.g87dbfb63.el9.x8 1.5 MB/s | 746 kB 00:00 2024-04-15T20:59:56.933 INFO:teuthology.orchestra.run.smithi050.stdout:(5/32): libradosstriper1-19.0.0-3084.g87dbfb63. 5.9 MB/s | 501 kB 00:00 2024-04-15T20:59:56.954 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T20:59:56.957 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T20:59:56.957 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-04-15T20:59:56.957 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T20:59:56.957 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T20:59:56.957 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-radosgw x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 11 M 2024-04-15T20:59:56.957 INFO:teuthology.orchestra.run.smithi151.stdout:Upgrading: 2024-04-15T20:59:56.957 INFO:teuthology.orchestra.run.smithi151.stdout: librados2 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 3.4 M 2024-04-15T20:59:56.957 INFO:teuthology.orchestra.run.smithi151.stdout: librbd1 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 3.1 M 2024-04-15T20:59:56.957 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-04-15T20:59:56.957 INFO:teuthology.orchestra.run.smithi151.stdout: boost-program-options 2024-04-15T20:59:56.957 INFO:teuthology.orchestra.run.smithi151.stdout: x86_64 1.75.0-8.el9 CentOS-AppStream 106 k 2024-04-15T20:59:56.957 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-base x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 5.4 M 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-common x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 21 M 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-selinux x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 25 k 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: libcephfs2 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 746 k 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: libpmemobj x86_64 1.12.1-1.el9 CentOS-AppStream 159 k 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: librabbitmq x86_64 0.11.0-7.el9 CentOS-AppStream 44 k 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: libradosstriper1 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 501 k 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: librdkafka x86_64 1.6.1-102.el9 CentOS-AppStream 661 k 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: librgw2 x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 5.4 M 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-15T20:59:56.958 INFO:teuthology.orchestra.run.smithi151.stdout: lttng-ust x86_64 2.12.0-6.el9 CentOS-AppStream 282 k 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: python3-ceph-argparse 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 45 k 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: python3-ceph-common x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 135 k 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cephfs x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 162 k 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: python3-prettytable noarch 0.7.2-27.el9 CentOS-AppStream 41 k 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rados x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 321 k 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rbd x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 298 k 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rgw x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 99 k 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: qatlib x86_64 24.02.0-1.el9 CentOS-AppStream 220 k 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: qatzip-libs x86_64 1.2.0-1.el9 CentOS-AppStream 46 k 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout:Installing weak dependencies: 2024-04-15T20:59:56.959 INFO:teuthology.orchestra.run.smithi151.stdout: qatlib-service x86_64 24.02.0-1.el9 CentOS-AppStream 35 k 2024-04-15T20:59:56.960 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T20:59:56.960 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T20:59:56.960 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T20:59:56.960 INFO:teuthology.orchestra.run.smithi151.stdout:Install 30 Packages 2024-04-15T20:59:56.960 INFO:teuthology.orchestra.run.smithi151.stdout:Upgrade 2 Packages 2024-04-15T20:59:56.960 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T20:59:56.960 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 60 M 2024-04-15T20:59:56.960 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T20:59:56.992 INFO:teuthology.orchestra.run.smithi050.stdout:(6/32): python3-ceph-argparse-19.0.0-3084.g87db 772 kB/s | 45 kB 00:00 2024-04-15T20:59:57.042 INFO:teuthology.orchestra.run.smithi050.stdout:(7/32): python3-ceph-common-19.0.0-3084.g87dbfb 2.6 MB/s | 135 kB 00:00 2024-04-15T20:59:57.162 INFO:teuthology.orchestra.run.smithi050.stdout:(8/32): ceph-radosgw-19.0.0-3084.g87dbfb63.el9. 3.6 MB/s | 11 MB 00:02 2024-04-15T20:59:57.177 INFO:teuthology.orchestra.run.smithi174.stdout:(32/32): librados2-19.0.0-3084.g87dbfb63.el9.x8 4.0 MB/s | 3.4 MB 00:00 2024-04-15T20:59:57.180 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T20:59:57.181 INFO:teuthology.orchestra.run.smithi174.stdout:Total 13 MB/s | 60 MB 00:04 2024-04-15T20:59:57.181 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T20:59:57.185 INFO:teuthology.orchestra.run.smithi050.stdout:(9/32): python3-cephfs-19.0.0-3084.g87dbfb63.el 1.1 MB/s | 162 kB 00:00 2024-04-15T20:59:57.216 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T20:59:57.216 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T20:59:57.226 INFO:teuthology.orchestra.run.smithi050.stdout:(10/32): python3-rados-19.0.0-3084.g87dbfb63.el 4.7 MB/s | 321 kB 00:00 2024-04-15T20:59:57.260 INFO:teuthology.orchestra.run.smithi050.stdout:(11/32): python3-rbd-19.0.0-3084.g87dbfb63.el9. 3.9 MB/s | 298 kB 00:00 2024-04-15T20:59:57.285 INFO:teuthology.orchestra.run.smithi050.stdout:(12/32): python3-rgw-19.0.0-3084.g87dbfb63.el9. 1.7 MB/s | 99 kB 00:00 2024-04-15T20:59:57.402 INFO:teuthology.orchestra.run.smithi050.stdout:(13/32): boost-program-options-1.75.0-8.el9.x86 745 kB/s | 106 kB 00:00 2024-04-15T20:59:57.427 INFO:teuthology.orchestra.run.smithi050.stdout:(14/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 1.3 MB/s | 159 kB 00:00 2024-04-15T20:59:57.461 INFO:teuthology.orchestra.run.smithi050.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 759 kB/s | 44 kB 00:00 2024-04-15T20:59:57.520 INFO:teuthology.orchestra.run.smithi050.stdout:(16/32): librdkafka-1.6.1-102.el9.x86_64.rpm 7.0 MB/s | 661 kB 00:00 2024-04-15T20:59:57.545 INFO:teuthology.orchestra.run.smithi050.stdout:(17/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 3.3 MB/s | 282 kB 00:00 2024-04-15T20:59:57.570 INFO:teuthology.orchestra.run.smithi050.stdout:(18/32): python3-prettytable-0.7.2-27.el9.noarc 829 kB/s | 41 kB 00:00 2024-04-15T20:59:57.595 INFO:teuthology.orchestra.run.smithi050.stdout:(19/32): qatlib-24.02.0-1.el9.x86_64.rpm 4.3 MB/s | 220 kB 00:00 2024-04-15T20:59:57.621 INFO:teuthology.orchestra.run.smithi050.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 699 kB/s | 35 kB 00:00 2024-04-15T20:59:57.646 INFO:teuthology.orchestra.run.smithi050.stdout:(21/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 925 kB/s | 46 kB 00:00 2024-04-15T20:59:57.716 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T20:59:57.716 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T20:59:58.096 INFO:teuthology.orchestra.run.smithi050.stdout:(22/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 650 kB/s | 309 kB 00:00 2024-04-15T20:59:58.188 INFO:teuthology.orchestra.run.smithi050.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 284 kB/s | 26 kB 00:00 2024-04-15T20:59:58.264 INFO:teuthology.orchestra.run.smithi050.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 647 kB/s | 49 kB 00:00 2024-04-15T20:59:58.330 INFO:teuthology.orchestra.run.smithi050.stdout:(25/32): libarrow-9.0.0-10.el9.x86_64.rpm 6.5 MB/s | 4.4 MB 00:00 2024-04-15T20:59:58.356 INFO:teuthology.orchestra.run.smithi050.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 733 kB/s | 67 kB 00:00 2024-04-15T20:59:58.423 INFO:teuthology.orchestra.run.smithi050.stdout:(27/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 8.9 MB/s | 838 kB 00:00 2024-04-15T20:59:58.448 INFO:teuthology.orchestra.run.smithi050.stdout:(28/32): re2-20211101-3.el9.x86_64.rpm 2.0 MB/s | 192 kB 00:00 2024-04-15T20:59:58.496 INFO:teuthology.orchestra.run.smithi151.stdout:(1/32): ceph-radosgw-19.0.0-3084.g87dbfb63.el9. 7.9 MB/s | 11 MB 00:01 2024-04-15T20:59:58.524 INFO:teuthology.orchestra.run.smithi050.stdout:(29/32): thrift-0.15.0-2.el9.x86_64.rpm 16 MB/s | 1.6 MB 00:00 2024-04-15T20:59:58.546 INFO:teuthology.orchestra.run.smithi151.stdout:(2/32): ceph-selinux-19.0.0-3084.g87dbfb63.el9. 505 kB/s | 25 kB 00:00 2024-04-15T20:59:58.722 INFO:teuthology.orchestra.run.smithi151.stdout:(3/32): ceph-base-19.0.0-3084.g87dbfb63.el9.x86 3.4 MB/s | 5.4 MB 00:01 2024-04-15T20:59:58.756 INFO:teuthology.orchestra.run.smithi151.stdout:(4/32): libcephfs2-19.0.0-3084.g87dbfb63.el9.x8 3.5 MB/s | 746 kB 00:00 2024-04-15T20:59:58.914 INFO:teuthology.orchestra.run.smithi151.stdout:(5/32): libradosstriper1-19.0.0-3084.g87dbfb63. 2.6 MB/s | 501 kB 00:00 2024-04-15T20:59:59.014 INFO:teuthology.orchestra.run.smithi151.stdout:(6/32): python3-ceph-argparse-19.0.0-3084.g87db 451 kB/s | 45 kB 00:00 2024-04-15T20:59:59.057 INFO:teuthology.orchestra.run.smithi050.stdout:(30/32): librados2-19.0.0-3084.g87dbfb63.el9.x8 5.6 MB/s | 3.4 MB 00:00 2024-04-15T20:59:59.097 INFO:teuthology.orchestra.run.smithi151.stdout:(7/32): python3-ceph-common-19.0.0-3084.g87dbfb 1.6 MB/s | 135 kB 00:00 2024-04-15T20:59:59.179 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T20:59:59.189 INFO:teuthology.orchestra.run.smithi151.stdout:(8/32): python3-cephfs-19.0.0-3084.g87dbfb63.el 1.7 MB/s | 162 kB 00:00 2024-04-15T20:59:59.261 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-15T20:59:59.282 INFO:teuthology.orchestra.run.smithi050.stdout:(31/32): librgw2-19.0.0-3084.g87dbfb63.el9.x86_ 2.2 MB/s | 5.4 MB 00:02 2024-04-15T20:59:59.299 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-15T20:59:59.324 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-15T20:59:59.347 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T20:59:59.363 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T20:59:59.456 INFO:teuthology.orchestra.run.smithi151.stdout:(9/32): ceph-common-19.0.0-3084.g87dbfb63.el9.x 9.2 MB/s | 21 MB 00:02 2024-04-15T20:59:59.481 INFO:teuthology.orchestra.run.smithi151.stdout:(10/32): python3-rados-19.0.0-3084.g87dbfb63.el 1.1 MB/s | 321 kB 00:00 2024-04-15T20:59:59.516 INFO:teuthology.orchestra.run.smithi151.stdout:(11/32): python3-rbd-19.0.0-3084.g87dbfb63.el9. 5.0 MB/s | 298 kB 00:00 2024-04-15T20:59:59.541 INFO:teuthology.orchestra.run.smithi151.stdout:(12/32): python3-rgw-19.0.0-3084.g87dbfb63.el9. 1.6 MB/s | 99 kB 00:00 2024-04-15T20:59:59.557 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T20:59:59.610 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T20:59:59.641 INFO:teuthology.orchestra.run.smithi151.stdout:(13/32): librgw2-19.0.0-3084.g87dbfb63.el9.x86_ 6.1 MB/s | 5.4 MB 00:00 2024-04-15T20:59:59.791 INFO:teuthology.orchestra.run.smithi151.stdout:(14/32): boost-program-options-1.75.0-8.el9.x86 384 kB/s | 106 kB 00:00 2024-04-15T20:59:59.817 INFO:teuthology.orchestra.run.smithi151.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 299 kB/s | 44 kB 00:00 2024-04-15T20:59:59.875 INFO:teuthology.orchestra.run.smithi151.stdout:(16/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 518 kB/s | 159 kB 00:00 2024-04-15T20:59:59.984 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-15T21:00:00.017 INFO:teuthology.orchestra.run.smithi151.stdout:(17/32): librdkafka-1.6.1-102.el9.x86_64.rpm 2.9 MB/s | 661 kB 00:00 2024-04-15T21:00:00.025 INFO:teuthology.orchestra.run.smithi174.stdout: Upgrading : librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 7/34 2024-04-15T21:00:00.050 INFO:teuthology.orchestra.run.smithi151.stdout:(18/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.2 MB/s | 282 kB 00:00 2024-04-15T21:00:00.076 INFO:teuthology.orchestra.run.smithi151.stdout:(19/32): python3-prettytable-0.7.2-27.el9.noarc 205 kB/s | 41 kB 00:00 2024-04-15T21:00:00.101 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 7/34 2024-04-15T21:00:00.109 INFO:teuthology.orchestra.run.smithi151.stdout:(20/32): qatlib-24.02.0-1.el9.x86_64.rpm 2.4 MB/s | 220 kB 00:00 2024-04-15T21:00:00.135 INFO:teuthology.orchestra.run.smithi151.stdout:(21/32): qatlib-service-24.02.0-1.el9.x86_64.rp 418 kB/s | 35 kB 00:00 2024-04-15T21:00:00.160 INFO:teuthology.orchestra.run.smithi151.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 925 kB/s | 46 kB 00:00 2024-04-15T21:00:00.190 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-rados-2:19.0.0-3084.g87dbfb63.el9.x86_64 8/34 2024-04-15T21:00:00.218 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 9/34 2024-04-15T21:00:00.291 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 9/34 2024-04-15T21:00:00.331 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-15T21:00:00.381 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-ceph-argparse-2:19.0.0-3084.g87dbfb63.el9. 11/34 2024-04-15T21:00:00.435 INFO:teuthology.orchestra.run.smithi151.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 94 kB/s | 26 kB 00:00 2024-04-15T21:00:00.460 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-cephfs-2:19.0.0-3084.g87dbfb63.el9.x86_64 12/34 2024-04-15T21:00:00.487 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : libradosstriper1-2:19.0.0-3084.g87dbfb63.el9.x86_6 13/34 2024-04-15T21:00:00.551 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: libradosstriper1-2:19.0.0-3084.g87dbfb63.el9.x86_6 13/34 2024-04-15T21:00:00.574 INFO:teuthology.orchestra.run.smithi050.stdout:(32/32): librbd1-19.0.0-3084.g87dbfb63.el9.x86_ 1.5 MB/s | 3.1 MB 00:02 2024-04-15T21:00:00.580 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:00.581 INFO:teuthology.orchestra.run.smithi050.stdout:Total 9.2 MB/s | 60 MB 00:06 2024-04-15T21:00:00.581 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:00:00.586 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-15T21:00:00.587 INFO:teuthology.orchestra.run.smithi151.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 324 kB/s | 49 kB 00:00 2024-04-15T21:00:00.623 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:00:00.623 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:00:00.677 INFO:teuthology.orchestra.run.smithi151.stdout:(25/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 544 kB/s | 309 kB 00:00 2024-04-15T21:00:00.688 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-15T21:00:00.703 INFO:teuthology.orchestra.run.smithi151.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 576 kB/s | 67 kB 00:00 2024-04-15T21:00:00.720 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-15T21:00:00.760 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-15T21:00:00.801 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-15T21:00:00.830 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-15T21:00:00.863 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-15T21:00:00.919 INFO:teuthology.orchestra.run.smithi151.stdout:(27/32): libarrow-9.0.0-10.el9.x86_64.rpm 5.6 MB/s | 4.4 MB 00:00 2024-04-15T21:00:00.953 INFO:teuthology.orchestra.run.smithi151.stdout:(28/32): re2-20211101-3.el9.x86_64.rpm 766 kB/s | 192 kB 00:00 2024-04-15T21:00:00.978 INFO:teuthology.orchestra.run.smithi151.stdout:(29/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 2.7 MB/s | 838 kB 00:00 2024-04-15T21:00:01.079 INFO:teuthology.orchestra.run.smithi151.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 10 MB/s | 1.6 MB 00:00 2024-04-15T21:00:01.138 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:00:01.138 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:00:01.185 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-15T21:00:01.209 INFO:teuthology.orchestra.run.smithi174.stdout: Upgrading : librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 22/34 2024-04-15T21:00:01.262 INFO:teuthology.orchestra.run.smithi151.stdout:(31/32): librbd1-19.0.0-3084.g87dbfb63.el9.x86_ 11 MB/s | 3.1 MB 00:00 2024-04-15T21:00:01.299 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 22/34 2024-04-15T21:00:01.322 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-rbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 23/34 2024-04-15T21:00:01.375 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-15T21:00:01.874 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-15T21:00:01.903 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : librgw2-2:19.0.0-3084.g87dbfb63.el9.x86_64 26/34 2024-04-15T21:00:01.974 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: librgw2-2:19.0.0-3084.g87dbfb63.el9.x86_64 26/34 2024-04-15T21:00:02.043 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-rgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 27/34 2024-04-15T21:00:02.073 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-ceph-common-2:19.0.0-3084.g87dbfb63.el9.x8 28/34 2024-04-15T21:00:02.304 INFO:teuthology.orchestra.run.smithi151.stdout:(32/32): librados2-19.0.0-3084.g87dbfb63.el9.x8 2.5 MB/s | 3.4 MB 00:01 2024-04-15T21:00:02.312 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:02.312 INFO:teuthology.orchestra.run.smithi151.stdout:Total 11 MB/s | 60 MB 00:05 2024-04-15T21:00:02.313 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:00:02.351 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:00:02.351 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:00:02.588 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:00:02.680 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-15T21:00:02.713 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-15T21:00:02.738 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-15T21:00:02.760 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T21:00:02.791 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T21:00:02.868 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:00:02.869 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:00:02.992 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T21:00:03.066 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T21:00:03.415 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-15T21:00:03.498 INFO:teuthology.orchestra.run.smithi050.stdout: Upgrading : librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 7/34 2024-04-15T21:00:03.591 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 7/34 2024-04-15T21:00:03.698 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-rados-2:19.0.0-3084.g87dbfb63.el9.x86_64 8/34 2024-04-15T21:00:03.725 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 9/34 2024-04-15T21:00:03.781 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 9/34 2024-04-15T21:00:03.821 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-15T21:00:03.871 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-ceph-argparse-2:19.0.0-3084.g87dbfb63.el9. 11/34 2024-04-15T21:00:03.960 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-cephfs-2:19.0.0-3084.g87dbfb63.el9.x86_64 12/34 2024-04-15T21:00:03.994 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libradosstriper1-2:19.0.0-3084.g87dbfb63.el9.x86_6 13/34 2024-04-15T21:00:04.041 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: libradosstriper1-2:19.0.0-3084.g87dbfb63.el9.x86_6 13/34 2024-04-15T21:00:04.076 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-15T21:00:04.179 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-15T21:00:04.210 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-15T21:00:04.251 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-15T21:00:04.284 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-15T21:00:04.310 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:00:04.313 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-15T21:00:04.337 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 29/34 2024-04-15T21:00:04.345 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-15T21:00:04.411 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-15T21:00:04.442 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-15T21:00:04.460 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 29/34 2024-04-15T21:00:04.467 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-15T21:00:04.507 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T21:00:04.525 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T21:00:04.676 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-15T21:00:04.709 INFO:teuthology.orchestra.run.smithi050.stdout: Upgrading : librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 22/34 2024-04-15T21:00:04.718 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T21:00:04.785 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T21:00:04.799 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 22/34 2024-04-15T21:00:04.830 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-rbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 23/34 2024-04-15T21:00:04.874 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-15T21:00:05.011 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 29/34 2024-04-15T21:00:05.047 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 30/34 2024-04-15T21:00:05.121 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 30/34 2024-04-15T21:00:05.121 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-15T21:00:05.121 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-15T21:00:05.121 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:05.165 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-selinux-2:19.0.0-3084.g87dbfb63.el9.x86_64 31/34 2024-04-15T21:00:05.176 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-15T21:00:05.219 INFO:teuthology.orchestra.run.smithi151.stdout: Upgrading : librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 7/34 2024-04-15T21:00:05.319 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 7/34 2024-04-15T21:00:05.384 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-15T21:00:05.408 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-rados-2:19.0.0-3084.g87dbfb63.el9.x86_64 8/34 2024-04-15T21:00:05.411 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : librgw2-2:19.0.0-3084.g87dbfb63.el9.x86_64 26/34 2024-04-15T21:00:05.437 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 9/34 2024-04-15T21:00:05.482 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: librgw2-2:19.0.0-3084.g87dbfb63.el9.x86_64 26/34 2024-04-15T21:00:05.499 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 9/34 2024-04-15T21:00:05.528 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-15T21:00:05.552 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-rgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 27/34 2024-04-15T21:00:05.581 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-ceph-common-2:19.0.0-3084.g87dbfb63.el9.x8 28/34 2024-04-15T21:00:05.581 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-ceph-argparse-2:19.0.0-3084.g87dbfb63.el9. 11/34 2024-04-15T21:00:05.659 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-cephfs-2:19.0.0-3084.g87dbfb63.el9.x86_64 12/34 2024-04-15T21:00:05.681 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libradosstriper1-2:19.0.0-3084.g87dbfb63.el9.x86_6 13/34 2024-04-15T21:00:05.728 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: libradosstriper1-2:19.0.0-3084.g87dbfb63.el9.x86_6 13/34 2024-04-15T21:00:05.771 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-15T21:00:05.878 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-15T21:00:05.914 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-15T21:00:05.954 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-15T21:00:05.987 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-15T21:00:06.016 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-15T21:00:06.048 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-15T21:00:06.361 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-15T21:00:06.395 INFO:teuthology.orchestra.run.smithi151.stdout: Upgrading : librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 22/34 2024-04-15T21:00:06.486 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 22/34 2024-04-15T21:00:06.525 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-rbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 23/34 2024-04-15T21:00:06.575 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-15T21:00:07.061 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-15T21:00:07.089 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : librgw2-2:19.0.0-3084.g87dbfb63.el9.x86_64 26/34 2024-04-15T21:00:07.160 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: librgw2-2:19.0.0-3084.g87dbfb63.el9.x86_64 26/34 2024-04-15T21:00:07.229 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-rgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 27/34 2024-04-15T21:00:07.258 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-ceph-common-2:19.0.0-3084.g87dbfb63.el9.x8 28/34 2024-04-15T21:00:07.995 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 29/34 2024-04-15T21:00:08.035 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 29/34 2024-04-15T21:00:08.617 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 29/34 2024-04-15T21:00:08.656 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 30/34 2024-04-15T21:00:08.753 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 30/34 2024-04-15T21:00:08.753 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-15T21:00:08.753 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-15T21:00:08.753 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:08.791 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-selinux-2:19.0.0-3084.g87dbfb63.el9.x86_64 31/34 2024-04-15T21:00:09.553 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 29/34 2024-04-15T21:00:09.588 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 29/34 2024-04-15T21:00:10.139 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 29/34 2024-04-15T21:00:10.182 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 30/34 2024-04-15T21:00:10.267 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 30/34 2024-04-15T21:00:10.267 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-15T21:00:10.267 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-15T21:00:10.268 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:10.309 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-selinux-2:19.0.0-3084.g87dbfb63.el9.x86_64 31/34 2024-04-15T21:00:14.841 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-selinux-2:19.0.0-3084.g87dbfb63.el9.x86_64 31/34 2024-04-15T21:00:14.841 INFO:teuthology.orchestra.run.smithi174.stdout:skipping the directory /sys 2024-04-15T21:00:14.841 INFO:teuthology.orchestra.run.smithi174.stdout:skipping the directory /proc 2024-04-15T21:00:14.842 INFO:teuthology.orchestra.run.smithi174.stdout:skipping the directory /mnt 2024-04-15T21:00:14.842 INFO:teuthology.orchestra.run.smithi174.stdout:skipping the directory /var/tmp 2024-04-15T21:00:14.842 INFO:teuthology.orchestra.run.smithi174.stdout:skipping the directory /home 2024-04-15T21:00:14.842 INFO:teuthology.orchestra.run.smithi174.stdout:skipping the directory /root 2024-04-15T21:00:14.842 INFO:teuthology.orchestra.run.smithi174.stdout:skipping the directory /tmp 2024-04-15T21:00:14.842 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:15.812 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-radosgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 32/34 2024-04-15T21:00:15.839 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 32/34 2024-04-15T21:00:15.839 INFO:teuthology.orchestra.run.smithi174.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:15.839 INFO:teuthology.orchestra.run.smithi174.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-15T21:00:15.839 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:00:15.840 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:00:15.840 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:15.841 INFO:teuthology.orchestra.run.smithi174.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T21:00:15.931 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T21:00:15.931 INFO:teuthology.orchestra.run.smithi174.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T21:00:17.035 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T21:00:17.035 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/34 2024-04-15T21:00:17.035 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/34 2024-04-15T21:00:17.035 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-radosgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 3/34 2024-04-15T21:00:17.035 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-selinux-2:19.0.0-3084.g87dbfb63.el9.x86_64 4/34 2024-04-15T21:00:17.035 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 5/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : libradosstriper1-2:19.0.0-3084.g87dbfb63.el9.x86_6 6/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : librgw2-2:19.0.0-3084.g87dbfb63.el9.x86_64 7/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-ceph-argparse-2:19.0.0-3084.g87dbfb63.el9. 8/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-ceph-common-2:19.0.0-3084.g87dbfb63.el9.x8 9/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-cephfs-2:19.0.0-3084.g87dbfb63.el9.x86_64 10/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-rados-2:19.0.0-3084.g87dbfb63.el9.x86_64 11/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-rbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 12/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-rgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 13/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-15T21:00:17.036 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-15T21:00:17.037 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-15T21:00:17.037 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-15T21:00:17.037 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-15T21:00:17.037 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-15T21:00:17.037 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-15T21:00:17.037 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-15T21:00:17.037 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-15T21:00:17.037 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-15T21:00:17.037 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-15T21:00:17.037 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-15T21:00:17.037 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-15T21:00:17.037 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 31/34 2024-04-15T21:00:17.038 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-15T21:00:17.038 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 33/34 2024-04-15T21:00:17.963 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T21:00:17.963 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:17.964 INFO:teuthology.orchestra.run.smithi174.stdout:Upgraded: 2024-04-15T21:00:17.964 INFO:teuthology.orchestra.run.smithi174.stdout: librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.964 INFO:teuthology.orchestra.run.smithi174.stdout: librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.964 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:00:17.964 INFO:teuthology.orchestra.run.smithi174.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-15T21:00:17.964 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.964 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.964 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-radosgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.964 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-selinux-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.964 INFO:teuthology.orchestra.run.smithi174.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-15T21:00:17.964 INFO:teuthology.orchestra.run.smithi174.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-15T21:00:17.964 INFO:teuthology.orchestra.run.smithi174.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: libradosstriper1-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: librgw2-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: python3-ceph-argparse-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: python3-ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: python3-cephfs-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-15T21:00:17.965 INFO:teuthology.orchestra.run.smithi174.stdout: python3-rados-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.966 INFO:teuthology.orchestra.run.smithi174.stdout: python3-rbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.966 INFO:teuthology.orchestra.run.smithi174.stdout: python3-rgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:17.966 INFO:teuthology.orchestra.run.smithi174.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-15T21:00:17.966 INFO:teuthology.orchestra.run.smithi174.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-15T21:00:17.966 INFO:teuthology.orchestra.run.smithi174.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-15T21:00:17.966 INFO:teuthology.orchestra.run.smithi174.stdout: re2-1:20211101-3.el9.x86_64 2024-04-15T21:00:17.966 INFO:teuthology.orchestra.run.smithi174.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-15T21:00:17.966 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:17.966 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:00:18.224 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install ceph-test 2024-04-15T21:00:18.799 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:00:29 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:00:18.950 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:00:18.951 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:00:18.951 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repository Size 2024-04-15T21:00:18.951 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:00:18.951 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:00:18.952 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-test x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 49 M 2024-04-15T21:00:18.952 INFO:teuthology.orchestra.run.smithi174.stdout:Installing dependencies: 2024-04-15T21:00:18.952 INFO:teuthology.orchestra.run.smithi174.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-15T21:00:18.952 INFO:teuthology.orchestra.run.smithi174.stdout: libcephsqlite x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 163 k 2024-04-15T21:00:18.952 INFO:teuthology.orchestra.run.smithi174.stdout: oniguruma x86_64 6.9.6-1.el9.5 CentOS-AppStream 217 k 2024-04-15T21:00:18.952 INFO:teuthology.orchestra.run.smithi174.stdout: socat x86_64 1.7.4.1-5.el9 CentOS-AppStream 300 k 2024-04-15T21:00:18.952 INFO:teuthology.orchestra.run.smithi174.stdout: xmlstarlet x86_64 1.6.1-20.el9 CentOS-AppStream 63 k 2024-04-15T21:00:18.952 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:18.952 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:00:18.952 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:00:18.952 INFO:teuthology.orchestra.run.smithi174.stdout:Install 6 Packages 2024-04-15T21:00:18.952 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:18.953 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 50 M 2024-04-15T21:00:18.953 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 212 M 2024-04-15T21:00:18.953 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:00:19.006 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-selinux-2:19.0.0-3084.g87dbfb63.el9.x86_64 31/34 2024-04-15T21:00:19.007 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /sys 2024-04-15T21:00:19.007 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /proc 2024-04-15T21:00:19.007 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /mnt 2024-04-15T21:00:19.007 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /var/tmp 2024-04-15T21:00:19.007 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /home 2024-04-15T21:00:19.007 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /root 2024-04-15T21:00:19.007 INFO:teuthology.orchestra.run.smithi050.stdout:skipping the directory /tmp 2024-04-15T21:00:19.007 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:19.459 INFO:teuthology.orchestra.run.smithi174.stdout:(1/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 1.0 MB/s | 217 kB 00:00 2024-04-15T21:00:19.517 INFO:teuthology.orchestra.run.smithi174.stdout:(2/6): socat-1.7.4.1-5.el9.x86_64.rpm 5.0 MB/s | 300 kB 00:00 2024-04-15T21:00:19.559 INFO:teuthology.orchestra.run.smithi174.stdout:(3/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.5 MB/s | 63 kB 00:00 2024-04-15T21:00:19.693 INFO:teuthology.orchestra.run.smithi174.stdout:(4/6): jq-1.6-16.el9.x86_64.rpm 1.4 MB/s | 187 kB 00:00 2024-04-15T21:00:19.718 INFO:teuthology.orchestra.run.smithi174.stdout:(5/6): libcephsqlite-19.0.0-3084.g87dbfb63.el9. 352 kB/s | 163 kB 00:00 2024-04-15T21:00:20.018 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-radosgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 32/34 2024-04-15T21:00:20.043 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 32/34 2024-04-15T21:00:20.043 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:20.043 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-15T21:00:20.043 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:00:20.043 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:00:20.043 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:20.046 INFO:teuthology.orchestra.run.smithi050.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T21:00:20.112 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T21:00:20.112 INFO:teuthology.orchestra.run.smithi050.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T21:00:20.115 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-selinux-2:19.0.0-3084.g87dbfb63.el9.x86_64 31/34 2024-04-15T21:00:20.115 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /sys 2024-04-15T21:00:20.115 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /proc 2024-04-15T21:00:20.115 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /mnt 2024-04-15T21:00:20.115 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /var/tmp 2024-04-15T21:00:20.115 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /home 2024-04-15T21:00:20.116 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /root 2024-04-15T21:00:20.116 INFO:teuthology.orchestra.run.smithi151.stdout:skipping the directory /tmp 2024-04-15T21:00:20.116 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:21.104 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-radosgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 32/34 2024-04-15T21:00:21.129 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 32/34 2024-04-15T21:00:21.129 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:21.129 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-15T21:00:21.129 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:00:21.130 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T21:00:21.130 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:21.131 INFO:teuthology.orchestra.run.smithi151.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T21:00:21.215 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T21:00:21.215 INFO:teuthology.orchestra.run.smithi151.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T21:00:21.313 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T21:00:21.313 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/34 2024-04-15T21:00:21.314 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/34 2024-04-15T21:00:21.314 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-radosgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 3/34 2024-04-15T21:00:21.314 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-selinux-2:19.0.0-3084.g87dbfb63.el9.x86_64 4/34 2024-04-15T21:00:21.314 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 5/34 2024-04-15T21:00:21.314 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libradosstriper1-2:19.0.0-3084.g87dbfb63.el9.x86_6 6/34 2024-04-15T21:00:21.314 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librgw2-2:19.0.0-3084.g87dbfb63.el9.x86_64 7/34 2024-04-15T21:00:21.314 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-ceph-argparse-2:19.0.0-3084.g87dbfb63.el9. 8/34 2024-04-15T21:00:21.314 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-ceph-common-2:19.0.0-3084.g87dbfb63.el9.x8 9/34 2024-04-15T21:00:21.314 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-cephfs-2:19.0.0-3084.g87dbfb63.el9.x86_64 10/34 2024-04-15T21:00:21.314 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-rados-2:19.0.0-3084.g87dbfb63.el9.x86_64 11/34 2024-04-15T21:00:21.314 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-rbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 12/34 2024-04-15T21:00:21.314 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-rgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 13/34 2024-04-15T21:00:21.314 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-15T21:00:21.315 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-15T21:00:21.316 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-15T21:00:21.316 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-15T21:00:21.317 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 31/34 2024-04-15T21:00:21.317 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-15T21:00:21.317 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 33/34 2024-04-15T21:00:22.344 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T21:00:22.344 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:22.344 INFO:teuthology.orchestra.run.smithi050.stdout:Upgraded: 2024-04-15T21:00:22.344 INFO:teuthology.orchestra.run.smithi050.stdout: librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.344 INFO:teuthology.orchestra.run.smithi050.stdout: librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.344 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:00:22.345 INFO:teuthology.orchestra.run.smithi050.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-15T21:00:22.345 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.345 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.345 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-radosgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.345 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-selinux-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.345 INFO:teuthology.orchestra.run.smithi050.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-15T21:00:22.345 INFO:teuthology.orchestra.run.smithi050.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-15T21:00:22.345 INFO:teuthology.orchestra.run.smithi050.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-15T21:00:22.345 INFO:teuthology.orchestra.run.smithi050.stdout: libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.345 INFO:teuthology.orchestra.run.smithi050.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-15T21:00:22.345 INFO:teuthology.orchestra.run.smithi050.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-15T21:00:22.345 INFO:teuthology.orchestra.run.smithi050.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-15T21:00:22.345 INFO:teuthology.orchestra.run.smithi050.stdout: libradosstriper1-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: librgw2-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ceph-argparse-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cephfs-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rados-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-15T21:00:22.346 INFO:teuthology.orchestra.run.smithi050.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-15T21:00:22.347 INFO:teuthology.orchestra.run.smithi050.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-15T21:00:22.347 INFO:teuthology.orchestra.run.smithi050.stdout: re2-1:20211101-3.el9.x86_64 2024-04-15T21:00:22.347 INFO:teuthology.orchestra.run.smithi050.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-15T21:00:22.347 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:22.347 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:00:22.442 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T21:00:22.442 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/34 2024-04-15T21:00:22.442 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/34 2024-04-15T21:00:22.442 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-radosgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 3/34 2024-04-15T21:00:22.442 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-selinux-2:19.0.0-3084.g87dbfb63.el9.x86_64 4/34 2024-04-15T21:00:22.442 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 5/34 2024-04-15T21:00:22.442 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libradosstriper1-2:19.0.0-3084.g87dbfb63.el9.x86_6 6/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librgw2-2:19.0.0-3084.g87dbfb63.el9.x86_64 7/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-ceph-argparse-2:19.0.0-3084.g87dbfb63.el9. 8/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-ceph-common-2:19.0.0-3084.g87dbfb63.el9.x8 9/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-cephfs-2:19.0.0-3084.g87dbfb63.el9.x86_64 10/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-rados-2:19.0.0-3084.g87dbfb63.el9.x86_64 11/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-rbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 12/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-rgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 13/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-15T21:00:22.443 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-15T21:00:22.444 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-15T21:00:22.444 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-15T21:00:22.444 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-15T21:00:22.444 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-15T21:00:22.444 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-15T21:00:22.444 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-15T21:00:22.445 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-15T21:00:22.445 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-15T21:00:22.445 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-15T21:00:22.445 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 31/34 2024-04-15T21:00:22.445 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-15T21:00:22.445 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 33/34 2024-04-15T21:00:22.668 INFO:teuthology.orchestra.run.smithi174.stdout:(6/6): ceph-test-19.0.0-3084.g87dbfb63.el9.x86_ 14 MB/s | 49 MB 00:03 2024-04-15T21:00:22.671 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:22.672 INFO:teuthology.orchestra.run.smithi174.stdout:Total 13 MB/s | 50 MB 00:03 2024-04-15T21:00:22.682 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-test 2024-04-15T21:00:22.687 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:00:22.708 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:00:22.708 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:00:23.123 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:00:23.124 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:00:23.265 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:00:32 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:00:23.425 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:00:23.426 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:00:23.426 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-04-15T21:00:23.426 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:00:23.426 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:00:23.426 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-test x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 49 M 2024-04-15T21:00:23.426 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-04-15T21:00:23.426 INFO:teuthology.orchestra.run.smithi050.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-15T21:00:23.426 INFO:teuthology.orchestra.run.smithi050.stdout: libcephsqlite x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 163 k 2024-04-15T21:00:23.426 INFO:teuthology.orchestra.run.smithi050.stdout: oniguruma x86_64 6.9.6-1.el9.5 CentOS-AppStream 217 k 2024-04-15T21:00:23.426 INFO:teuthology.orchestra.run.smithi050.stdout: socat x86_64 1.7.4.1-5.el9 CentOS-AppStream 300 k 2024-04-15T21:00:23.426 INFO:teuthology.orchestra.run.smithi050.stdout: xmlstarlet x86_64 1.6.1-20.el9 CentOS-AppStream 63 k 2024-04-15T21:00:23.426 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:23.426 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:00:23.427 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:00:23.427 INFO:teuthology.orchestra.run.smithi050.stdout:Install 6 Packages 2024-04-15T21:00:23.427 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:23.427 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 50 M 2024-04-15T21:00:23.427 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 212 M 2024-04-15T21:00:23.428 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:00:23.674 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T21:00:23.675 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:23.675 INFO:teuthology.orchestra.run.smithi151.stdout:Upgraded: 2024-04-15T21:00:23.675 INFO:teuthology.orchestra.run.smithi151.stdout: librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.675 INFO:teuthology.orchestra.run.smithi151.stdout: librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.675 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:00:23.675 INFO:teuthology.orchestra.run.smithi151.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-15T21:00:23.675 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.675 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.675 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-radosgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.675 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-selinux-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.675 INFO:teuthology.orchestra.run.smithi151.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-15T21:00:23.675 INFO:teuthology.orchestra.run.smithi151.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-15T21:00:23.675 INFO:teuthology.orchestra.run.smithi151.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: libradosstriper1-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: librgw2-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: python3-ceph-argparse-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: python3-ceph-common-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cephfs-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-15T21:00:23.676 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rados-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.677 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.677 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:23.677 INFO:teuthology.orchestra.run.smithi151.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-15T21:00:23.677 INFO:teuthology.orchestra.run.smithi151.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-15T21:00:23.677 INFO:teuthology.orchestra.run.smithi151.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-15T21:00:23.677 INFO:teuthology.orchestra.run.smithi151.stdout: re2-1:20211101-3.el9.x86_64 2024-04-15T21:00:23.677 INFO:teuthology.orchestra.run.smithi151.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-15T21:00:23.677 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:23.677 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:00:23.707 INFO:teuthology.orchestra.run.smithi050.stdout:(1/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 1.3 MB/s | 217 kB 00:00 2024-04-15T21:00:23.744 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:00:23.749 INFO:teuthology.orchestra.run.smithi050.stdout:(2/6): socat-1.7.4.1-5.el9.x86_64.rpm 7.0 MB/s | 300 kB 00:00 2024-04-15T21:00:23.782 INFO:teuthology.orchestra.run.smithi050.stdout:(3/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.9 MB/s | 63 kB 00:00 2024-04-15T21:00:23.819 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-15T21:00:23.858 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-15T21:00:23.897 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T21:00:23.916 INFO:teuthology.orchestra.run.smithi050.stdout:(4/6): libcephsqlite-19.0.0-3084.g87dbfb63.el9. 436 kB/s | 163 kB 00:00 2024-04-15T21:00:23.938 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-15T21:00:23.941 INFO:teuthology.orchestra.run.smithi050.stdout:(5/6): jq-1.6-16.el9.x86_64.rpm 1.2 MB/s | 187 kB 00:00 2024-04-15T21:00:23.963 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : libcephsqlite-2:19.0.0-3084.g87dbfb63.el9.x86_64 5/6 2024-04-15T21:00:24.057 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-test 2024-04-15T21:00:24.630 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:00:30 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:00:24.790 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:00:24.791 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:00:24.791 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-04-15T21:00:24.791 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:00:24.791 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:00:24.791 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-test x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 49 M 2024-04-15T21:00:24.791 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-04-15T21:00:24.791 INFO:teuthology.orchestra.run.smithi151.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-15T21:00:24.791 INFO:teuthology.orchestra.run.smithi151.stdout: libcephsqlite x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 163 k 2024-04-15T21:00:24.792 INFO:teuthology.orchestra.run.smithi151.stdout: oniguruma x86_64 6.9.6-1.el9.5 CentOS-AppStream 217 k 2024-04-15T21:00:24.792 INFO:teuthology.orchestra.run.smithi151.stdout: socat x86_64 1.7.4.1-5.el9 CentOS-AppStream 300 k 2024-04-15T21:00:24.792 INFO:teuthology.orchestra.run.smithi151.stdout: xmlstarlet x86_64 1.6.1-20.el9 CentOS-AppStream 63 k 2024-04-15T21:00:24.792 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:24.792 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:00:24.792 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:00:24.792 INFO:teuthology.orchestra.run.smithi151.stdout:Install 6 Packages 2024-04-15T21:00:24.792 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:24.793 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 50 M 2024-04-15T21:00:24.793 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 212 M 2024-04-15T21:00:24.793 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:00:25.382 INFO:teuthology.orchestra.run.smithi151.stdout:(1/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 680 kB/s | 217 kB 00:00 2024-04-15T21:00:25.507 INFO:teuthology.orchestra.run.smithi151.stdout:(2/6): socat-1.7.4.1-5.el9.x86_64.rpm 2.3 MB/s | 300 kB 00:00 2024-04-15T21:00:25.590 INFO:teuthology.orchestra.run.smithi151.stdout:(3/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 751 kB/s | 63 kB 00:00 2024-04-15T21:00:25.724 INFO:teuthology.orchestra.run.smithi151.stdout:(4/6): jq-1.6-16.el9.x86_64.rpm 1.4 MB/s | 187 kB 00:00 2024-04-15T21:00:25.775 INFO:teuthology.orchestra.run.smithi151.stdout:(5/6): libcephsqlite-19.0.0-3084.g87dbfb63.el9. 229 kB/s | 163 kB 00:00 2024-04-15T21:00:26.166 INFO:teuthology.orchestra.run.smithi050.stdout:(6/6): ceph-test-19.0.0-3084.g87dbfb63.el9.x86_ 19 MB/s | 49 MB 00:02 2024-04-15T21:00:26.169 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:26.169 INFO:teuthology.orchestra.run.smithi050.stdout:Total 18 MB/s | 50 MB 00:02 2024-04-15T21:00:26.184 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:00:26.208 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:00:26.208 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:00:26.617 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:00:26.617 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:00:27.210 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:00:27.285 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-15T21:00:27.328 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-15T21:00:27.360 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T21:00:27.412 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-15T21:00:27.436 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libcephsqlite-2:19.0.0-3084.g87dbfb63.el9.x86_64 5/6 2024-04-15T21:00:27.892 INFO:teuthology.orchestra.run.smithi151.stdout:(6/6): ceph-test-19.0.0-3084.g87dbfb63.el9.x86_ 17 MB/s | 49 MB 00:02 2024-04-15T21:00:27.895 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:27.895 INFO:teuthology.orchestra.run.smithi151.stdout:Total 16 MB/s | 50 MB 00:03 2024-04-15T21:00:27.911 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:00:27.933 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:00:27.933 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:00:28.321 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:00:28.321 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:00:28.610 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: libcephsqlite-2:19.0.0-3084.g87dbfb63.el9.x86_64 5/6 2024-04-15T21:00:28.687 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-test-2:19.0.0-3084.g87dbfb63.el9.x86_64 6/6 2024-04-15T21:00:28.908 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:00:28.983 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-15T21:00:29.032 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-15T21:00:29.075 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T21:00:29.130 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-15T21:00:29.154 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libcephsqlite-2:19.0.0-3084.g87dbfb63.el9.x86_64 5/6 2024-04-15T21:00:31.218 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-test-2:19.0.0-3084.g87dbfb63.el9.x86_64 6/6 2024-04-15T21:00:31.218 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-test-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/6 2024-04-15T21:00:31.218 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : libcephsqlite-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/6 2024-04-15T21:00:31.218 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T21:00:31.218 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 4/6 2024-04-15T21:00:31.218 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/6 2024-04-15T21:00:31.638 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : jq-1.6-16.el9.x86_64 6/6 2024-04-15T21:00:31.638 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:31.638 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:00:31.638 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-test-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:31.638 INFO:teuthology.orchestra.run.smithi174.stdout: jq-1.6-16.el9.x86_64 2024-04-15T21:00:31.639 INFO:teuthology.orchestra.run.smithi174.stdout: libcephsqlite-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:31.639 INFO:teuthology.orchestra.run.smithi174.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-15T21:00:31.639 INFO:teuthology.orchestra.run.smithi174.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-15T21:00:31.639 INFO:teuthology.orchestra.run.smithi174.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-15T21:00:31.639 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:31.639 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:00:31.902 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install ceph 2024-04-15T21:00:32.351 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: libcephsqlite-2:19.0.0-3084.g87dbfb63.el9.x86_64 5/6 2024-04-15T21:00:32.431 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-test-2:19.0.0-3084.g87dbfb63.el9.x86_64 6/6 2024-04-15T21:00:32.484 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:00:43 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:00:32.650 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:00:32.654 INFO:teuthology.orchestra.run.smithi174.stdout:========================================================================================= 2024-04-15T21:00:32.654 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repository Size 2024-04-15T21:00:32.654 INFO:teuthology.orchestra.run.smithi174.stdout:========================================================================================= 2024-04-15T21:00:32.654 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:00:32.654 INFO:teuthology.orchestra.run.smithi174.stdout: ceph x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 6.6 k 2024-04-15T21:00:32.654 INFO:teuthology.orchestra.run.smithi174.stdout:Installing dependencies: 2024-04-15T21:00:32.654 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mds x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 2.4 M 2024-04-15T21:00:32.654 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mgr x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 1.5 M 2024-04-15T21:00:32.654 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mgr-modules-core noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 249 k 2024-04-15T21:00:32.654 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mon x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 4.7 M 2024-04-15T21:00:32.655 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-osd x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 17 M 2024-04-15T21:00:32.655 INFO:teuthology.orchestra.run.smithi174.stdout: lua x86_64 5.4.4-4.el9 CentOS-AppStream 187 k 2024-04-15T21:00:32.655 INFO:teuthology.orchestra.run.smithi174.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-15T21:00:32.655 INFO:teuthology.orchestra.run.smithi174.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-15T21:00:32.655 INFO:teuthology.orchestra.run.smithi174.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-15T21:00:32.655 INFO:teuthology.orchestra.run.smithi174.stdout: python3-cffi x86_64 1.14.5-5.el9 CentOS-BaseOS 241 k 2024-04-15T21:00:32.655 INFO:teuthology.orchestra.run.smithi174.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-15T21:00:32.655 INFO:teuthology.orchestra.run.smithi174.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-15T21:00:32.655 INFO:teuthology.orchestra.run.smithi174.stdout: python3-cryptography x86_64 36.0.1-4.el9 CentOS-BaseOS 1.1 M 2024-04-15T21:00:32.655 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-15T21:00:32.655 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-15T21:00:32.655 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-04-15T21:00:32.655 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-15T21:00:32.656 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-15T21:00:32.656 INFO:teuthology.orchestra.run.smithi174.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-15T21:00:32.656 INFO:teuthology.orchestra.run.smithi174.stdout: python3-mako noarch 1.1.4-6.el9 CentOS-AppStream 144 k 2024-04-15T21:00:32.656 INFO:teuthology.orchestra.run.smithi174.stdout: python3-markupsafe x86_64 1.1.1-12.el9 CentOS-AppStream 32 k 2024-04-15T21:00:32.656 INFO:teuthology.orchestra.run.smithi174.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-15T21:00:32.656 INFO:teuthology.orchestra.run.smithi174.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-15T21:00:32.656 INFO:teuthology.orchestra.run.smithi174.stdout: python3-ply noarch 3.11-14.el9 CentOS-BaseOS 103 k 2024-04-15T21:00:32.656 INFO:teuthology.orchestra.run.smithi174.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-15T21:00:32.656 INFO:teuthology.orchestra.run.smithi174.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-15T21:00:32.656 INFO:teuthology.orchestra.run.smithi174.stdout: python3-pycparser noarch 2.20-6.el9 CentOS-BaseOS 124 k 2024-04-15T21:00:32.656 INFO:teuthology.orchestra.run.smithi174.stdout: python3-pytz noarch 2021.1-5.el9 CentOS-AppStream 47 k 2024-04-15T21:00:32.656 INFO:teuthology.orchestra.run.smithi174.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-15T21:00:32.656 INFO:teuthology.orchestra.run.smithi174.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-15T21:00:32.657 INFO:teuthology.orchestra.run.smithi174.stdout: python3-toml noarch 0.10.2-6.el9 CentOS-AppStream 39 k 2024-04-15T21:00:32.657 INFO:teuthology.orchestra.run.smithi174.stdout: python3-urllib3 noarch 1.26.5-5.el9 CentOS-BaseOS 187 k 2024-04-15T21:00:32.657 INFO:teuthology.orchestra.run.smithi174.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-15T21:00:32.657 INFO:teuthology.orchestra.run.smithi174.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-15T21:00:32.657 INFO:teuthology.orchestra.run.smithi174.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-15T21:00:32.657 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:32.657 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:00:32.657 INFO:teuthology.orchestra.run.smithi174.stdout:========================================================================================= 2024-04-15T21:00:32.657 INFO:teuthology.orchestra.run.smithi174.stdout:Install 36 Packages 2024-04-15T21:00:32.657 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:32.658 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 30 M 2024-04-15T21:00:32.658 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 107 M 2024-04-15T21:00:32.658 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:00:33.286 INFO:teuthology.orchestra.run.smithi174.stdout:(1/36): ceph-19.0.0-3084.g87dbfb63.el9.x86_64.r 37 kB/s | 6.6 kB 00:00 2024-04-15T21:00:33.445 INFO:teuthology.orchestra.run.smithi174.stdout:(2/36): ceph-mgr-19.0.0-3084.g87dbfb63.el9.x86_ 4.5 MB/s | 1.5 MB 00:00 2024-04-15T21:00:33.912 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: libcephsqlite-2:19.0.0-3084.g87dbfb63.el9.x86_64 5/6 2024-04-15T21:00:33.996 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-test-2:19.0.0-3084.g87dbfb63.el9.x86_64 6/6 2024-04-15T21:00:34.470 INFO:teuthology.orchestra.run.smithi174.stdout:(3/36): ceph-osd-19.0.0-3084.g87dbfb63.el9.x86_ 16 MB/s | 17 MB 00:01 2024-04-15T21:00:34.520 INFO:teuthology.orchestra.run.smithi174.stdout:(4/36): ceph-mgr-modules-core-19.0.0-3084.g87db 4.9 MB/s | 249 kB 00:00 2024-04-15T21:00:34.721 INFO:teuthology.orchestra.run.smithi174.stdout:(5/36): ceph-mon-19.0.0-3084.g87dbfb63.el9.x86_ 3.3 MB/s | 4.7 MB 00:01 2024-04-15T21:00:34.837 INFO:teuthology.orchestra.run.smithi174.stdout:(6/36): lua-5.4.4-4.el9.x86_64.rpm 589 kB/s | 187 kB 00:00 2024-04-15T21:00:34.908 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-test-2:19.0.0-3084.g87dbfb63.el9.x86_64 6/6 2024-04-15T21:00:34.908 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-test-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/6 2024-04-15T21:00:34.908 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libcephsqlite-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/6 2024-04-15T21:00:34.908 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T21:00:34.908 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 4/6 2024-04-15T21:00:34.908 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/6 2024-04-15T21:00:34.913 INFO:teuthology.orchestra.run.smithi174.stdout:(7/36): python3-mako-1.1.4-6.el9.noarch.rpm 753 kB/s | 144 kB 00:00 2024-04-15T21:00:34.930 INFO:teuthology.orchestra.run.smithi174.stdout:(8/36): python3-markupsafe-1.1.1-12.el9.x86_64. 343 kB/s | 32 kB 00:00 2024-04-15T21:00:34.955 INFO:teuthology.orchestra.run.smithi174.stdout:(9/36): python3-pytz-2021.1-5.el9.noarch.rpm 1.1 MB/s | 47 kB 00:00 2024-04-15T21:00:34.980 INFO:teuthology.orchestra.run.smithi174.stdout:(10/36): python3-toml-0.10.2-6.el9.noarch.rpm 773 kB/s | 39 kB 00:00 2024-04-15T21:00:35.089 INFO:teuthology.orchestra.run.smithi174.stdout:(11/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.8 MB/s | 241 kB 00:00 2024-04-15T21:00:35.147 INFO:teuthology.orchestra.run.smithi174.stdout:(12/36): ceph-mds-19.0.0-3084.g87dbfb63.el9.x86 1.2 MB/s | 2.4 MB 00:02 2024-04-15T21:00:35.344 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : jq-1.6-16.el9.x86_64 6/6 2024-04-15T21:00:35.344 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:35.344 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:00:35.345 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-test-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:35.345 INFO:teuthology.orchestra.run.smithi050.stdout: jq-1.6-16.el9.x86_64 2024-04-15T21:00:35.345 INFO:teuthology.orchestra.run.smithi050.stdout: libcephsqlite-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:35.345 INFO:teuthology.orchestra.run.smithi050.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-15T21:00:35.345 INFO:teuthology.orchestra.run.smithi050.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-15T21:00:35.345 INFO:teuthology.orchestra.run.smithi050.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-15T21:00:35.345 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:35.345 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:00:35.556 INFO:teuthology.orchestra.run.smithi174.stdout:(13/36): python3-cryptography-36.0.1-4.el9.x86_ 2.0 MB/s | 1.1 MB 00:00 2024-04-15T21:00:35.581 INFO:teuthology.orchestra.run.smithi174.stdout:(14/36): python3-ply-3.11-14.el9.noarch.rpm 209 kB/s | 103 kB 00:00 2024-04-15T21:00:35.601 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph 2024-04-15T21:00:35.640 INFO:teuthology.orchestra.run.smithi174.stdout:(15/36): python3-pycparser-2.20-6.el9.noarch.rp 252 kB/s | 124 kB 00:00 2024-04-15T21:00:35.698 INFO:teuthology.orchestra.run.smithi174.stdout:(16/36): python3-urllib3-1.26.5-5.el9.noarch.rp 1.3 MB/s | 187 kB 00:00 2024-04-15T21:00:35.890 INFO:teuthology.orchestra.run.smithi174.stdout:(17/36): lua-devel-5.4.4-4.el9.x86_64.rpm 89 kB/s | 22 kB 00:00 2024-04-15T21:00:36.074 INFO:teuthology.orchestra.run.smithi174.stdout:(18/36): python3-requests-2.25.1-8.el9.noarch.r 253 kB/s | 125 kB 00:00 2024-04-15T21:00:36.141 INFO:teuthology.orchestra.run.smithi174.stdout:(19/36): luarocks-3.9.2-1.el9.noarch.rpm 342 kB/s | 151 kB 00:00 2024-04-15T21:00:36.158 INFO:teuthology.orchestra.run.smithi174.stdout:(20/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 163 kB/s | 43 kB 00:00 2024-04-15T21:00:36.183 INFO:teuthology.orchestra.run.smithi174.stdout:(21/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.5 MB/s | 172 kB 00:00 2024-04-15T21:00:36.190 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:00:45 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:00:36.242 INFO:teuthology.orchestra.run.smithi174.stdout:(22/36): python3-cherrypy-18.6.1-2.el9.noarch.r 3.5 MB/s | 358 kB 00:00 2024-04-15T21:00:36.258 INFO:teuthology.orchestra.run.smithi174.stdout:(23/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 107 kB/s | 11 kB 00:00 2024-04-15T21:00:36.275 INFO:teuthology.orchestra.run.smithi174.stdout:(24/36): python3-jaraco-classes-3.2.1-5.el9.noa 193 kB/s | 18 kB 00:00 2024-04-15T21:00:36.317 INFO:teuthology.orchestra.run.smithi174.stdout:(25/36): python3-jaraco-collections-3.0.0-8.el9 397 kB/s | 23 kB 00:00 2024-04-15T21:00:36.334 INFO:teuthology.orchestra.run.smithi174.stdout:(26/36): python3-jaraco-functools-3.5.0-2.el9.n 260 kB/s | 19 kB 00:00 2024-04-15T21:00:36.349 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:00:36.351 INFO:teuthology.orchestra.run.smithi174.stdout:(27/36): python3-jaraco-text-3.2.0-6.el9.noarch 260 kB/s | 20 kB 00:00 2024-04-15T21:00:36.352 INFO:teuthology.orchestra.run.smithi050.stdout:========================================================================================= 2024-04-15T21:00:36.352 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-04-15T21:00:36.352 INFO:teuthology.orchestra.run.smithi050.stdout:========================================================================================= 2024-04-15T21:00:36.352 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:00:36.352 INFO:teuthology.orchestra.run.smithi050.stdout: ceph x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 6.6 k 2024-04-15T21:00:36.352 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-04-15T21:00:36.352 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mds x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 2.4 M 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 1.5 M 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-modules-core noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 249 k 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mon x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 4.7 M 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-osd x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 17 M 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: lua x86_64 5.4.4-4.el9 CentOS-AppStream 187 k 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cffi x86_64 1.14.5-5.el9 CentOS-BaseOS 241 k 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cryptography x86_64 36.0.1-4.el9 CentOS-BaseOS 1.1 M 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-15T21:00:36.353 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-mako noarch 1.1.4-6.el9 CentOS-AppStream 144 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-markupsafe x86_64 1.1.1-12.el9 CentOS-AppStream 32 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ply noarch 3.11-14.el9 CentOS-BaseOS 103 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pycparser noarch 2.20-6.el9 CentOS-BaseOS 124 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pytz noarch 2021.1-5.el9 CentOS-AppStream 47 k 2024-04-15T21:00:36.354 INFO:teuthology.orchestra.run.smithi050.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-15T21:00:36.355 INFO:teuthology.orchestra.run.smithi050.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-15T21:00:36.355 INFO:teuthology.orchestra.run.smithi050.stdout: python3-toml noarch 0.10.2-6.el9 CentOS-AppStream 39 k 2024-04-15T21:00:36.355 INFO:teuthology.orchestra.run.smithi050.stdout: python3-urllib3 noarch 1.26.5-5.el9 CentOS-BaseOS 187 k 2024-04-15T21:00:36.355 INFO:teuthology.orchestra.run.smithi050.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-15T21:00:36.355 INFO:teuthology.orchestra.run.smithi050.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-15T21:00:36.355 INFO:teuthology.orchestra.run.smithi050.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-15T21:00:36.355 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:36.355 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:00:36.355 INFO:teuthology.orchestra.run.smithi050.stdout:========================================================================================= 2024-04-15T21:00:36.355 INFO:teuthology.orchestra.run.smithi050.stdout:Install 36 Packages 2024-04-15T21:00:36.355 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:36.356 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 30 M 2024-04-15T21:00:36.356 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 107 M 2024-04-15T21:00:36.356 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:00:36.393 INFO:teuthology.orchestra.run.smithi174.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 794 kB/s | 46 kB 00:00 2024-04-15T21:00:36.418 INFO:teuthology.orchestra.run.smithi174.stdout:(29/36): python3-more-itertools-8.12.0-2.el9.no 944 kB/s | 79 kB 00:00 2024-04-15T21:00:36.444 INFO:teuthology.orchestra.run.smithi174.stdout:(30/36): python3-pecan-1.4.2-3.el9.noarch.rpm 2.9 MB/s | 272 kB 00:00 2024-04-15T21:00:36.460 INFO:teuthology.orchestra.run.smithi174.stdout:(31/36): python3-portend-3.1.0-2.el9.noarch.rpm 246 kB/s | 16 kB 00:00 2024-04-15T21:00:36.486 INFO:teuthology.orchestra.run.smithi174.stdout:(32/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.3 MB/s | 90 kB 00:00 2024-04-15T21:00:36.502 INFO:teuthology.orchestra.run.smithi174.stdout:(33/36): python3-tempora-5.0.0-2.el9.noarch.rpm 609 kB/s | 36 kB 00:00 2024-04-15T21:00:36.528 INFO:teuthology.orchestra.run.smithi174.stdout:(34/36): python3-webob-1.8.7-6.el9.noarch.rpm 3.3 MB/s | 230 kB 00:00 2024-04-15T21:00:36.595 INFO:teuthology.orchestra.run.smithi174.stdout:(35/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.8 MB/s | 427 kB 00:00 2024-04-15T21:00:36.618 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-test-2:19.0.0-3084.g87dbfb63.el9.x86_64 6/6 2024-04-15T21:00:36.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-test-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/6 2024-04-15T21:00:36.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libcephsqlite-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/6 2024-04-15T21:00:36.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T21:00:36.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 4/6 2024-04-15T21:00:36.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/6 2024-04-15T21:00:36.620 INFO:teuthology.orchestra.run.smithi174.stdout:(36/36): python3-zc-lockfile-2.0-10.el9.noarch. 171 kB/s | 20 kB 00:00 2024-04-15T21:00:36.625 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:36.625 INFO:teuthology.orchestra.run.smithi174.stdout:Total 7.6 MB/s | 30 MB 00:03 2024-04-15T21:00:36.651 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:00:36.694 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:00:36.694 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:00:37.086 INFO:teuthology.orchestra.run.smithi050.stdout:(1/36): ceph-19.0.0-3084.g87dbfb63.el9.x86_64.r 31 kB/s | 6.6 kB 00:00 2024-04-15T21:00:37.099 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : jq-1.6-16.el9.x86_64 6/6 2024-04-15T21:00:37.099 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:37.099 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:00:37.099 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-test-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:37.099 INFO:teuthology.orchestra.run.smithi151.stdout: jq-1.6-16.el9.x86_64 2024-04-15T21:00:37.099 INFO:teuthology.orchestra.run.smithi151.stdout: libcephsqlite-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:37.099 INFO:teuthology.orchestra.run.smithi151.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-15T21:00:37.099 INFO:teuthology.orchestra.run.smithi151.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-15T21:00:37.099 INFO:teuthology.orchestra.run.smithi151.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-15T21:00:37.099 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:37.099 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:00:37.116 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:00:37.116 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:00:37.366 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph 2024-04-15T21:00:37.595 INFO:teuthology.orchestra.run.smithi050.stdout:(2/36): ceph-mgr-19.0.0-3084.g87dbfb63.el9.x86_ 2.1 MB/s | 1.5 MB 00:00 2024-04-15T21:00:37.720 INFO:teuthology.orchestra.run.smithi050.stdout:(3/36): ceph-mds-19.0.0-3084.g87dbfb63.el9.x86_ 2.8 MB/s | 2.4 MB 00:00 2024-04-15T21:00:37.837 INFO:teuthology.orchestra.run.smithi050.stdout:(4/36): ceph-mgr-modules-core-19.0.0-3084.g87db 2.1 MB/s | 249 kB 00:00 2024-04-15T21:00:37.948 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:00:43 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:00:37.962 INFO:teuthology.orchestra.run.smithi050.stdout:(5/36): lua-5.4.4-4.el9.x86_64.rpm 1.5 MB/s | 187 kB 00:00 2024-04-15T21:00:38.012 INFO:teuthology.orchestra.run.smithi050.stdout:(6/36): python3-mako-1.1.4-6.el9.noarch.rpm 2.8 MB/s | 144 kB 00:00 2024-04-15T21:00:38.046 INFO:teuthology.orchestra.run.smithi050.stdout:(7/36): python3-markupsafe-1.1.1-12.el9.x86_64. 945 kB/s | 32 kB 00:00 2024-04-15T21:00:38.080 INFO:teuthology.orchestra.run.smithi050.stdout:(8/36): python3-pytz-2021.1-5.el9.noarch.rpm 1.4 MB/s | 47 kB 00:00 2024-04-15T21:00:38.104 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:00:38.106 INFO:teuthology.orchestra.run.smithi151.stdout:========================================================================================= 2024-04-15T21:00:38.106 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-04-15T21:00:38.106 INFO:teuthology.orchestra.run.smithi151.stdout:========================================================================================= 2024-04-15T21:00:38.106 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:00:38.106 INFO:teuthology.orchestra.run.smithi151.stdout: ceph x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 6.6 k 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mds x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 2.4 M 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 1.5 M 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-modules-core noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 249 k 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mon x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 4.7 M 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-osd x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 17 M 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout: lua x86_64 5.4.4-4.el9 CentOS-AppStream 187 k 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cffi x86_64 1.14.5-5.el9 CentOS-BaseOS 241 k 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-15T21:00:38.107 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cryptography x86_64 36.0.1-4.el9 CentOS-BaseOS 1.1 M 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-mako noarch 1.1.4-6.el9 CentOS-AppStream 144 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-markupsafe x86_64 1.1.1-12.el9 CentOS-AppStream 32 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-ply noarch 3.11-14.el9 CentOS-BaseOS 103 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pycparser noarch 2.20-6.el9 CentOS-BaseOS 124 k 2024-04-15T21:00:38.108 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pytz noarch 2021.1-5.el9 CentOS-AppStream 47 k 2024-04-15T21:00:38.109 INFO:teuthology.orchestra.run.smithi151.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-15T21:00:38.109 INFO:teuthology.orchestra.run.smithi151.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-15T21:00:38.109 INFO:teuthology.orchestra.run.smithi151.stdout: python3-toml noarch 0.10.2-6.el9 CentOS-AppStream 39 k 2024-04-15T21:00:38.109 INFO:teuthology.orchestra.run.smithi151.stdout: python3-urllib3 noarch 1.26.5-5.el9 CentOS-BaseOS 187 k 2024-04-15T21:00:38.109 INFO:teuthology.orchestra.run.smithi151.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-15T21:00:38.109 INFO:teuthology.orchestra.run.smithi151.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-15T21:00:38.109 INFO:teuthology.orchestra.run.smithi151.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-15T21:00:38.109 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:38.109 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:00:38.109 INFO:teuthology.orchestra.run.smithi151.stdout:========================================================================================= 2024-04-15T21:00:38.109 INFO:teuthology.orchestra.run.smithi151.stdout:Install 36 Packages 2024-04-15T21:00:38.109 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:38.110 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 30 M 2024-04-15T21:00:38.110 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 107 M 2024-04-15T21:00:38.110 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:00:38.113 INFO:teuthology.orchestra.run.smithi050.stdout:(9/36): python3-toml-0.10.2-6.el9.noarch.rpm 1.1 MB/s | 39 kB 00:00 2024-04-15T21:00:38.189 INFO:teuthology.orchestra.run.smithi050.stdout:(10/36): ceph-mon-19.0.0-3084.g87dbfb63.el9.x86 4.3 MB/s | 4.7 MB 00:01 2024-04-15T21:00:38.214 INFO:teuthology.orchestra.run.smithi050.stdout:(11/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 2.3 MB/s | 241 kB 00:00 2024-04-15T21:00:38.274 INFO:teuthology.orchestra.run.smithi050.stdout:(12/36): python3-cryptography-36.0.1-4.el9.x86_ 14 MB/s | 1.1 MB 00:00 2024-04-15T21:00:38.298 INFO:teuthology.orchestra.run.smithi050.stdout:(13/36): python3-ply-3.11-14.el9.noarch.rpm 1.2 MB/s | 103 kB 00:00 2024-04-15T21:00:38.323 INFO:teuthology.orchestra.run.smithi050.stdout:(14/36): python3-pycparser-2.20-6.el9.noarch.rp 2.4 MB/s | 124 kB 00:00 2024-04-15T21:00:38.348 INFO:teuthology.orchestra.run.smithi050.stdout:(15/36): python3-urllib3-1.26.5-5.el9.noarch.rp 3.7 MB/s | 187 kB 00:00 2024-04-15T21:00:38.445 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:00:38.522 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-15T21:00:38.523 INFO:teuthology.orchestra.run.smithi050.stdout:(16/36): lua-devel-5.4.4-4.el9.x86_64.rpm 127 kB/s | 22 kB 00:00 2024-04-15T21:00:38.554 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-15T21:00:38.583 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-15T21:00:38.661 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-15T21:00:38.707 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-15T21:00:38.739 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-15T21:00:38.838 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-15T21:00:38.925 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-15T21:00:38.967 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-15T21:00:39.039 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-15T21:00:39.043 INFO:teuthology.orchestra.run.smithi151.stdout:(1/36): ceph-19.0.0-3084.g87dbfb63.el9.x86_64.r 30 kB/s | 6.6 kB 00:00 2024-04-15T21:00:39.094 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 11/36 2024-04-15T21:00:39.130 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 12/36 2024-04-15T21:00:39.179 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-ply-3.11-14.el9.noarch 13/36 2024-04-15T21:00:39.224 INFO:teuthology.orchestra.run.smithi050.stdout:(17/36): ceph-osd-19.0.0-3084.g87dbfb63.el9.x86 10 MB/s | 17 MB 00:01 2024-04-15T21:00:39.243 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 14/36 2024-04-15T21:00:39.249 INFO:teuthology.orchestra.run.smithi050.stdout:(18/36): python3-requests-2.25.1-8.el9.noarch.r 135 kB/s | 125 kB 00:00 2024-04-15T21:00:39.266 INFO:teuthology.orchestra.run.smithi050.stdout:(19/36): luarocks-3.9.2-1.el9.noarch.rpm 204 kB/s | 151 kB 00:00 2024-04-15T21:00:39.427 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 15/36 2024-04-15T21:00:39.468 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 16/36 2024-04-15T21:00:39.508 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 17/36 2024-04-15T21:00:39.533 INFO:teuthology.orchestra.run.smithi050.stdout:(20/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 644 kB/s | 172 kB 00:00 2024-04-15T21:00:39.550 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 18/36 2024-04-15T21:00:39.560 INFO:teuthology.orchestra.run.smithi151.stdout:(2/36): ceph-mgr-19.0.0-3084.g87dbfb63.el9.x86_ 2.0 MB/s | 1.5 MB 00:00 2024-04-15T21:00:39.580 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 19/36 2024-04-15T21:00:39.641 INFO:teuthology.orchestra.run.smithi050.stdout:(21/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 99 kB/s | 11 kB 00:00 2024-04-15T21:00:39.656 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 20/36 2024-04-15T21:00:39.675 INFO:teuthology.orchestra.run.smithi050.stdout:(22/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 96 kB/s | 43 kB 00:00 2024-04-15T21:00:39.690 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T21:00:39.719 INFO:teuthology.orchestra.run.smithi151.stdout:(3/36): ceph-mds-19.0.0-3084.g87dbfb63.el9.x86_ 2.6 MB/s | 2.4 MB 00:00 2024-04-15T21:00:39.723 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 22/36 2024-04-15T21:00:39.750 INFO:teuthology.orchestra.run.smithi050.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 163 kB/s | 18 kB 00:00 2024-04-15T21:00:39.763 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 23/36 2024-04-15T21:00:39.798 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 24/36 2024-04-15T21:00:39.809 INFO:teuthology.orchestra.run.smithi050.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 173 kB/s | 23 kB 00:00 2024-04-15T21:00:39.825 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 25/36 2024-04-15T21:00:39.827 INFO:teuthology.orchestra.run.smithi151.stdout:(4/36): ceph-mgr-modules-core-19.0.0-3084.g87db 2.2 MB/s | 249 kB 00:00 2024-04-15T21:00:39.859 INFO:teuthology.orchestra.run.smithi050.stdout:(25/36): python3-jaraco-functools-3.5.0-2.el9.n 179 kB/s | 19 kB 00:00 2024-04-15T21:00:39.913 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 26/36 2024-04-15T21:00:39.934 INFO:teuthology.orchestra.run.smithi050.stdout:(26/36): python3-jaraco-text-3.2.0-6.el9.noarch 157 kB/s | 20 kB 00:00 2024-04-15T21:00:39.945 INFO:teuthology.orchestra.run.smithi151.stdout:(5/36): lua-5.4.4-4.el9.x86_64.rpm 1.6 MB/s | 187 kB 00:00 2024-04-15T21:00:39.947 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/36 2024-04-15T21:00:39.959 INFO:teuthology.orchestra.run.smithi050.stdout:(27/36): python3-cherrypy-18.6.1-2.el9.noarch.r 517 kB/s | 358 kB 00:00 2024-04-15T21:00:39.985 INFO:teuthology.orchestra.run.smithi050.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 369 kB/s | 46 kB 00:00 2024-04-15T21:00:39.987 INFO:teuthology.orchestra.run.smithi151.stdout:(6/36): python3-mako-1.1.4-6.el9.noarch.rpm 3.4 MB/s | 144 kB 00:00 2024-04-15T21:00:40.018 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 28/36 2024-04-15T21:00:40.020 INFO:teuthology.orchestra.run.smithi151.stdout:(7/36): python3-markupsafe-1.1.1-12.el9.x86_64. 947 kB/s | 32 kB 00:00 2024-04-15T21:00:40.054 INFO:teuthology.orchestra.run.smithi151.stdout:(8/36): python3-pytz-2021.1-5.el9.noarch.rpm 1.4 MB/s | 47 kB 00:00 2024-04-15T21:00:40.110 INFO:teuthology.orchestra.run.smithi050.stdout:(29/36): python3-portend-3.1.0-2.el9.noarch.rpm 131 kB/s | 16 kB 00:00 2024-04-15T21:00:40.135 INFO:teuthology.orchestra.run.smithi050.stdout:(30/36): python3-pecan-1.4.2-3.el9.noarch.rpm 1.5 MB/s | 272 kB 00:00 2024-04-15T21:00:40.138 INFO:teuthology.orchestra.run.smithi151.stdout:(9/36): ceph-mon-19.0.0-3084.g87dbfb63.el9.x86_ 4.3 MB/s | 4.7 MB 00:01 2024-04-15T21:00:40.155 INFO:teuthology.orchestra.run.smithi151.stdout:(10/36): python3-toml-0.10.2-6.el9.noarch.rpm 384 kB/s | 39 kB 00:00 2024-04-15T21:00:40.161 INFO:teuthology.orchestra.run.smithi050.stdout:(31/36): python3-more-itertools-8.12.0-2.el9.no 349 kB/s | 79 kB 00:00 2024-04-15T21:00:40.162 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 29/36 2024-04-15T21:00:40.189 INFO:teuthology.orchestra.run.smithi151.stdout:(11/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 4.7 MB/s | 241 kB 00:00 2024-04-15T21:00:40.247 INFO:teuthology.orchestra.run.smithi151.stdout:(12/36): python3-cryptography-36.0.1-4.el9.x86_ 12 MB/s | 1.1 MB 00:00 2024-04-15T21:00:40.253 INFO:teuthology.orchestra.run.smithi050.stdout:(32/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 632 kB/s | 90 kB 00:00 2024-04-15T21:00:40.270 INFO:teuthology.orchestra.run.smithi050.stdout:(33/36): python3-tempora-5.0.0-2.el9.noarch.rpm 267 kB/s | 36 kB 00:00 2024-04-15T21:00:40.273 INFO:teuthology.orchestra.run.smithi151.stdout:(13/36): python3-ply-3.11-14.el9.noarch.rpm 1.2 MB/s | 103 kB 00:00 2024-04-15T21:00:40.289 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T21:00:40.298 INFO:teuthology.orchestra.run.smithi151.stdout:(14/36): python3-pycparser-2.20-6.el9.noarch.rp 2.4 MB/s | 124 kB 00:00 2024-04-15T21:00:40.312 INFO:teuthology.orchestra.run.smithi050.stdout:(34/36): python3-webob-1.8.7-6.el9.noarch.rpm 1.5 MB/s | 230 kB 00:00 2024-04-15T21:00:40.323 INFO:teuthology.orchestra.run.smithi151.stdout:(15/36): python3-urllib3-1.26.5-5.el9.noarch.rp 3.7 MB/s | 187 kB 00:00 2024-04-15T21:00:40.390 INFO:teuthology.orchestra.run.smithi151.stdout:(16/36): lua-devel-5.4.4-4.el9.x86_64.rpm 334 kB/s | 22 kB 00:00 2024-04-15T21:00:40.395 INFO:teuthology.orchestra.run.smithi050.stdout:(35/36): python3-zc-lockfile-2.0-10.el9.noarch. 159 kB/s | 20 kB 00:00 2024-04-15T21:00:40.466 INFO:teuthology.orchestra.run.smithi151.stdout:(17/36): python3-requests-2.25.1-8.el9.noarch.r 746 kB/s | 125 kB 00:00 2024-04-15T21:00:40.468 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-3084.g87dbfb63.el9. 31/36 2024-04-15T21:00:40.487 INFO:teuthology.orchestra.run.smithi050.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 1.8 MB/s | 427 kB 00:00 2024-04-15T21:00:40.493 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:40.493 INFO:teuthology.orchestra.run.smithi050.stdout:Total 7.2 MB/s | 30 MB 00:04 2024-04-15T21:00:40.494 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 32/36 2024-04-15T21:00:40.518 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:00:40.519 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 32/36 2024-04-15T21:00:40.519 INFO:teuthology.orchestra.run.smithi174.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:40.519 INFO:teuthology.orchestra.run.smithi174.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-15T21:00:40.519 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T21:00:40.519 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T21:00:40.519 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:40.558 INFO:teuthology.orchestra.run.smithi151.stdout:(18/36): luarocks-3.9.2-1.el9.noarch.rpm 903 kB/s | 151 kB 00:00 2024-04-15T21:00:40.565 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:00:40.565 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:00:40.591 INFO:teuthology.orchestra.run.smithi151.stdout:(19/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 347 kB/s | 43 kB 00:00 2024-04-15T21:00:40.642 INFO:teuthology.orchestra.run.smithi151.stdout:(20/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 2.0 MB/s | 172 kB 00:00 2024-04-15T21:00:40.684 INFO:teuthology.orchestra.run.smithi151.stdout:(21/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 256 kB/s | 11 kB 00:00 2024-04-15T21:00:40.709 INFO:teuthology.orchestra.run.smithi151.stdout:(22/36): python3-cherrypy-18.6.1-2.el9.noarch.r 3.0 MB/s | 358 kB 00:00 2024-04-15T21:00:40.738 INFO:teuthology.orchestra.run.smithi151.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 350 kB/s | 18 kB 00:00 2024-04-15T21:00:40.760 INFO:teuthology.orchestra.run.smithi151.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 461 kB/s | 23 kB 00:00 2024-04-15T21:00:40.785 INFO:teuthology.orchestra.run.smithi151.stdout:(25/36): python3-jaraco-functools-3.5.0-2.el9.n 386 kB/s | 19 kB 00:00 2024-04-15T21:00:40.819 INFO:teuthology.orchestra.run.smithi151.stdout:(26/36): python3-jaraco-text-3.2.0-6.el9.noarch 334 kB/s | 20 kB 00:00 2024-04-15T21:00:40.845 INFO:teuthology.orchestra.run.smithi151.stdout:(27/36): python3-logutils-0.3.5-21.el9.noarch.r 787 kB/s | 46 kB 00:00 2024-04-15T21:00:40.878 INFO:teuthology.orchestra.run.smithi151.stdout:(28/36): python3-more-itertools-8.12.0-2.el9.no 1.3 MB/s | 79 kB 00:00 2024-04-15T21:00:40.920 INFO:teuthology.orchestra.run.smithi151.stdout:(29/36): python3-pecan-1.4.2-3.el9.noarch.rpm 3.5 MB/s | 272 kB 00:00 2024-04-15T21:00:40.946 INFO:teuthology.orchestra.run.smithi151.stdout:(30/36): python3-portend-3.1.0-2.el9.noarch.rpm 244 kB/s | 16 kB 00:00 2024-04-15T21:00:40.971 INFO:teuthology.orchestra.run.smithi151.stdout:(31/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.7 MB/s | 90 kB 00:00 2024-04-15T21:00:41.005 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:00:41.005 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:00:41.013 INFO:teuthology.orchestra.run.smithi151.stdout:(32/36): python3-tempora-5.0.0-2.el9.noarch.rpm 533 kB/s | 36 kB 00:00 2024-04-15T21:00:41.039 INFO:teuthology.orchestra.run.smithi151.stdout:(33/36): python3-webob-1.8.7-6.el9.noarch.rpm 3.4 MB/s | 230 kB 00:00 2024-04-15T21:00:41.089 INFO:teuthology.orchestra.run.smithi151.stdout:(34/36): python3-zc-lockfile-2.0-10.el9.noarch. 399 kB/s | 20 kB 00:00 2024-04-15T21:00:41.123 INFO:teuthology.orchestra.run.smithi151.stdout:(35/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.8 MB/s | 427 kB 00:00 2024-04-15T21:00:41.340 INFO:teuthology.orchestra.run.smithi151.stdout:(36/36): ceph-osd-19.0.0-3084.g87dbfb63.el9.x86 9.5 MB/s | 17 MB 00:01 2024-04-15T21:00:41.343 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:41.343 INFO:teuthology.orchestra.run.smithi151.stdout:Total 9.3 MB/s | 30 MB 00:03 2024-04-15T21:00:41.366 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:00:41.405 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:00:41.405 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:00:41.825 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:00:41.826 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:00:41.961 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-osd-2:19.0.0-3084.g87dbfb63.el9.x86_64 33/36 2024-04-15T21:00:41.988 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-osd-2:19.0.0-3084.g87dbfb63.el9.x86_64 33/36 2024-04-15T21:00:41.988 INFO:teuthology.orchestra.run.smithi174.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:41.988 INFO:teuthology.orchestra.run.smithi174.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-15T21:00:41.988 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T21:00:41.988 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T21:00:41.989 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:42.339 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:00:42.398 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-15T21:00:42.423 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-15T21:00:42.428 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-mon-2:19.0.0-3084.g87dbfb63.el9.x86_64 34/36 2024-04-15T21:00:42.451 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-15T21:00:42.452 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-mon-2:19.0.0-3084.g87dbfb63.el9.x86_64 34/36 2024-04-15T21:00:42.452 INFO:teuthology.orchestra.run.smithi174.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:42.452 INFO:teuthology.orchestra.run.smithi174.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-15T21:00:42.452 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T21:00:42.452 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T21:00:42.452 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:42.525 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-15T21:00:42.575 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-15T21:00:42.608 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-15T21:00:42.671 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-mds-2:19.0.0-3084.g87dbfb63.el9.x86_64 35/36 2024-04-15T21:00:42.694 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-mds-2:19.0.0-3084.g87dbfb63.el9.x86_64 35/36 2024-04-15T21:00:42.694 INFO:teuthology.orchestra.run.smithi174.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:42.694 INFO:teuthology.orchestra.run.smithi174.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-15T21:00:42.694 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T21:00:42.695 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T21:00:42.695 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:42.702 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-15T21:00:42.751 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-2:19.0.0-3084.g87dbfb63.el9.x86_64 36/36 2024-04-15T21:00:42.787 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-15T21:00:42.844 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-15T21:00:42.918 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-15T21:00:42.979 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 11/36 2024-04-15T21:00:43.016 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 12/36 2024-04-15T21:00:43.066 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-ply-3.11-14.el9.noarch 13/36 2024-04-15T21:00:43.153 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 14/36 2024-04-15T21:00:43.156 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:00:43.217 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-15T21:00:43.259 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-15T21:00:43.295 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-15T21:00:43.365 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-15T21:00:43.372 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 15/36 2024-04-15T21:00:43.412 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-15T21:00:43.420 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 16/36 2024-04-15T21:00:43.444 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-15T21:00:43.458 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 17/36 2024-04-15T21:00:43.493 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 18/36 2024-04-15T21:00:43.523 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 19/36 2024-04-15T21:00:43.536 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-15T21:00:43.602 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 20/36 2024-04-15T21:00:43.632 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-15T21:00:43.641 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T21:00:43.672 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-15T21:00:43.675 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 22/36 2024-04-15T21:00:43.716 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 23/36 2024-04-15T21:00:43.745 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-15T21:00:43.759 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 24/36 2024-04-15T21:00:43.793 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 25/36 2024-04-15T21:00:43.799 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 11/36 2024-04-15T21:00:43.846 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 12/36 2024-04-15T21:00:43.885 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 26/36 2024-04-15T21:00:43.895 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-ply-3.11-14.el9.noarch 13/36 2024-04-15T21:00:43.924 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/36 2024-04-15T21:00:43.957 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 14/36 2024-04-15T21:00:43.999 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 28/36 2024-04-15T21:00:44.145 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 15/36 2024-04-15T21:00:44.147 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 29/36 2024-04-15T21:00:44.193 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 16/36 2024-04-15T21:00:44.240 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 17/36 2024-04-15T21:00:44.283 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T21:00:44.284 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 18/36 2024-04-15T21:00:44.322 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 19/36 2024-04-15T21:00:44.399 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 20/36 2024-04-15T21:00:44.441 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T21:00:44.449 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-3084.g87dbfb63.el9. 31/36 2024-04-15T21:00:44.469 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-2:19.0.0-3084.g87dbfb63.el9.x86_64 36/36 2024-04-15T21:00:44.469 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/36 2024-04-15T21:00:44.469 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-mds-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/36 2024-04-15T21:00:44.469 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 3/36 2024-04-15T21:00:44.469 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-mon-2:19.0.0-3084.g87dbfb63.el9.x86_64 4/36 2024-04-15T21:00:44.469 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-osd-2:19.0.0-3084.g87dbfb63.el9.x86_64 5/36 2024-04-15T21:00:44.469 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-3084.g87dbfb63.el9. 6/36 2024-04-15T21:00:44.469 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : lua-5.4.4-4.el9.x86_64 7/36 2024-04-15T21:00:44.469 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 8/36 2024-04-15T21:00:44.469 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 9/36 2024-04-15T21:00:44.470 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 10/36 2024-04-15T21:00:44.470 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-15T21:00:44.470 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 12/36 2024-04-15T21:00:44.470 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 13/36 2024-04-15T21:00:44.470 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-ply-3.11-14.el9.noarch 14/36 2024-04-15T21:00:44.470 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 15/36 2024-04-15T21:00:44.470 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 16/36 2024-04-15T21:00:44.470 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 17/36 2024-04-15T21:00:44.470 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-15T21:00:44.470 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-15T21:00:44.470 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-15T21:00:44.470 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T21:00:44.470 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-15T21:00:44.471 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-15T21:00:44.471 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-15T21:00:44.471 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-15T21:00:44.471 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-15T21:00:44.471 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-15T21:00:44.471 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-15T21:00:44.471 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-15T21:00:44.471 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T21:00:44.471 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-15T21:00:44.471 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-15T21:00:44.471 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-15T21:00:44.471 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-15T21:00:44.471 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-15T21:00:44.474 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 22/36 2024-04-15T21:00:44.478 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 32/36 2024-04-15T21:00:44.507 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 32/36 2024-04-15T21:00:44.507 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:44.507 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-15T21:00:44.507 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T21:00:44.507 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T21:00:44.507 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:44.515 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 23/36 2024-04-15T21:00:44.551 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 24/36 2024-04-15T21:00:44.585 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 25/36 2024-04-15T21:00:44.674 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 26/36 2024-04-15T21:00:44.717 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 27/36 2024-04-15T21:00:44.814 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 28/36 2024-04-15T21:00:44.953 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 29/36 2024-04-15T21:00:45.081 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T21:00:45.238 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-3084.g87dbfb63.el9. 31/36 2024-04-15T21:00:45.267 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 32/36 2024-04-15T21:00:45.293 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 32/36 2024-04-15T21:00:45.293 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:45.293 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-15T21:00:45.293 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T21:00:45.293 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T21:00:45.294 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:45.560 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-15T21:00:45.560 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:45.560 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:00:45.560 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:45.560 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mds-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:45.560 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:45.560 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mgr-modules-core-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:00:45.561 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mon-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:45.561 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-osd-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:45.561 INFO:teuthology.orchestra.run.smithi174.stdout: lua-5.4.4-4.el9.x86_64 2024-04-15T21:00:45.561 INFO:teuthology.orchestra.run.smithi174.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-15T21:00:45.561 INFO:teuthology.orchestra.run.smithi174.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-15T21:00:45.561 INFO:teuthology.orchestra.run.smithi174.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-15T21:00:45.561 INFO:teuthology.orchestra.run.smithi174.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-15T21:00:45.561 INFO:teuthology.orchestra.run.smithi174.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-15T21:00:45.561 INFO:teuthology.orchestra.run.smithi174.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-15T21:00:45.561 INFO:teuthology.orchestra.run.smithi174.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-15T21:00:45.561 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-15T21:00:45.561 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-15T21:00:45.562 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-15T21:00:45.562 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-15T21:00:45.562 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-15T21:00:45.562 INFO:teuthology.orchestra.run.smithi174.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-15T21:00:45.562 INFO:teuthology.orchestra.run.smithi174.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-15T21:00:45.562 INFO:teuthology.orchestra.run.smithi174.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-15T21:00:45.562 INFO:teuthology.orchestra.run.smithi174.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-15T21:00:45.562 INFO:teuthology.orchestra.run.smithi174.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-15T21:00:45.562 INFO:teuthology.orchestra.run.smithi174.stdout: python3-ply-3.11-14.el9.noarch 2024-04-15T21:00:45.562 INFO:teuthology.orchestra.run.smithi174.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-15T21:00:45.562 INFO:teuthology.orchestra.run.smithi174.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-15T21:00:45.562 INFO:teuthology.orchestra.run.smithi174.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-15T21:00:45.563 INFO:teuthology.orchestra.run.smithi174.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-15T21:00:45.563 INFO:teuthology.orchestra.run.smithi174.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-15T21:00:45.563 INFO:teuthology.orchestra.run.smithi174.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-15T21:00:45.563 INFO:teuthology.orchestra.run.smithi174.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-15T21:00:45.563 INFO:teuthology.orchestra.run.smithi174.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-15T21:00:45.563 INFO:teuthology.orchestra.run.smithi174.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-15T21:00:45.563 INFO:teuthology.orchestra.run.smithi174.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-15T21:00:45.563 INFO:teuthology.orchestra.run.smithi174.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-15T21:00:45.563 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:45.563 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:00:45.914 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install ceph-base 2024-04-15T21:00:46.038 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-osd-2:19.0.0-3084.g87dbfb63.el9.x86_64 33/36 2024-04-15T21:00:46.066 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-osd-2:19.0.0-3084.g87dbfb63.el9.x86_64 33/36 2024-04-15T21:00:46.067 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:46.067 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-15T21:00:46.067 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T21:00:46.067 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T21:00:46.067 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:46.505 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:00:57 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:00:46.538 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mon-2:19.0.0-3084.g87dbfb63.el9.x86_64 34/36 2024-04-15T21:00:46.562 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mon-2:19.0.0-3084.g87dbfb63.el9.x86_64 34/36 2024-04-15T21:00:46.562 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:46.562 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-15T21:00:46.563 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T21:00:46.563 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T21:00:46.563 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:46.605 INFO:teuthology.orchestra.run.smithi174.stdout:Package ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:00:46.657 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:00:46.658 INFO:teuthology.orchestra.run.smithi174.stdout:Nothing to do. 2024-04-15T21:00:46.658 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:00:46.729 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install cephadm 2024-04-15T21:00:46.760 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-osd-2:19.0.0-3084.g87dbfb63.el9.x86_64 33/36 2024-04-15T21:00:46.787 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-osd-2:19.0.0-3084.g87dbfb63.el9.x86_64 33/36 2024-04-15T21:00:46.788 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:46.788 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-15T21:00:46.788 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T21:00:46.788 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T21:00:46.788 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:46.806 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mds-2:19.0.0-3084.g87dbfb63.el9.x86_64 35/36 2024-04-15T21:00:46.829 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mds-2:19.0.0-3084.g87dbfb63.el9.x86_64 35/36 2024-04-15T21:00:46.830 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:46.830 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-15T21:00:46.830 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T21:00:46.830 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T21:00:46.830 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:46.898 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-2:19.0.0-3084.g87dbfb63.el9.x86_64 36/36 2024-04-15T21:00:47.236 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mon-2:19.0.0-3084.g87dbfb63.el9.x86_64 34/36 2024-04-15T21:00:47.261 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mon-2:19.0.0-3084.g87dbfb63.el9.x86_64 34/36 2024-04-15T21:00:47.261 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:47.261 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-15T21:00:47.261 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T21:00:47.261 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T21:00:47.261 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:47.304 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:00:58 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:00:47.455 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:00:47.456 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:00:47.456 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repository Size 2024-04-15T21:00:47.456 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:00:47.456 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:00:47.456 INFO:teuthology.orchestra.run.smithi174.stdout: cephadm noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 762 k 2024-04-15T21:00:47.456 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:47.457 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:00:47.457 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:00:47.457 INFO:teuthology.orchestra.run.smithi174.stdout:Install 1 Package 2024-04-15T21:00:47.457 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:47.457 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 762 k 2024-04-15T21:00:47.457 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 768 k 2024-04-15T21:00:47.457 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:00:47.487 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mds-2:19.0.0-3084.g87dbfb63.el9.x86_64 35/36 2024-04-15T21:00:47.511 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mds-2:19.0.0-3084.g87dbfb63.el9.x86_64 35/36 2024-04-15T21:00:47.511 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:47.511 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-15T21:00:47.511 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T21:00:47.511 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T21:00:47.511 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:47.576 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-2:19.0.0-3084.g87dbfb63.el9.x86_64 36/36 2024-04-15T21:00:47.740 INFO:teuthology.orchestra.run.smithi174.stdout:cephadm-19.0.0-3084.g87dbfb63.el9.noarch.rpm 2.6 MB/s | 762 kB 00:00 2024-04-15T21:00:47.741 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:47.741 INFO:teuthology.orchestra.run.smithi174.stdout:Total 2.6 MB/s | 762 kB 00:00 2024-04-15T21:00:47.741 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:00:47.746 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:00:47.747 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:00:47.752 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:00:47.752 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:00:47.824 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:00:48.250 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/1 2024-04-15T21:00:48.329 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/1 2024-04-15T21:00:48.624 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-2:19.0.0-3084.g87dbfb63.el9.x86_64 36/36 2024-04-15T21:00:48.624 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/36 2024-04-15T21:00:48.624 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mds-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/36 2024-04-15T21:00:48.624 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 3/36 2024-04-15T21:00:48.624 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mon-2:19.0.0-3084.g87dbfb63.el9.x86_64 4/36 2024-04-15T21:00:48.624 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-osd-2:19.0.0-3084.g87dbfb63.el9.x86_64 5/36 2024-04-15T21:00:48.624 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-3084.g87dbfb63.el9. 6/36 2024-04-15T21:00:48.624 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : lua-5.4.4-4.el9.x86_64 7/36 2024-04-15T21:00:48.624 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 8/36 2024-04-15T21:00:48.624 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 9/36 2024-04-15T21:00:48.624 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 10/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 12/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 13/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-ply-3.11-14.el9.noarch 14/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 15/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 16/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 17/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-15T21:00:48.625 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-15T21:00:48.626 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-15T21:00:48.627 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-15T21:00:48.627 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-15T21:00:48.627 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-15T21:00:48.627 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-15T21:00:48.627 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T21:00:48.627 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-15T21:00:48.627 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-15T21:00:48.627 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-15T21:00:48.627 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-15T21:00:48.627 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-15T21:00:48.737 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/1 2024-04-15T21:00:49.019 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/1 2024-04-15T21:00:49.019 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:49.020 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:00:49.020 INFO:teuthology.orchestra.run.smithi174.stdout: cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:00:49.020 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:49.020 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:00:49.228 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install ceph-immutable-object-cache 2024-04-15T21:00:49.384 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-2:19.0.0-3084.g87dbfb63.el9.x86_64 36/36 2024-04-15T21:00:49.384 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/36 2024-04-15T21:00:49.384 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mds-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/36 2024-04-15T21:00:49.384 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 3/36 2024-04-15T21:00:49.384 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mon-2:19.0.0-3084.g87dbfb63.el9.x86_64 4/36 2024-04-15T21:00:49.384 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-osd-2:19.0.0-3084.g87dbfb63.el9.x86_64 5/36 2024-04-15T21:00:49.384 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-3084.g87dbfb63.el9. 6/36 2024-04-15T21:00:49.384 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : lua-5.4.4-4.el9.x86_64 7/36 2024-04-15T21:00:49.384 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 8/36 2024-04-15T21:00:49.385 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 9/36 2024-04-15T21:00:49.385 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 10/36 2024-04-15T21:00:49.385 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-15T21:00:49.385 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 12/36 2024-04-15T21:00:49.385 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 13/36 2024-04-15T21:00:49.385 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-ply-3.11-14.el9.noarch 14/36 2024-04-15T21:00:49.385 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 15/36 2024-04-15T21:00:49.385 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 16/36 2024-04-15T21:00:49.385 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 17/36 2024-04-15T21:00:49.385 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-15T21:00:49.385 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-15T21:00:49.385 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-15T21:00:49.386 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T21:00:49.386 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-15T21:00:49.386 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-15T21:00:49.386 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-15T21:00:49.386 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-15T21:00:49.386 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-15T21:00:49.386 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-15T21:00:49.386 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-15T21:00:49.387 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-15T21:00:49.387 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T21:00:49.387 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-15T21:00:49.387 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-15T21:00:49.387 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-15T21:00:49.387 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-15T21:00:49.387 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-15T21:00:49.485 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-15T21:00:49.485 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:49.485 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:00:49.485 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:49.485 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mds-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:49.485 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:49.485 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-modules-core-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:00:49.485 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mon-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:49.485 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-osd-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:49.485 INFO:teuthology.orchestra.run.smithi050.stdout: lua-5.4.4-4.el9.x86_64 2024-04-15T21:00:49.485 INFO:teuthology.orchestra.run.smithi050.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-15T21:00:49.485 INFO:teuthology.orchestra.run.smithi050.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-15T21:00:49.486 INFO:teuthology.orchestra.run.smithi050.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-15T21:00:49.486 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-15T21:00:49.486 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-15T21:00:49.486 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-15T21:00:49.486 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-15T21:00:49.486 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-15T21:00:49.486 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-15T21:00:49.486 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-15T21:00:49.486 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-15T21:00:49.486 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-15T21:00:49.486 INFO:teuthology.orchestra.run.smithi050.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-15T21:00:49.486 INFO:teuthology.orchestra.run.smithi050.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-ply-3.11-14.el9.noarch 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-15T21:00:49.487 INFO:teuthology.orchestra.run.smithi050.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-15T21:00:49.488 INFO:teuthology.orchestra.run.smithi050.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-15T21:00:49.488 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:49.488 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:00:49.818 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:00 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:00:49.837 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-base 2024-04-15T21:00:49.974 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:00:49.975 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:00:49.975 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repo Size 2024-04-15T21:00:49.975 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:00:49.976 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:00:49.976 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 145 k 2024-04-15T21:00:49.976 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:49.976 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:00:49.976 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:00:49.976 INFO:teuthology.orchestra.run.smithi174.stdout:Install 1 Package 2024-04-15T21:00:49.976 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:49.976 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 145 k 2024-04-15T21:00:49.976 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 435 k 2024-04-15T21:00:49.977 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:00:50.283 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-15T21:00:50.284 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:50.284 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:00:50.284 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:50.284 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mds-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:50.284 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:50.284 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-modules-core-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:00:50.284 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mon-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:50.284 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-osd-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:50.284 INFO:teuthology.orchestra.run.smithi151.stdout: lua-5.4.4-4.el9.x86_64 2024-04-15T21:00:50.284 INFO:teuthology.orchestra.run.smithi151.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-15T21:00:50.284 INFO:teuthology.orchestra.run.smithi151.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-15T21:00:50.284 INFO:teuthology.orchestra.run.smithi151.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-15T21:00:50.284 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-ply-3.11-14.el9.noarch 2024-04-15T21:00:50.285 INFO:teuthology.orchestra.run.smithi151.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-15T21:00:50.286 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-15T21:00:50.286 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-15T21:00:50.286 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-15T21:00:50.286 INFO:teuthology.orchestra.run.smithi151.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-15T21:00:50.286 INFO:teuthology.orchestra.run.smithi151.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-15T21:00:50.286 INFO:teuthology.orchestra.run.smithi151.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-15T21:00:50.286 INFO:teuthology.orchestra.run.smithi151.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-15T21:00:50.286 INFO:teuthology.orchestra.run.smithi151.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-15T21:00:50.286 INFO:teuthology.orchestra.run.smithi151.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-15T21:00:50.286 INFO:teuthology.orchestra.run.smithi151.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-15T21:00:50.286 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:50.286 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:00:50.321 INFO:teuthology.orchestra.run.smithi174.stdout:ceph-immutable-object-cache-19.0.0-3084.g87dbfb 421 kB/s | 145 kB 00:00 2024-04-15T21:00:50.321 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:50.322 INFO:teuthology.orchestra.run.smithi174.stdout:Total 419 kB/s | 145 kB 00:00 2024-04-15T21:00:50.322 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:00:50.329 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:00:50.329 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:00:50.381 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:00:50.381 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:00:50.432 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:00:59 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:00:50.534 INFO:teuthology.orchestra.run.smithi050.stdout:Package ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:00:50.536 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:00:50.588 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-3084.g87dbfb63. 1/1 2024-04-15T21:00:50.590 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:00:50.592 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-04-15T21:00:50.592 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:00:50.613 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-3084.g87dbfb63. 1/1 2024-04-15T21:00:50.613 INFO:teuthology.orchestra.run.smithi174.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:50.614 INFO:teuthology.orchestra.run.smithi174.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-15T21:00:50.614 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:50.659 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install cephadm 2024-04-15T21:00:50.688 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-base 2024-04-15T21:00:51.240 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:00 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:00:51.271 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:00:57 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:00:51.371 INFO:teuthology.orchestra.run.smithi151.stdout:Package ceph-base-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:00:51.397 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:00:51.398 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:00:51.398 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-04-15T21:00:51.398 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:00:51.398 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:00:51.398 INFO:teuthology.orchestra.run.smithi050.stdout: cephadm noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 762 k 2024-04-15T21:00:51.398 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:51.398 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:00:51.398 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:00:51.398 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-04-15T21:00:51.398 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:51.398 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 762 k 2024-04-15T21:00:51.399 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 768 k 2024-04-15T21:00:51.399 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:00:51.423 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:00:51.424 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-04-15T21:00:51.424 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:00:51.488 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install cephadm 2024-04-15T21:00:51.608 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-3084.g87dbfb63. 1/1 2024-04-15T21:00:51.608 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:51.608 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:00:51.608 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-immutable-object-cache-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:51.609 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:51.609 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:00:51.814 INFO:teuthology.orchestra.run.smithi050.stdout:cephadm-19.0.0-3084.g87dbfb63.el9.noarch.rpm 1.8 MB/s | 762 kB 00:00 2024-04-15T21:00:51.815 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:51.815 INFO:teuthology.orchestra.run.smithi050.stdout:Total 1.8 MB/s | 762 kB 00:00 2024-04-15T21:00:51.815 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:00:51.821 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:00:51.821 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:00:51.827 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:00:51.827 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:00:51.839 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install ceph-mgr 2024-04-15T21:00:51.902 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:00:52.056 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:00:58 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:00:52.206 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:00:52.207 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:00:52.207 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-04-15T21:00:52.207 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:00:52.207 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:00:52.208 INFO:teuthology.orchestra.run.smithi151.stdout: cephadm noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 762 k 2024-04-15T21:00:52.208 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:52.208 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:00:52.208 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:00:52.208 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-04-15T21:00:52.208 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:52.208 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 762 k 2024-04-15T21:00:52.208 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 768 k 2024-04-15T21:00:52.208 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:00:52.343 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/1 2024-04-15T21:00:52.423 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:03 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:00:52.430 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/1 2024-04-15T21:00:52.484 INFO:teuthology.orchestra.run.smithi151.stdout:cephadm-19.0.0-3084.g87dbfb63.el9.noarch.rpm 2.7 MB/s | 762 kB 00:00 2024-04-15T21:00:52.485 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:52.485 INFO:teuthology.orchestra.run.smithi151.stdout:Total 2.7 MB/s | 762 kB 00:00 2024-04-15T21:00:52.485 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:00:52.490 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:00:52.490 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:00:52.496 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:00:52.496 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:00:52.523 INFO:teuthology.orchestra.run.smithi174.stdout:Package ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:00:52.569 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:00:52.576 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:00:52.577 INFO:teuthology.orchestra.run.smithi174.stdout:Nothing to do. 2024-04-15T21:00:52.577 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:00:52.643 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install ceph-mgr-dashboard 2024-04-15T21:00:52.826 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/1 2024-04-15T21:00:52.979 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/1 2024-04-15T21:00:53.073 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/1 2024-04-15T21:00:53.115 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/1 2024-04-15T21:00:53.115 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:53.115 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:00:53.115 INFO:teuthology.orchestra.run.smithi050.stdout: cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:00:53.115 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:53.115 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:00:53.218 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:04 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:00:53.336 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-immutable-object-cache 2024-04-15T21:00:53.370 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:00:53.371 INFO:teuthology.orchestra.run.smithi174.stdout:====================================================================================== 2024-04-15T21:00:53.371 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repository Size 2024-04-15T21:00:53.372 INFO:teuthology.orchestra.run.smithi174.stdout:====================================================================================== 2024-04-15T21:00:53.372 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:00:53.372 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mgr-dashboard noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 3.5 M 2024-04-15T21:00:53.372 INFO:teuthology.orchestra.run.smithi174.stdout:Installing dependencies: 2024-04-15T21:00:53.372 INFO:teuthology.orchestra.run.smithi174.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-15T21:00:53.372 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-grafana-dashboards noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 34 k 2024-04-15T21:00:53.372 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-prometheus-alerts noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 16 k 2024-04-15T21:00:53.372 INFO:teuthology.orchestra.run.smithi174.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-15T21:00:53.372 INFO:teuthology.orchestra.run.smithi174.stdout: protobuf x86_64 3.14.0-13.el9 CentOS-AppStream 1.0 M 2024-04-15T21:00:53.372 INFO:teuthology.orchestra.run.smithi174.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-15T21:00:53.372 INFO:teuthology.orchestra.run.smithi174.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-15T21:00:53.372 INFO:teuthology.orchestra.run.smithi174.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-15T21:00:53.372 INFO:teuthology.orchestra.run.smithi174.stdout: python3-protobuf noarch 3.14.0-13.el9 CentOS-AppStream 238 k 2024-04-15T21:00:53.373 INFO:teuthology.orchestra.run.smithi174.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-15T21:00:53.373 INFO:teuthology.orchestra.run.smithi174.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-15T21:00:53.373 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:53.373 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:00:53.373 INFO:teuthology.orchestra.run.smithi174.stdout:====================================================================================== 2024-04-15T21:00:53.373 INFO:teuthology.orchestra.run.smithi174.stdout:Install 12 Packages 2024-04-15T21:00:53.373 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:53.373 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 8.6 M 2024-04-15T21:00:53.374 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 104 M 2024-04-15T21:00:53.374 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:00:53.466 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/1 2024-04-15T21:00:53.770 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/1 2024-04-15T21:00:53.771 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:53.771 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:00:53.771 INFO:teuthology.orchestra.run.smithi151.stdout: cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:00:53.771 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:53.771 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:00:53.926 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:02 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:00:53.948 INFO:teuthology.orchestra.run.smithi174.stdout:(1/12): ceph-prometheus-alerts-19.0.0-3084.g87d 63 kB/s | 16 kB 00:00 2024-04-15T21:00:53.966 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-immutable-object-cache 2024-04-15T21:00:53.973 INFO:teuthology.orchestra.run.smithi174.stdout:(2/12): ceph-grafana-dashboards-19.0.0-3084.g87 119 kB/s | 34 kB 00:00 2024-04-15T21:00:54.085 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:00:54.086 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:00:54.086 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repo Size 2024-04-15T21:00:54.086 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:00:54.086 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:00:54.087 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 145 k 2024-04-15T21:00:54.087 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:54.087 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:00:54.087 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:00:54.087 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-04-15T21:00:54.087 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:54.087 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 145 k 2024-04-15T21:00:54.087 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 435 k 2024-04-15T21:00:54.087 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:00:54.108 INFO:teuthology.orchestra.run.smithi174.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.7 MB/s | 238 kB 00:00 2024-04-15T21:00:54.141 INFO:teuthology.orchestra.run.smithi174.stdout:(4/12): protobuf-3.14.0-13.el9.x86_64.rpm 5.2 MB/s | 1.0 MB 00:00 2024-04-15T21:00:54.208 INFO:teuthology.orchestra.run.smithi174.stdout:(5/12): ceph-mgr-dashboard-19.0.0-3084.g87dbfb6 6.8 MB/s | 3.5 MB 00:00 2024-04-15T21:00:54.287 INFO:teuthology.orchestra.run.smithi050.stdout:ceph-immutable-object-cache-19.0.0-3084.g87dbfb 723 kB/s | 145 kB 00:00 2024-04-15T21:00:54.289 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:54.289 INFO:teuthology.orchestra.run.smithi050.stdout:Total 719 kB/s | 145 kB 00:00 2024-04-15T21:00:54.289 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:00:54.296 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:00:54.297 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:00:54.350 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:00:54.351 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:00:54.504 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:00:54.551 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:00 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:00:54.572 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-3084.g87dbfb63. 1/1 2024-04-15T21:00:54.591 INFO:teuthology.orchestra.run.smithi174.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 51 kB/s | 19 kB 00:00 2024-04-15T21:00:54.597 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-3084.g87dbfb63. 1/1 2024-04-15T21:00:54.597 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:54.597 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-15T21:00:54.597 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:54.707 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:00:54.708 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:00:54.708 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repo Size 2024-04-15T21:00:54.708 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:00:54.708 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:00:54.708 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 145 k 2024-04-15T21:00:54.708 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:54.708 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:00:54.708 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:00:54.708 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-04-15T21:00:54.708 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:54.709 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 145 k 2024-04-15T21:00:54.709 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 435 k 2024-04-15T21:00:54.709 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:00:54.900 INFO:teuthology.orchestra.run.smithi174.stdout:(7/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 722 kB/s | 548 kB 00:00 2024-04-15T21:00:54.928 INFO:teuthology.orchestra.run.smithi151.stdout:ceph-immutable-object-cache-19.0.0-3084.g87dbfb 662 kB/s | 145 kB 00:00 2024-04-15T21:00:54.929 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:54.929 INFO:teuthology.orchestra.run.smithi151.stdout:Total 658 kB/s | 145 kB 00:00 2024-04-15T21:00:54.929 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:00:54.933 INFO:teuthology.orchestra.run.smithi174.stdout:(8/12): protobuf-compiler-3.14.0-13.el9.x86_64. 1.0 MB/s | 863 kB 00:00 2024-04-15T21:00:54.936 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:00:54.936 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:00:54.990 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:00:54.990 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:00:55.025 INFO:teuthology.orchestra.run.smithi174.stdout:(9/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 1.1 MB/s | 144 kB 00:00 2024-04-15T21:00:55.142 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:00:55.184 INFO:teuthology.orchestra.run.smithi174.stdout:(10/12): python3-routes-2.5.1-5.el9.noarch.rpm 1.4 MB/s | 188 kB 00:00 2024-04-15T21:00:55.196 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-3084.g87dbfb63. 1/1 2024-04-15T21:00:55.221 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-3084.g87dbfb63. 1/1 2024-04-15T21:00:55.221 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:00:55.221 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-15T21:00:55.221 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:55.301 INFO:teuthology.orchestra.run.smithi174.stdout:(11/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 2.9 MB/s | 2.0 MB 00:00 2024-04-15T21:00:55.343 INFO:teuthology.orchestra.run.smithi174.stdout:(12/12): python3-repoze-lru-0.7-16.el9.noarch.r 75 kB/s | 31 kB 00:00 2024-04-15T21:00:55.348 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:55.348 INFO:teuthology.orchestra.run.smithi174.stdout:Total 4.4 MB/s | 8.6 MB 00:01 2024-04-15T21:00:55.366 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:00:55.384 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:00:55.384 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:00:55.560 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:00:55.561 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:00:55.574 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-3084.g87dbfb63. 1/1 2024-04-15T21:00:55.574 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:55.574 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:00:55.574 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-immutable-object-cache-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:55.574 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:55.574 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:00:55.827 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-mgr 2024-04-15T21:00:56.098 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:00:56.184 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-15T21:00:56.220 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-3084.g87dbfb63. 1/1 2024-04-15T21:00:56.220 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:56.220 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:00:56.220 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-immutable-object-cache-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:00:56.220 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:56.220 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:00:56.221 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-15T21:00:56.266 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-15T21:00:56.297 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-15T21:00:56.406 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-15T21:00:56.413 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:05 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:00:56.431 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-mgr 2024-04-15T21:00:56.515 INFO:teuthology.orchestra.run.smithi050.stdout:Package ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:00:56.531 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-15T21:00:56.570 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:00:56.571 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-04-15T21:00:56.571 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:00:56.632 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-15T21:00:56.651 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-mgr-dashboard 2024-04-15T21:00:56.685 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-15T21:00:56.713 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-15T21:00:56.745 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-3084.g87dbfb63.el9 10/12 2024-04-15T21:00:57.018 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:03 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:00:57.118 INFO:teuthology.orchestra.run.smithi151.stdout:Package ceph-mgr-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:00:57.170 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:00:57.171 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-04-15T21:00:57.171 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:00:57.236 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-mgr-dashboard 2024-04-15T21:00:57.237 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:06 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:00:57.396 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:00:57.397 INFO:teuthology.orchestra.run.smithi050.stdout:====================================================================================== 2024-04-15T21:00:57.397 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-04-15T21:00:57.397 INFO:teuthology.orchestra.run.smithi050.stdout:====================================================================================== 2024-04-15T21:00:57.397 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:00:57.397 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-dashboard noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 3.5 M 2024-04-15T21:00:57.397 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-04-15T21:00:57.397 INFO:teuthology.orchestra.run.smithi050.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-15T21:00:57.398 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-grafana-dashboards noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 34 k 2024-04-15T21:00:57.398 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-prometheus-alerts noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 16 k 2024-04-15T21:00:57.398 INFO:teuthology.orchestra.run.smithi050.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-15T21:00:57.398 INFO:teuthology.orchestra.run.smithi050.stdout: protobuf x86_64 3.14.0-13.el9 CentOS-AppStream 1.0 M 2024-04-15T21:00:57.398 INFO:teuthology.orchestra.run.smithi050.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-15T21:00:57.398 INFO:teuthology.orchestra.run.smithi050.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-15T21:00:57.398 INFO:teuthology.orchestra.run.smithi050.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-15T21:00:57.398 INFO:teuthology.orchestra.run.smithi050.stdout: python3-protobuf noarch 3.14.0-13.el9 CentOS-AppStream 238 k 2024-04-15T21:00:57.398 INFO:teuthology.orchestra.run.smithi050.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-15T21:00:57.398 INFO:teuthology.orchestra.run.smithi050.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-15T21:00:57.398 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:57.398 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:00:57.398 INFO:teuthology.orchestra.run.smithi050.stdout:====================================================================================== 2024-04-15T21:00:57.399 INFO:teuthology.orchestra.run.smithi050.stdout:Install 12 Packages 2024-04-15T21:00:57.399 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:00:57.399 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 8.6 M 2024-04-15T21:00:57.399 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 104 M 2024-04-15T21:00:57.399 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:00:57.807 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-3084.g87dbfb63.el 11/12 2024-04-15T21:00:57.816 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:03 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:00:57.837 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-3084.g87dbfb63.el9.noa 12/12 2024-04-15T21:00:57.971 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:00:57.972 INFO:teuthology.orchestra.run.smithi151.stdout:====================================================================================== 2024-04-15T21:00:57.973 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-04-15T21:00:57.973 INFO:teuthology.orchestra.run.smithi151.stdout:====================================================================================== 2024-04-15T21:00:57.973 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:00:57.973 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-dashboard noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 3.5 M 2024-04-15T21:00:57.973 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-04-15T21:00:57.973 INFO:teuthology.orchestra.run.smithi151.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-15T21:00:57.973 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-grafana-dashboards noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 34 k 2024-04-15T21:00:57.973 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-prometheus-alerts noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 16 k 2024-04-15T21:00:57.973 INFO:teuthology.orchestra.run.smithi151.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-15T21:00:57.973 INFO:teuthology.orchestra.run.smithi151.stdout: protobuf x86_64 3.14.0-13.el9 CentOS-AppStream 1.0 M 2024-04-15T21:00:57.973 INFO:teuthology.orchestra.run.smithi151.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-15T21:00:57.973 INFO:teuthology.orchestra.run.smithi151.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-15T21:00:57.973 INFO:teuthology.orchestra.run.smithi151.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-15T21:00:57.974 INFO:teuthology.orchestra.run.smithi151.stdout: python3-protobuf noarch 3.14.0-13.el9 CentOS-AppStream 238 k 2024-04-15T21:00:57.974 INFO:teuthology.orchestra.run.smithi151.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-15T21:00:57.974 INFO:teuthology.orchestra.run.smithi151.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-15T21:00:57.974 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:57.974 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:00:57.974 INFO:teuthology.orchestra.run.smithi151.stdout:====================================================================================== 2024-04-15T21:00:57.974 INFO:teuthology.orchestra.run.smithi151.stdout:Install 12 Packages 2024-04-15T21:00:57.974 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:00:57.975 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 8.6 M 2024-04-15T21:00:57.975 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 104 M 2024-04-15T21:00:57.975 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:00:58.008 INFO:teuthology.orchestra.run.smithi050.stdout:(1/12): ceph-grafana-dashboards-19.0.0-3084.g87 138 kB/s | 34 kB 00:00 2024-04-15T21:00:58.100 INFO:teuthology.orchestra.run.smithi050.stdout:(2/12): ceph-prometheus-alerts-19.0.0-3084.g87d 48 kB/s | 16 kB 00:00 2024-04-15T21:00:58.159 INFO:teuthology.orchestra.run.smithi050.stdout:(3/12): protobuf-3.14.0-13.el9.x86_64.rpm 6.7 MB/s | 1.0 MB 00:00 2024-04-15T21:00:58.184 INFO:teuthology.orchestra.run.smithi050.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 2.8 MB/s | 238 kB 00:00 2024-04-15T21:00:58.318 INFO:teuthology.orchestra.run.smithi050.stdout:(5/12): ceph-mgr-dashboard-19.0.0-3084.g87dbfb6 6.3 MB/s | 3.5 MB 00:00 2024-04-15T21:00:58.443 INFO:teuthology.orchestra.run.smithi050.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 155 kB/s | 19 kB 00:00 2024-04-15T21:00:58.510 INFO:teuthology.orchestra.run.smithi050.stdout:(7/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.6 MB/s | 548 kB 00:00 2024-04-15T21:00:58.638 INFO:teuthology.orchestra.run.smithi151.stdout:(1/12): ceph-grafana-dashboards-19.0.0-3084.g87 180 kB/s | 34 kB 00:00 2024-04-15T21:00:58.643 INFO:teuthology.orchestra.run.smithi050.stdout:(8/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 1.3 MB/s | 144 kB 00:00 2024-04-15T21:00:58.685 INFO:teuthology.orchestra.run.smithi050.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 760 kB/s | 31 kB 00:00 2024-04-15T21:00:58.797 INFO:teuthology.orchestra.run.smithi151.stdout:(2/12): ceph-prometheus-alerts-19.0.0-3084.g87d 47 kB/s | 16 kB 00:00 2024-04-15T21:00:58.888 INFO:teuthology.orchestra.run.smithi151.stdout:(3/12): ceph-mgr-dashboard-19.0.0-3084.g87dbfb6 8.0 MB/s | 3.5 MB 00:00 2024-04-15T21:00:58.922 INFO:teuthology.orchestra.run.smithi151.stdout:(4/12): protobuf-3.14.0-13.el9.x86_64.rpm 3.5 MB/s | 1.0 MB 00:00 2024-04-15T21:00:58.956 INFO:teuthology.orchestra.run.smithi151.stdout:(5/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.5 MB/s | 238 kB 00:00 2024-04-15T21:00:59.172 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-3084.g87dbfb63.el9.noa 12/12 2024-04-15T21:00:59.173 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-3084.g87dbfb63.el 1/12 2024-04-15T21:00:59.173 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-3084.g87dbfb63.el9.noa 2/12 2024-04-15T21:00:59.173 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-3084.g87dbfb63.el9 3/12 2024-04-15T21:00:59.173 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-15T21:00:59.173 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-15T21:00:59.173 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-15T21:00:59.173 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-15T21:00:59.173 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-15T21:00:59.173 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-15T21:00:59.173 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-15T21:00:59.173 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-15T21:00:59.289 INFO:teuthology.orchestra.run.smithi151.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 58 kB/s | 19 kB 00:00 2024-04-15T21:00:59.344 INFO:teuthology.orchestra.run.smithi050.stdout:(10/12): python3-routes-2.5.1-5.el9.noarch.rpm 286 kB/s | 188 kB 00:00 2024-04-15T21:00:59.518 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-15T21:00:59.519 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:59.519 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:00:59.519 INFO:teuthology.orchestra.run.smithi174.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-15T21:00:59.519 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-grafana-dashboards-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:00:59.519 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mgr-dashboard-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:00:59.519 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-prometheus-alerts-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:00:59.519 INFO:teuthology.orchestra.run.smithi174.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-15T21:00:59.519 INFO:teuthology.orchestra.run.smithi174.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-15T21:00:59.519 INFO:teuthology.orchestra.run.smithi174.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-15T21:00:59.519 INFO:teuthology.orchestra.run.smithi174.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-15T21:00:59.519 INFO:teuthology.orchestra.run.smithi174.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-15T21:00:59.519 INFO:teuthology.orchestra.run.smithi174.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-15T21:00:59.519 INFO:teuthology.orchestra.run.smithi174.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-15T21:00:59.520 INFO:teuthology.orchestra.run.smithi174.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-15T21:00:59.520 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:00:59.520 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:00:59.632 INFO:teuthology.orchestra.run.smithi151.stdout:(7/12): protobuf-compiler-3.14.0-13.el9.x86_64. 1.1 MB/s | 863 kB 00:00 2024-04-15T21:00:59.657 INFO:teuthology.orchestra.run.smithi151.stdout:(8/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 746 kB/s | 548 kB 00:00 2024-04-15T21:00:59.786 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-15T21:00:59.841 INFO:teuthology.orchestra.run.smithi151.stdout:(9/12): python3-grpcio-1.46.7-10.el9.x86_64.rpm 3.7 MB/s | 2.0 MB 00:00 2024-04-15T21:00:59.866 INFO:teuthology.orchestra.run.smithi151.stdout:(10/12): python3-grpcio-tools-1.46.7-10.el9.x86 617 kB/s | 144 kB 00:00 2024-04-15T21:00:59.883 INFO:teuthology.orchestra.run.smithi151.stdout:(11/12): python3-repoze-lru-0.7-16.el9.noarch.r 136 kB/s | 31 kB 00:00 2024-04-15T21:00:59.917 INFO:teuthology.orchestra.run.smithi151.stdout:(12/12): python3-routes-2.5.1-5.el9.noarch.rpm 2.4 MB/s | 188 kB 00:00 2024-04-15T21:00:59.921 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:00:59.921 INFO:teuthology.orchestra.run.smithi151.stdout:Total 4.4 MB/s | 8.6 MB 00:01 2024-04-15T21:00:59.940 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:00:59.958 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:00:59.958 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:01:00.155 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:01:00.156 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:01:00.319 INFO:teuthology.orchestra.run.smithi050.stdout:(11/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 1.1 MB/s | 2.0 MB 00:01 2024-04-15T21:01:00.344 INFO:teuthology.orchestra.run.smithi050.stdout:(12/12): protobuf-compiler-3.14.0-13.el9.x86_64 395 kB/s | 863 kB 00:02 2024-04-15T21:01:00.349 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:00.349 INFO:teuthology.orchestra.run.smithi050.stdout:Total 2.9 MB/s | 8.6 MB 00:02 2024-04-15T21:01:00.370 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:01:00.379 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:11 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:00.390 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:01:00.390 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:01:00.533 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:00.534 INFO:teuthology.orchestra.run.smithi174.stdout:============================================================================================ 2024-04-15T21:01:00.534 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repository Size 2024-04-15T21:01:00.534 INFO:teuthology.orchestra.run.smithi174.stdout:============================================================================================ 2024-04-15T21:01:00.534 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:01:00.534 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 7.4 M 2024-04-15T21:01:00.534 INFO:teuthology.orchestra.run.smithi174.stdout:Installing dependencies: 2024-04-15T21:01:00.534 INFO:teuthology.orchestra.run.smithi174.stdout: flexiblas x86_64 3.0.4-8.el9 CentOS-AppStream 32 k 2024-04-15T21:01:00.534 INFO:teuthology.orchestra.run.smithi174.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 CentOS-AppStream 3.0 M 2024-04-15T21:01:00.534 INFO:teuthology.orchestra.run.smithi174.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 CentOS-AppStream 17 k 2024-04-15T21:01:00.534 INFO:teuthology.orchestra.run.smithi174.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-15T21:01:00.535 INFO:teuthology.orchestra.run.smithi174.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-15T21:01:00.535 INFO:teuthology.orchestra.run.smithi174.stdout: openblas x86_64 0.3.21-2.el9 CentOS-AppStream 34 k 2024-04-15T21:01:00.535 INFO:teuthology.orchestra.run.smithi174.stdout: openblas-openmp x86_64 0.3.21-2.el9 CentOS-AppStream 4.7 M 2024-04-15T21:01:00.535 INFO:teuthology.orchestra.run.smithi174.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-15T21:01:00.535 INFO:teuthology.orchestra.run.smithi174.stdout: python3-numpy x86_64 1:1.20.1-5.el9 CentOS-AppStream 4.8 M 2024-04-15T21:01:00.535 INFO:teuthology.orchestra.run.smithi174.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 CentOS-AppStream 217 k 2024-04-15T21:01:00.535 INFO:teuthology.orchestra.run.smithi174.stdout: python3-scipy x86_64 1.6.2-8.el9 CentOS-AppStream 16 M 2024-04-15T21:01:00.535 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:00.535 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:01:00.535 INFO:teuthology.orchestra.run.smithi174.stdout:============================================================================================ 2024-04-15T21:01:00.535 INFO:teuthology.orchestra.run.smithi174.stdout:Install 12 Packages 2024-04-15T21:01:00.535 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:00.536 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 37 M 2024-04-15T21:01:00.536 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 209 M 2024-04-15T21:01:00.536 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:01:00.591 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:01:00.591 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:01:00.688 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:01:00.759 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-15T21:01:00.802 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-15T21:01:00.849 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-15T21:01:00.857 INFO:teuthology.orchestra.run.smithi174.stdout:(1/12): flexiblas-3.0.4-8.el9.x86_64.rpm 226 kB/s | 32 kB 00:00 2024-04-15T21:01:00.888 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-15T21:01:00.899 INFO:teuthology.orchestra.run.smithi174.stdout:(2/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 420 kB/s | 17 kB 00:00 2024-04-15T21:01:00.975 INFO:teuthology.orchestra.run.smithi174.stdout:(3/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 12 MB/s | 3.0 MB 00:00 2024-04-15T21:01:01.000 INFO:teuthology.orchestra.run.smithi174.stdout:(4/12): openblas-0.3.21-2.el9.x86_64.rpm 349 kB/s | 34 kB 00:00 2024-04-15T21:01:01.005 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-15T21:01:01.132 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-15T21:01:01.134 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:01:01.192 INFO:teuthology.orchestra.run.smithi174.stdout:(5/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 22 MB/s | 4.7 MB 00:00 2024-04-15T21:01:01.212 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-15T21:01:01.226 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-15T21:01:01.250 INFO:teuthology.orchestra.run.smithi174.stdout:(6/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 19 MB/s | 4.8 MB 00:00 2024-04-15T21:01:01.256 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-15T21:01:01.275 INFO:teuthology.orchestra.run.smithi174.stdout:(7/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.6 MB/s | 217 kB 00:00 2024-04-15T21:01:01.287 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-15T21:01:01.304 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-15T21:01:01.324 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-15T21:01:01.332 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-15T21:01:01.356 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-3084.g87dbfb63.el9 10/12 2024-04-15T21:01:01.428 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-15T21:01:01.501 INFO:teuthology.orchestra.run.smithi174.stdout:(8/12): libgfortran-11.4.1-3.el9.x86_64.rpm 3.5 MB/s | 803 kB 00:00 2024-04-15T21:01:01.571 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-15T21:01:01.663 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-15T21:01:01.713 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-15T21:01:01.735 INFO:teuthology.orchestra.run.smithi174.stdout:(9/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 32 MB/s | 16 MB 00:00 2024-04-15T21:01:01.749 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-15T21:01:01.782 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-3084.g87dbfb63.el9 10/12 2024-04-15T21:01:01.784 INFO:teuthology.orchestra.run.smithi174.stdout:(10/12): libquadmath-11.4.1-3.el9.x86_64.rpm 695 kB/s | 195 kB 00:00 2024-04-15T21:01:02.412 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-3084.g87dbfb63.el 11/12 2024-04-15T21:01:02.449 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-3084.g87dbfb63.el9.noa 12/12 2024-04-15T21:01:02.619 INFO:teuthology.orchestra.run.smithi174.stdout:(11/12): ceph-mgr-diskprediction-local-19.0.0-3 3.9 MB/s | 7.4 MB 00:01 2024-04-15T21:01:02.652 INFO:teuthology.orchestra.run.smithi174.stdout:(12/12): python3-devel-3.9.17-2.el9.x86_64.rpm 268 kB/s | 245 kB 00:00 2024-04-15T21:01:02.654 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:02.655 INFO:teuthology.orchestra.run.smithi174.stdout:Total 17 MB/s | 37 MB 00:02 2024-04-15T21:01:02.696 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:01:02.721 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:01:02.721 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:01:02.886 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-3084.g87dbfb63.el 11/12 2024-04-15T21:01:02.923 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-3084.g87dbfb63.el9.noa 12/12 2024-04-15T21:01:03.072 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:01:03.073 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:01:03.787 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:01:03.866 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 1/12 2024-04-15T21:01:03.898 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-15T21:01:03.920 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-3084.g87dbfb63.el9.noa 12/12 2024-04-15T21:01:03.920 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-3084.g87dbfb63.el 1/12 2024-04-15T21:01:03.920 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-3084.g87dbfb63.el9.noa 2/12 2024-04-15T21:01:03.921 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-3084.g87dbfb63.el9 3/12 2024-04-15T21:01:03.921 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-15T21:01:03.921 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-15T21:01:03.921 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-15T21:01:03.921 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-15T21:01:03.921 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-15T21:01:03.921 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-15T21:01:03.921 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-15T21:01:03.921 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-15T21:01:03.989 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 3/12 2024-04-15T21:01:04.026 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-15T21:01:04.207 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T21:01:04.250 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-3084.g87dbfb63.el9.noa 12/12 2024-04-15T21:01:04.250 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-3084.g87dbfb63.el 1/12 2024-04-15T21:01:04.250 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-3084.g87dbfb63.el9.noa 2/12 2024-04-15T21:01:04.250 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-3084.g87dbfb63.el9 3/12 2024-04-15T21:01:04.251 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-15T21:01:04.251 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-15T21:01:04.251 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-15T21:01:04.251 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-15T21:01:04.251 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-15T21:01:04.251 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-15T21:01:04.251 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-15T21:01:04.251 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-15T21:01:04.251 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T21:01:04.288 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-15T21:01:04.289 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:04.289 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:01:04.289 INFO:teuthology.orchestra.run.smithi151.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-15T21:01:04.289 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-grafana-dashboards-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:04.289 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-dashboard-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:04.289 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-prometheus-alerts-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:04.289 INFO:teuthology.orchestra.run.smithi151.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-15T21:01:04.289 INFO:teuthology.orchestra.run.smithi151.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-15T21:01:04.289 INFO:teuthology.orchestra.run.smithi151.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-15T21:01:04.289 INFO:teuthology.orchestra.run.smithi151.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-15T21:01:04.289 INFO:teuthology.orchestra.run.smithi151.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-15T21:01:04.289 INFO:teuthology.orchestra.run.smithi151.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-15T21:01:04.289 INFO:teuthology.orchestra.run.smithi151.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-15T21:01:04.290 INFO:teuthology.orchestra.run.smithi151.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-15T21:01:04.290 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:04.290 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:04.317 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-15T21:01:04.551 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-15T21:01:04.597 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-15T21:01:04.598 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:04.598 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:01:04.598 INFO:teuthology.orchestra.run.smithi050.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-15T21:01:04.598 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-grafana-dashboards-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:04.598 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-dashboard-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:04.598 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-prometheus-alerts-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:04.598 INFO:teuthology.orchestra.run.smithi050.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-15T21:01:04.598 INFO:teuthology.orchestra.run.smithi050.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-15T21:01:04.598 INFO:teuthology.orchestra.run.smithi050.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-15T21:01:04.598 INFO:teuthology.orchestra.run.smithi050.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-15T21:01:04.598 INFO:teuthology.orchestra.run.smithi050.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-15T21:01:04.599 INFO:teuthology.orchestra.run.smithi050.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-15T21:01:04.599 INFO:teuthology.orchestra.run.smithi050.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-15T21:01:04.599 INFO:teuthology.orchestra.run.smithi050.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-15T21:01:04.599 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:04.599 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:04.833 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-15T21:01:04.973 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-15T21:01:05.070 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-15T21:01:05.133 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:11 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:05.293 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:05.294 INFO:teuthology.orchestra.run.smithi151.stdout:============================================================================================ 2024-04-15T21:01:05.294 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-04-15T21:01:05.294 INFO:teuthology.orchestra.run.smithi151.stdout:============================================================================================ 2024-04-15T21:01:05.294 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:01:05.295 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 7.4 M 2024-04-15T21:01:05.295 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-04-15T21:01:05.295 INFO:teuthology.orchestra.run.smithi151.stdout: flexiblas x86_64 3.0.4-8.el9 CentOS-AppStream 32 k 2024-04-15T21:01:05.295 INFO:teuthology.orchestra.run.smithi151.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 CentOS-AppStream 3.0 M 2024-04-15T21:01:05.295 INFO:teuthology.orchestra.run.smithi151.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 CentOS-AppStream 17 k 2024-04-15T21:01:05.295 INFO:teuthology.orchestra.run.smithi151.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-15T21:01:05.295 INFO:teuthology.orchestra.run.smithi151.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-15T21:01:05.295 INFO:teuthology.orchestra.run.smithi151.stdout: openblas x86_64 0.3.21-2.el9 CentOS-AppStream 34 k 2024-04-15T21:01:05.295 INFO:teuthology.orchestra.run.smithi151.stdout: openblas-openmp x86_64 0.3.21-2.el9 CentOS-AppStream 4.7 M 2024-04-15T21:01:05.295 INFO:teuthology.orchestra.run.smithi151.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-15T21:01:05.295 INFO:teuthology.orchestra.run.smithi151.stdout: python3-numpy x86_64 1:1.20.1-5.el9 CentOS-AppStream 4.8 M 2024-04-15T21:01:05.295 INFO:teuthology.orchestra.run.smithi151.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 CentOS-AppStream 217 k 2024-04-15T21:01:05.296 INFO:teuthology.orchestra.run.smithi151.stdout: python3-scipy x86_64 1.6.2-8.el9 CentOS-AppStream 16 M 2024-04-15T21:01:05.296 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:05.296 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:01:05.296 INFO:teuthology.orchestra.run.smithi151.stdout:============================================================================================ 2024-04-15T21:01:05.296 INFO:teuthology.orchestra.run.smithi151.stdout:Install 12 Packages 2024-04-15T21:01:05.296 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:05.297 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 37 M 2024-04-15T21:01:05.297 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 209 M 2024-04-15T21:01:05.297 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:01:05.425 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:14 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:05.584 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:05.585 INFO:teuthology.orchestra.run.smithi050.stdout:============================================================================================ 2024-04-15T21:01:05.585 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-04-15T21:01:05.585 INFO:teuthology.orchestra.run.smithi050.stdout:============================================================================================ 2024-04-15T21:01:05.585 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:01:05.585 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 7.4 M 2024-04-15T21:01:05.585 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-04-15T21:01:05.585 INFO:teuthology.orchestra.run.smithi050.stdout: flexiblas x86_64 3.0.4-8.el9 CentOS-AppStream 32 k 2024-04-15T21:01:05.585 INFO:teuthology.orchestra.run.smithi050.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 CentOS-AppStream 3.0 M 2024-04-15T21:01:05.585 INFO:teuthology.orchestra.run.smithi050.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 CentOS-AppStream 17 k 2024-04-15T21:01:05.585 INFO:teuthology.orchestra.run.smithi050.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-15T21:01:05.586 INFO:teuthology.orchestra.run.smithi050.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-15T21:01:05.586 INFO:teuthology.orchestra.run.smithi050.stdout: openblas x86_64 0.3.21-2.el9 CentOS-AppStream 34 k 2024-04-15T21:01:05.586 INFO:teuthology.orchestra.run.smithi050.stdout: openblas-openmp x86_64 0.3.21-2.el9 CentOS-AppStream 4.7 M 2024-04-15T21:01:05.586 INFO:teuthology.orchestra.run.smithi050.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-15T21:01:05.586 INFO:teuthology.orchestra.run.smithi050.stdout: python3-numpy x86_64 1:1.20.1-5.el9 CentOS-AppStream 4.8 M 2024-04-15T21:01:05.586 INFO:teuthology.orchestra.run.smithi050.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 CentOS-AppStream 217 k 2024-04-15T21:01:05.586 INFO:teuthology.orchestra.run.smithi050.stdout: python3-scipy x86_64 1.6.2-8.el9 CentOS-AppStream 16 M 2024-04-15T21:01:05.586 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:05.586 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:01:05.586 INFO:teuthology.orchestra.run.smithi050.stdout:============================================================================================ 2024-04-15T21:01:05.586 INFO:teuthology.orchestra.run.smithi050.stdout:Install 12 Packages 2024-04-15T21:01:05.586 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:05.587 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 37 M 2024-04-15T21:01:05.587 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 209 M 2024-04-15T21:01:05.587 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:01:06.140 INFO:teuthology.orchestra.run.smithi151.stdout:(1/12): flexiblas-3.0.4-8.el9.x86_64.rpm 168 kB/s | 32 kB 00:00 2024-04-15T21:01:06.187 INFO:teuthology.orchestra.run.smithi050.stdout:(1/12): flexiblas-3.0.4-8.el9.x86_64.rpm 176 kB/s | 32 kB 00:00 2024-04-15T21:01:06.190 INFO:teuthology.orchestra.run.smithi151.stdout:(2/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 344 kB/s | 17 kB 00:00 2024-04-15T21:01:06.246 INFO:teuthology.orchestra.run.smithi050.stdout:(2/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 298 kB/s | 17 kB 00:00 2024-04-15T21:01:06.257 INFO:teuthology.orchestra.run.smithi151.stdout:(3/12): openblas-0.3.21-2.el9.x86_64.rpm 511 kB/s | 34 kB 00:00 2024-04-15T21:01:06.304 INFO:teuthology.orchestra.run.smithi050.stdout:(3/12): openblas-0.3.21-2.el9.x86_64.rpm 585 kB/s | 34 kB 00:00 2024-04-15T21:01:06.314 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T21:01:06.366 INFO:teuthology.orchestra.run.smithi151.stdout:(4/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 7.2 MB/s | 3.0 MB 00:00 2024-04-15T21:01:06.388 INFO:teuthology.orchestra.run.smithi050.stdout:(4/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 7.9 MB/s | 3.0 MB 00:00 2024-04-15T21:01:06.733 INFO:teuthology.orchestra.run.smithi151.stdout:(5/12): ceph-mgr-diskprediction-local-19.0.0-30 9.5 MB/s | 7.4 MB 00:00 2024-04-15T21:01:06.800 INFO:teuthology.orchestra.run.smithi151.stdout:(6/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 8.7 MB/s | 4.7 MB 00:00 2024-04-15T21:01:06.900 INFO:teuthology.orchestra.run.smithi151.stdout:(7/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 9.0 MB/s | 4.8 MB 00:00 2024-04-15T21:01:06.934 INFO:teuthology.orchestra.run.smithi151.stdout:(8/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 1.1 MB/s | 217 kB 00:00 2024-04-15T21:01:07.324 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-15T21:01:07.346 INFO:teuthology.orchestra.run.smithi050.stdout:(5/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 4.6 MB/s | 4.7 MB 00:01 2024-04-15T21:01:07.347 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-3084.g87dbf 12/12 2024-04-15T21:01:07.501 INFO:teuthology.orchestra.run.smithi151.stdout:(9/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 22 MB/s | 16 MB 00:00 2024-04-15T21:01:07.505 INFO:teuthology.orchestra.run.smithi050.stdout:(6/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 4.3 MB/s | 4.8 MB 00:01 2024-04-15T21:01:07.530 INFO:teuthology.orchestra.run.smithi050.stdout:(7/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 1.2 MB/s | 217 kB 00:00 2024-04-15T21:01:07.643 INFO:teuthology.orchestra.run.smithi151.stdout:(10/12): libquadmath-11.4.1-3.el9.x86_64.rpm 276 kB/s | 195 kB 00:00 2024-04-15T21:01:08.576 INFO:teuthology.orchestra.run.smithi151.stdout:(11/12): python3-devel-3.9.17-2.el9.x86_64.rpm 228 kB/s | 245 kB 00:01 2024-04-15T21:01:08.614 INFO:teuthology.orchestra.run.smithi050.stdout:(8/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 14 MB/s | 16 MB 00:01 2024-04-15T21:01:09.364 INFO:teuthology.orchestra.run.smithi050.stdout:(9/12): libgfortran-11.4.1-3.el9.x86_64.rpm 438 kB/s | 803 kB 00:01 2024-04-15T21:01:09.514 INFO:teuthology.orchestra.run.smithi050.stdout:(10/12): libquadmath-11.4.1-3.el9.x86_64.rpm 217 kB/s | 195 kB 00:00 2024-04-15T21:01:09.839 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-3084.g87dbf 12/12 2024-04-15T21:01:09.839 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-3084.g87dbf 1/12 2024-04-15T21:01:09.839 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 2/12 2024-04-15T21:01:09.839 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 3/12 2024-04-15T21:01:09.839 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 4/12 2024-04-15T21:01:09.839 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T21:01:09.839 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T21:01:09.840 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 7/12 2024-04-15T21:01:09.840 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 8/12 2024-04-15T21:01:09.840 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 9/12 2024-04-15T21:01:09.840 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 10/12 2024-04-15T21:01:09.840 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 11/12 2024-04-15T21:01:10.110 INFO:teuthology.orchestra.run.smithi151.stdout:(12/12): libgfortran-11.4.1-3.el9.x86_64.rpm 250 kB/s | 803 kB 00:03 2024-04-15T21:01:10.112 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:10.113 INFO:teuthology.orchestra.run.smithi151.stdout:Total 7.7 MB/s | 37 MB 00:04 2024-04-15T21:01:10.159 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:01:10.185 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:01:10.185 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:01:10.243 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 12/12 2024-04-15T21:01:10.244 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:10.244 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:01:10.244 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mgr-diskprediction-local-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:10.244 INFO:teuthology.orchestra.run.smithi174.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-15T21:01:10.244 INFO:teuthology.orchestra.run.smithi174.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-15T21:01:10.244 INFO:teuthology.orchestra.run.smithi174.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-15T21:01:10.244 INFO:teuthology.orchestra.run.smithi174.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-15T21:01:10.244 INFO:teuthology.orchestra.run.smithi174.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-15T21:01:10.244 INFO:teuthology.orchestra.run.smithi174.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-15T21:01:10.244 INFO:teuthology.orchestra.run.smithi174.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-15T21:01:10.244 INFO:teuthology.orchestra.run.smithi174.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-15T21:01:10.244 INFO:teuthology.orchestra.run.smithi174.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-15T21:01:10.245 INFO:teuthology.orchestra.run.smithi174.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-15T21:01:10.245 INFO:teuthology.orchestra.run.smithi174.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-15T21:01:10.245 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:10.245 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:10.541 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:01:10.541 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:01:10.623 INFO:teuthology.orchestra.run.smithi050.stdout:(11/12): python3-devel-3.9.17-2.el9.x86_64.rpm 195 kB/s | 245 kB 00:01 2024-04-15T21:01:10.646 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install ceph-mgr-rook 2024-04-15T21:01:11.240 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:22 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:11.248 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:01:11.333 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 1/12 2024-04-15T21:01:11.372 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-15T21:01:11.394 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:11.396 INFO:teuthology.orchestra.run.smithi174.stdout:======================================================================================== 2024-04-15T21:01:11.396 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repository Size 2024-04-15T21:01:11.396 INFO:teuthology.orchestra.run.smithi174.stdout:======================================================================================== 2024-04-15T21:01:11.396 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:01:11.396 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mgr-rook noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 49 k 2024-04-15T21:01:11.396 INFO:teuthology.orchestra.run.smithi174.stdout:Installing dependencies: 2024-04-15T21:01:11.396 INFO:teuthology.orchestra.run.smithi174.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-15T21:01:11.396 INFO:teuthology.orchestra.run.smithi174.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-15T21:01:11.396 INFO:teuthology.orchestra.run.smithi174.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-15T21:01:11.397 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jsonpatch noarch 1.21-16.el9 CentOS-AppStream 24 k 2024-04-15T21:01:11.397 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jsonpointer noarch 2.0-4.el9 CentOS-AppStream 18 k 2024-04-15T21:01:11.397 INFO:teuthology.orchestra.run.smithi174.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-15T21:01:11.397 INFO:teuthology.orchestra.run.smithi174.stdout: python3-oauthlib noarch 3.1.1-5.el9 CentOS-AppStream 174 k 2024-04-15T21:01:11.397 INFO:teuthology.orchestra.run.smithi174.stdout: python3-pyasn1 noarch 0.4.8-6.el9 CentOS-AppStream 132 k 2024-04-15T21:01:11.397 INFO:teuthology.orchestra.run.smithi174.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 CentOS-AppStream 211 k 2024-04-15T21:01:11.397 INFO:teuthology.orchestra.run.smithi174.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 CentOS-AppStream 43 k 2024-04-15T21:01:11.397 INFO:teuthology.orchestra.run.smithi174.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-15T21:01:11.397 INFO:teuthology.orchestra.run.smithi174.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-15T21:01:11.397 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:11.397 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:01:11.397 INFO:teuthology.orchestra.run.smithi174.stdout:======================================================================================== 2024-04-15T21:01:11.397 INFO:teuthology.orchestra.run.smithi174.stdout:Install 13 Packages 2024-04-15T21:01:11.398 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:11.398 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 2.0 M 2024-04-15T21:01:11.398 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 26 M 2024-04-15T21:01:11.398 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:01:11.465 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 3/12 2024-04-15T21:01:11.501 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-15T21:01:11.679 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T21:01:11.709 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T21:01:11.739 INFO:teuthology.orchestra.run.smithi174.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 116 kB/s | 18 kB 00:00 2024-04-15T21:01:11.764 INFO:teuthology.orchestra.run.smithi174.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 135 kB/s | 24 kB 00:00 2024-04-15T21:01:11.785 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-15T21:01:11.815 INFO:teuthology.orchestra.run.smithi174.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.3 MB/s | 174 kB 00:00 2024-04-15T21:01:11.840 INFO:teuthology.orchestra.run.smithi174.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.7 MB/s | 132 kB 00:00 2024-04-15T21:01:11.865 INFO:teuthology.orchestra.run.smithi174.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 4.1 MB/s | 211 kB 00:00 2024-04-15T21:01:11.916 INFO:teuthology.orchestra.run.smithi174.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 568 kB/s | 43 kB 00:00 2024-04-15T21:01:11.941 INFO:teuthology.orchestra.run.smithi174.stdout:(7/13): ceph-mgr-rook-19.0.0-3084.g87dbfb63.el9 138 kB/s | 49 kB 00:00 2024-04-15T21:01:12.148 INFO:teuthology.orchestra.run.smithi050.stdout:(12/12): ceph-mgr-diskprediction-local-19.0.0-3 1.2 MB/s | 7.4 MB 00:06 2024-04-15T21:01:12.151 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:12.151 INFO:teuthology.orchestra.run.smithi050.stdout:Total 5.6 MB/s | 37 MB 00:06 2024-04-15T21:01:12.197 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:01:12.224 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:01:12.224 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:01:12.233 INFO:teuthology.orchestra.run.smithi174.stdout:(8/13): python3-certifi-2021.10.8-2.el9.noarch. 47 kB/s | 15 kB 00:00 2024-04-15T21:01:12.283 INFO:teuthology.orchestra.run.smithi174.stdout:(9/13): python3-cachetools-4.2.4-1.el9.noarch.r 77 kB/s | 32 kB 00:00 2024-04-15T21:01:12.444 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-15T21:01:12.556 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-15T21:01:12.599 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:01:12.599 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:01:12.658 INFO:teuthology.orchestra.run.smithi174.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 158 kB/s | 59 kB 00:00 2024-04-15T21:01:12.692 INFO:teuthology.orchestra.run.smithi174.stdout:(11/13): python3-google-auth-2.28.2-1.el9.noarc 270 kB/s | 203 kB 00:00 2024-04-15T21:01:12.950 INFO:teuthology.orchestra.run.smithi174.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 307 kB/s | 90 kB 00:00 2024-04-15T21:01:13.101 INFO:teuthology.orchestra.run.smithi174.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 1.2 MB/s | 1.0 MB 00:00 2024-04-15T21:01:13.103 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:13.103 INFO:teuthology.orchestra.run.smithi174.stdout:Total 1.2 MB/s | 2.0 MB 00:01 2024-04-15T21:01:13.104 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:01:13.119 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:01:13.119 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:01:13.216 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:01:13.217 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:01:13.329 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:01:13.413 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 1/12 2024-04-15T21:01:13.444 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-15T21:01:13.544 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 3/12 2024-04-15T21:01:13.589 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-15T21:01:13.743 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:01:13.772 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T21:01:13.787 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T21:01:13.821 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T21:01:13.899 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-15T21:01:13.911 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-15T21:01:13.959 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-15T21:01:14.016 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-15T21:01:14.052 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-15T21:01:14.093 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-15T21:01:14.188 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-15T21:01:14.288 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-15T21:01:14.336 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-15T21:01:14.596 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-15T21:01:14.714 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-15T21:01:14.825 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-15T21:01:14.856 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-3084.g87dbf 12/12 2024-04-15T21:01:15.062 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-15T21:01:15.110 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-15T21:01:15.144 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-15T21:01:15.192 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-15T21:01:15.214 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-mgr-rook-2:19.0.0-3084.g87dbfb63.el9.noarch 13/13 2024-04-15T21:01:15.986 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-3084.g87dbfb63.el9.noarch 13/13 2024-04-15T21:01:15.986 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-mgr-rook-2:19.0.0-3084.g87dbfb63.el9.noarch 1/13 2024-04-15T21:01:15.986 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-15T21:01:15.986 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-15T21:01:15.986 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-15T21:01:15.986 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-15T21:01:15.987 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-15T21:01:15.987 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-15T21:01:15.987 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-15T21:01:15.987 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-15T21:01:15.987 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-15T21:01:15.987 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-15T21:01:15.987 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-15T21:01:16.031 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T21:01:16.359 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-15T21:01:16.359 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:16.359 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:01:16.359 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mgr-rook-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:16.359 INFO:teuthology.orchestra.run.smithi174.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-15T21:01:16.360 INFO:teuthology.orchestra.run.smithi174.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-15T21:01:16.360 INFO:teuthology.orchestra.run.smithi174.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-15T21:01:16.360 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-15T21:01:16.360 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-15T21:01:16.360 INFO:teuthology.orchestra.run.smithi174.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-15T21:01:16.360 INFO:teuthology.orchestra.run.smithi174.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-15T21:01:16.360 INFO:teuthology.orchestra.run.smithi174.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-15T21:01:16.360 INFO:teuthology.orchestra.run.smithi174.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-15T21:01:16.360 INFO:teuthology.orchestra.run.smithi174.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-15T21:01:16.360 INFO:teuthology.orchestra.run.smithi174.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-15T21:01:16.360 INFO:teuthology.orchestra.run.smithi174.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-15T21:01:16.360 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:16.360 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:16.610 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install ceph-mgr-cephadm 2024-04-15T21:01:17.128 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-15T21:01:17.154 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-3084.g87dbf 12/12 2024-04-15T21:01:17.185 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:28 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:17.337 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:17.338 INFO:teuthology.orchestra.run.smithi174.stdout:======================================================================================== 2024-04-15T21:01:17.338 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repository Size 2024-04-15T21:01:17.338 INFO:teuthology.orchestra.run.smithi174.stdout:======================================================================================== 2024-04-15T21:01:17.338 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:01:17.338 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mgr-cephadm noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 142 k 2024-04-15T21:01:17.338 INFO:teuthology.orchestra.run.smithi174.stdout:Installing dependencies: 2024-04-15T21:01:17.338 INFO:teuthology.orchestra.run.smithi174.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-15T21:01:17.338 INFO:teuthology.orchestra.run.smithi174.stdout: python3-babel noarch 2.9.1-2.el9 CentOS-AppStream 5.8 M 2024-04-15T21:01:17.338 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-15T21:01:17.338 INFO:teuthology.orchestra.run.smithi174.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-15T21:01:17.338 INFO:teuthology.orchestra.run.smithi174.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-15T21:01:17.338 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:17.338 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:01:17.339 INFO:teuthology.orchestra.run.smithi174.stdout:======================================================================================== 2024-04-15T21:01:17.339 INFO:teuthology.orchestra.run.smithi174.stdout:Install 6 Packages 2024-04-15T21:01:17.339 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:17.339 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 6.8 M 2024-04-15T21:01:17.339 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 33 M 2024-04-15T21:01:17.339 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:01:17.617 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-3084.g87dbf 12/12 2024-04-15T21:01:17.617 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-3084.g87dbf 1/12 2024-04-15T21:01:17.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 2/12 2024-04-15T21:01:17.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 3/12 2024-04-15T21:01:17.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 4/12 2024-04-15T21:01:17.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T21:01:17.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T21:01:17.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 7/12 2024-04-15T21:01:17.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 8/12 2024-04-15T21:01:17.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 9/12 2024-04-15T21:01:17.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 10/12 2024-04-15T21:01:17.618 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 11/12 2024-04-15T21:01:18.102 INFO:teuthology.orchestra.run.smithi174.stdout:(1/6): ceph-mgr-cephadm-19.0.0-3084.g87dbfb63.e 609 kB/s | 142 kB 00:00 2024-04-15T21:01:18.116 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 12/12 2024-04-15T21:01:18.116 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:18.116 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:01:18.116 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-diskprediction-local-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:18.116 INFO:teuthology.orchestra.run.smithi151.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-15T21:01:18.116 INFO:teuthology.orchestra.run.smithi151.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-15T21:01:18.116 INFO:teuthology.orchestra.run.smithi151.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-15T21:01:18.116 INFO:teuthology.orchestra.run.smithi151.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-15T21:01:18.116 INFO:teuthology.orchestra.run.smithi151.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-15T21:01:18.116 INFO:teuthology.orchestra.run.smithi151.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-15T21:01:18.116 INFO:teuthology.orchestra.run.smithi151.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-15T21:01:18.116 INFO:teuthology.orchestra.run.smithi151.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-15T21:01:18.117 INFO:teuthology.orchestra.run.smithi151.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-15T21:01:18.117 INFO:teuthology.orchestra.run.smithi151.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-15T21:01:18.117 INFO:teuthology.orchestra.run.smithi151.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-15T21:01:18.117 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:18.117 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:18.486 INFO:teuthology.orchestra.run.smithi174.stdout:(2/6): python3-babel-2.9.1-2.el9.noarch.rpm 9.4 MB/s | 5.8 MB 00:00 2024-04-15T21:01:18.556 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-mgr-rook 2024-04-15T21:01:19.020 INFO:teuthology.orchestra.run.smithi174.stdout:(3/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 215 kB/s | 248 kB 00:01 2024-04-15T21:01:19.136 INFO:teuthology.orchestra.run.smithi174.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 89 kB/s | 58 kB 00:00 2024-04-15T21:01:19.148 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:25 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:19.302 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:19.303 INFO:teuthology.orchestra.run.smithi151.stdout:======================================================================================== 2024-04-15T21:01:19.304 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-04-15T21:01:19.304 INFO:teuthology.orchestra.run.smithi151.stdout:======================================================================================== 2024-04-15T21:01:19.304 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:01:19.304 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-rook noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 49 k 2024-04-15T21:01:19.304 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-04-15T21:01:19.304 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-15T21:01:19.304 INFO:teuthology.orchestra.run.smithi151.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-15T21:01:19.304 INFO:teuthology.orchestra.run.smithi151.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-15T21:01:19.304 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jsonpatch noarch 1.21-16.el9 CentOS-AppStream 24 k 2024-04-15T21:01:19.304 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jsonpointer noarch 2.0-4.el9 CentOS-AppStream 18 k 2024-04-15T21:01:19.304 INFO:teuthology.orchestra.run.smithi151.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-15T21:01:19.304 INFO:teuthology.orchestra.run.smithi151.stdout: python3-oauthlib noarch 3.1.1-5.el9 CentOS-AppStream 174 k 2024-04-15T21:01:19.305 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pyasn1 noarch 0.4.8-6.el9 CentOS-AppStream 132 k 2024-04-15T21:01:19.305 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 CentOS-AppStream 211 k 2024-04-15T21:01:19.305 INFO:teuthology.orchestra.run.smithi151.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 CentOS-AppStream 43 k 2024-04-15T21:01:19.305 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-15T21:01:19.305 INFO:teuthology.orchestra.run.smithi151.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-15T21:01:19.305 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:19.305 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:01:19.305 INFO:teuthology.orchestra.run.smithi151.stdout:======================================================================================== 2024-04-15T21:01:19.305 INFO:teuthology.orchestra.run.smithi151.stdout:Install 13 Packages 2024-04-15T21:01:19.305 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:19.306 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 2.0 M 2024-04-15T21:01:19.306 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 26 M 2024-04-15T21:01:19.306 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:01:19.737 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-3084.g87dbf 12/12 2024-04-15T21:01:19.738 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-3084.g87dbf 1/12 2024-04-15T21:01:19.738 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 2/12 2024-04-15T21:01:19.738 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 3/12 2024-04-15T21:01:19.738 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 4/12 2024-04-15T21:01:19.738 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T21:01:19.738 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T21:01:19.738 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 7/12 2024-04-15T21:01:19.738 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 8/12 2024-04-15T21:01:19.738 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 9/12 2024-04-15T21:01:19.738 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 10/12 2024-04-15T21:01:19.738 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 11/12 2024-04-15T21:01:19.745 INFO:teuthology.orchestra.run.smithi174.stdout:(5/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 334 kB/s | 548 kB 00:01 2024-04-15T21:01:19.770 INFO:teuthology.orchestra.run.smithi174.stdout:(6/6): python3-typing-extensions-4.4.0-2.el9.no 68 kB/s | 51 kB 00:00 2024-04-15T21:01:19.773 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:19.773 INFO:teuthology.orchestra.run.smithi174.stdout:Total 2.8 MB/s | 6.8 MB 00:02 2024-04-15T21:01:19.786 INFO:teuthology.orchestra.run.smithi151.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 183 kB/s | 24 kB 00:00 2024-04-15T21:01:19.786 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:01:19.797 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:01:19.797 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:01:19.811 INFO:teuthology.orchestra.run.smithi151.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 114 kB/s | 18 kB 00:00 2024-04-15T21:01:19.862 INFO:teuthology.orchestra.run.smithi151.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.3 MB/s | 174 kB 00:00 2024-04-15T21:01:19.887 INFO:teuthology.orchestra.run.smithi151.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.7 MB/s | 132 kB 00:00 2024-04-15T21:01:19.887 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:01:19.888 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:01:19.912 INFO:teuthology.orchestra.run.smithi151.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 4.1 MB/s | 211 kB 00:00 2024-04-15T21:01:19.938 INFO:teuthology.orchestra.run.smithi151.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 853 kB/s | 43 kB 00:00 2024-04-15T21:01:19.963 INFO:teuthology.orchestra.run.smithi151.stdout:(7/13): ceph-mgr-rook-19.0.0-3084.g87dbfb63.el9 159 kB/s | 49 kB 00:00 2024-04-15T21:01:20.055 INFO:teuthology.orchestra.run.smithi151.stdout:(8/13): python3-certifi-2021.10.8-2.el9.noarch. 128 kB/s | 15 kB 00:00 2024-04-15T21:01:20.072 INFO:teuthology.orchestra.run.smithi151.stdout:(9/13): python3-cachetools-4.2.4-1.el9.noarch.r 202 kB/s | 32 kB 00:00 2024-04-15T21:01:20.172 INFO:teuthology.orchestra.run.smithi151.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 590 kB/s | 59 kB 00:00 2024-04-15T21:01:20.184 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:01:20.197 INFO:teuthology.orchestra.run.smithi151.stdout:(11/13): python3-google-auth-2.28.2-1.el9.noarc 865 kB/s | 203 kB 00:00 2024-04-15T21:01:20.249 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 12/12 2024-04-15T21:01:20.249 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:20.249 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:01:20.249 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-diskprediction-local-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:20.249 INFO:teuthology.orchestra.run.smithi050.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-15T21:01:20.249 INFO:teuthology.orchestra.run.smithi050.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-15T21:01:20.250 INFO:teuthology.orchestra.run.smithi050.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-15T21:01:20.250 INFO:teuthology.orchestra.run.smithi050.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-15T21:01:20.250 INFO:teuthology.orchestra.run.smithi050.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-15T21:01:20.250 INFO:teuthology.orchestra.run.smithi050.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-15T21:01:20.250 INFO:teuthology.orchestra.run.smithi050.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-15T21:01:20.250 INFO:teuthology.orchestra.run.smithi050.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-15T21:01:20.250 INFO:teuthology.orchestra.run.smithi050.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-15T21:01:20.250 INFO:teuthology.orchestra.run.smithi050.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-15T21:01:20.250 INFO:teuthology.orchestra.run.smithi050.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-15T21:01:20.250 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:20.250 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:20.273 INFO:teuthology.orchestra.run.smithi151.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 893 kB/s | 90 kB 00:00 2024-04-15T21:01:20.307 INFO:teuthology.orchestra.run.smithi151.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 4.1 MB/s | 1.0 MB 00:00 2024-04-15T21:01:20.308 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:20.309 INFO:teuthology.orchestra.run.smithi151.stdout:Total 2.0 MB/s | 2.0 MB 00:01 2024-04-15T21:01:20.309 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:01:20.322 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:01:20.323 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:01:20.359 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-15T21:01:20.404 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-15T21:01:20.413 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:01:20.413 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:01:20.638 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-mgr-rook 2024-04-15T21:01:20.919 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-15T21:01:20.931 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:01:21.008 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-15T21:01:21.070 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-15T21:01:21.100 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 6/6 2024-04-15T21:01:21.105 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-15T21:01:21.193 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-15T21:01:21.232 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:30 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:21.256 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-15T21:01:21.294 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-15T21:01:21.335 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-15T21:01:21.392 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:21.393 INFO:teuthology.orchestra.run.smithi050.stdout:======================================================================================== 2024-04-15T21:01:21.393 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-04-15T21:01:21.393 INFO:teuthology.orchestra.run.smithi050.stdout:======================================================================================== 2024-04-15T21:01:21.393 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:01:21.393 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-rook noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 49 k 2024-04-15T21:01:21.393 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-04-15T21:01:21.393 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-15T21:01:21.393 INFO:teuthology.orchestra.run.smithi050.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-15T21:01:21.393 INFO:teuthology.orchestra.run.smithi050.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-15T21:01:21.393 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jsonpatch noarch 1.21-16.el9 CentOS-AppStream 24 k 2024-04-15T21:01:21.393 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jsonpointer noarch 2.0-4.el9 CentOS-AppStream 18 k 2024-04-15T21:01:21.393 INFO:teuthology.orchestra.run.smithi050.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-15T21:01:21.394 INFO:teuthology.orchestra.run.smithi050.stdout: python3-oauthlib noarch 3.1.1-5.el9 CentOS-AppStream 174 k 2024-04-15T21:01:21.394 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pyasn1 noarch 0.4.8-6.el9 CentOS-AppStream 132 k 2024-04-15T21:01:21.394 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 CentOS-AppStream 211 k 2024-04-15T21:01:21.394 INFO:teuthology.orchestra.run.smithi050.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 CentOS-AppStream 43 k 2024-04-15T21:01:21.394 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-15T21:01:21.394 INFO:teuthology.orchestra.run.smithi050.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-15T21:01:21.394 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:21.394 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:01:21.394 INFO:teuthology.orchestra.run.smithi050.stdout:======================================================================================== 2024-04-15T21:01:21.394 INFO:teuthology.orchestra.run.smithi050.stdout:Install 13 Packages 2024-04-15T21:01:21.394 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:21.395 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 2.0 M 2024-04-15T21:01:21.395 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 26 M 2024-04-15T21:01:21.395 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:01:21.438 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-15T21:01:21.548 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-15T21:01:21.596 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-15T21:01:21.723 INFO:teuthology.orchestra.run.smithi050.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 165 kB/s | 24 kB 00:00 2024-04-15T21:01:21.748 INFO:teuthology.orchestra.run.smithi050.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 105 kB/s | 18 kB 00:00 2024-04-15T21:01:21.798 INFO:teuthology.orchestra.run.smithi050.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.3 MB/s | 174 kB 00:00 2024-04-15T21:01:21.824 INFO:teuthology.orchestra.run.smithi050.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.7 MB/s | 132 kB 00:00 2024-04-15T21:01:21.848 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 6/6 2024-04-15T21:01:21.848 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/6 2024-04-15T21:01:21.848 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-15T21:01:21.848 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-15T21:01:21.848 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-15T21:01:21.848 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-15T21:01:21.857 INFO:teuthology.orchestra.run.smithi050.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 3.5 MB/s | 211 kB 00:00 2024-04-15T21:01:21.882 INFO:teuthology.orchestra.run.smithi050.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 732 kB/s | 43 kB 00:00 2024-04-15T21:01:21.924 INFO:teuthology.orchestra.run.smithi050.stdout:(7/13): ceph-mgr-rook-19.0.0-3084.g87dbfb63.el9 141 kB/s | 49 kB 00:00 2024-04-15T21:01:22.108 INFO:teuthology.orchestra.run.smithi050.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 128 kB/s | 32 kB 00:00 2024-04-15T21:01:22.133 INFO:teuthology.orchestra.run.smithi050.stdout:(9/13): python3-certifi-2021.10.8-2.el9.noarch. 60 kB/s | 15 kB 00:00 2024-04-15T21:01:22.149 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-15T21:01:22.149 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:22.149 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:01:22.149 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-mgr-cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:22.149 INFO:teuthology.orchestra.run.smithi174.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-15T21:01:22.149 INFO:teuthology.orchestra.run.smithi174.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-15T21:01:22.149 INFO:teuthology.orchestra.run.smithi174.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-15T21:01:22.149 INFO:teuthology.orchestra.run.smithi174.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-15T21:01:22.149 INFO:teuthology.orchestra.run.smithi174.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-15T21:01:22.149 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:22.149 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:22.225 INFO:teuthology.orchestra.run.smithi050.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 645 kB/s | 59 kB 00:00 2024-04-15T21:01:22.275 INFO:teuthology.orchestra.run.smithi050.stdout:(11/13): python3-google-auth-2.28.2-1.el9.noarc 671 kB/s | 203 kB 00:00 2024-04-15T21:01:22.301 INFO:teuthology.orchestra.run.smithi050.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.2 MB/s | 90 kB 00:00 2024-04-15T21:01:22.337 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-15T21:01:22.392 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install ceph-fuse 2024-04-15T21:01:22.402 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-15T21:01:22.444 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-15T21:01:22.492 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-15T21:01:22.515 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mgr-rook-2:19.0.0-3084.g87dbfb63.el9.noarch 13/13 2024-04-15T21:01:22.534 INFO:teuthology.orchestra.run.smithi050.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 2.4 MB/s | 1.0 MB 00:00 2024-04-15T21:01:22.538 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:22.538 INFO:teuthology.orchestra.run.smithi050.stdout:Total 1.8 MB/s | 2.0 MB 00:01 2024-04-15T21:01:22.538 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:01:22.552 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:01:22.552 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:01:22.648 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:01:22.648 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:01:22.972 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:33 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:23.126 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:23.126 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:23.127 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repository Size 2024-04-15T21:01:23.127 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:23.127 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:01:23.127 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-fuse x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 890 k 2024-04-15T21:01:23.127 INFO:teuthology.orchestra.run.smithi174.stdout:Installing dependencies: 2024-04-15T21:01:23.127 INFO:teuthology.orchestra.run.smithi174.stdout: fuse x86_64 2.9.9-15.el9 CentOS-BaseOS 79 k 2024-04-15T21:01:23.127 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:23.127 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:01:23.127 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:23.127 INFO:teuthology.orchestra.run.smithi174.stdout:Install 2 Packages 2024-04-15T21:01:23.127 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:23.128 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 969 k 2024-04-15T21:01:23.128 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 2.8 M 2024-04-15T21:01:23.128 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:01:23.211 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:01:23.338 INFO:teuthology.orchestra.run.smithi174.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 375 kB/s | 79 kB 00:00 2024-04-15T21:01:23.369 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-3084.g87dbfb63.el9.noarch 13/13 2024-04-15T21:01:23.369 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mgr-rook-2:19.0.0-3084.g87dbfb63.el9.noarch 1/13 2024-04-15T21:01:23.369 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-15T21:01:23.369 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-15T21:01:23.370 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-15T21:01:23.370 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-15T21:01:23.370 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-15T21:01:23.370 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-15T21:01:23.370 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-15T21:01:23.370 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-15T21:01:23.370 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-15T21:01:23.370 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-15T21:01:23.370 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-15T21:01:23.381 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-15T21:01:23.446 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-15T21:01:23.510 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-15T21:01:23.545 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-15T21:01:23.562 INFO:teuthology.orchestra.run.smithi174.stdout:(2/2): ceph-fuse-19.0.0-3084.g87dbfb63.el9.x86_ 2.0 MB/s | 890 kB 00:00 2024-04-15T21:01:23.564 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:23.564 INFO:teuthology.orchestra.run.smithi174.stdout:Total 2.2 MB/s | 969 kB 00:00 2024-04-15T21:01:23.564 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:01:23.585 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:01:23.585 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:01:23.587 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-15T21:01:23.658 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:01:23.658 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:01:23.685 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-15T21:01:23.738 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-15T21:01:23.738 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:23.738 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:01:23.738 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-rook-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:23.738 INFO:teuthology.orchestra.run.smithi151.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-15T21:01:23.738 INFO:teuthology.orchestra.run.smithi151.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-15T21:01:23.738 INFO:teuthology.orchestra.run.smithi151.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-15T21:01:23.738 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-15T21:01:23.738 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-15T21:01:23.739 INFO:teuthology.orchestra.run.smithi151.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-15T21:01:23.739 INFO:teuthology.orchestra.run.smithi151.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-15T21:01:23.739 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-15T21:01:23.739 INFO:teuthology.orchestra.run.smithi151.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-15T21:01:23.739 INFO:teuthology.orchestra.run.smithi151.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-15T21:01:23.739 INFO:teuthology.orchestra.run.smithi151.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-15T21:01:23.739 INFO:teuthology.orchestra.run.smithi151.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-15T21:01:23.739 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:23.739 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:23.794 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-15T21:01:23.847 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-15T21:01:23.855 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:01:23.984 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-mgr-cephadm 2024-04-15T21:01:23.988 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-15T21:01:24.054 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/2 2024-04-15T21:01:24.568 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:30 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:24.609 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-15T21:01:24.668 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-15T21:01:24.702 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-15T21:01:24.721 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:24.722 INFO:teuthology.orchestra.run.smithi151.stdout:======================================================================================== 2024-04-15T21:01:24.722 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-04-15T21:01:24.722 INFO:teuthology.orchestra.run.smithi151.stdout:======================================================================================== 2024-04-15T21:01:24.722 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:01:24.722 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-cephadm noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 142 k 2024-04-15T21:01:24.722 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-04-15T21:01:24.722 INFO:teuthology.orchestra.run.smithi151.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-15T21:01:24.723 INFO:teuthology.orchestra.run.smithi151.stdout: python3-babel noarch 2.9.1-2.el9 CentOS-AppStream 5.8 M 2024-04-15T21:01:24.723 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-15T21:01:24.723 INFO:teuthology.orchestra.run.smithi151.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-15T21:01:24.723 INFO:teuthology.orchestra.run.smithi151.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-15T21:01:24.723 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:24.723 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:01:24.723 INFO:teuthology.orchestra.run.smithi151.stdout:======================================================================================== 2024-04-15T21:01:24.723 INFO:teuthology.orchestra.run.smithi151.stdout:Install 6 Packages 2024-04-15T21:01:24.723 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:24.724 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 6.8 M 2024-04-15T21:01:24.724 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 33 M 2024-04-15T21:01:24.724 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:01:24.729 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/2 2024-04-15T21:01:24.729 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/2 2024-04-15T21:01:24.751 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-15T21:01:24.780 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mgr-rook-2:19.0.0-3084.g87dbfb63.el9.noarch 13/13 2024-04-15T21:01:25.012 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-15T21:01:25.012 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:25.013 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:01:25.013 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-15T21:01:25.013 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:25.013 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:25.279 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install ceph-volume 2024-04-15T21:01:25.562 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-3084.g87dbfb63.el9.noarch 13/13 2024-04-15T21:01:25.562 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mgr-rook-2:19.0.0-3084.g87dbfb63.el9.noarch 1/13 2024-04-15T21:01:25.562 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-15T21:01:25.562 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-15T21:01:25.562 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-15T21:01:25.562 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-15T21:01:25.563 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-15T21:01:25.563 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-15T21:01:25.563 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-15T21:01:25.563 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-15T21:01:25.563 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-15T21:01:25.563 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-15T21:01:25.563 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-15T21:01:25.773 INFO:teuthology.orchestra.run.smithi151.stdout:(1/6): python3-babel-2.9.1-2.el9.noarch.rpm 10 MB/s | 5.8 MB 00:00 2024-04-15T21:01:25.799 INFO:teuthology.orchestra.run.smithi151.stdout:(2/6): ceph-mgr-cephadm-19.0.0-3084.g87dbfb63.e 245 kB/s | 142 kB 00:00 2024-04-15T21:01:25.877 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:36 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:25.911 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-15T21:01:25.911 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:25.911 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:01:25.911 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-rook-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:25.911 INFO:teuthology.orchestra.run.smithi050.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-15T21:01:25.912 INFO:teuthology.orchestra.run.smithi050.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-15T21:01:25.912 INFO:teuthology.orchestra.run.smithi050.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-15T21:01:25.912 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-15T21:01:25.912 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-15T21:01:25.912 INFO:teuthology.orchestra.run.smithi050.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-15T21:01:25.912 INFO:teuthology.orchestra.run.smithi050.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-15T21:01:25.912 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-15T21:01:25.912 INFO:teuthology.orchestra.run.smithi050.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-15T21:01:25.912 INFO:teuthology.orchestra.run.smithi050.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-15T21:01:25.912 INFO:teuthology.orchestra.run.smithi050.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-15T21:01:25.912 INFO:teuthology.orchestra.run.smithi050.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-15T21:01:25.912 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:25.913 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:26.031 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:26.031 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:26.031 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repository Size 2024-04-15T21:01:26.032 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:26.032 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:01:26.032 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-volume noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 264 k 2024-04-15T21:01:26.032 INFO:teuthology.orchestra.run.smithi174.stdout:Installing dependencies: 2024-04-15T21:01:26.032 INFO:teuthology.orchestra.run.smithi174.stdout: python3-packaging noarch 20.9-5.el9 CentOS-AppStream 69 k 2024-04-15T21:01:26.032 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:26.032 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:01:26.032 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:26.032 INFO:teuthology.orchestra.run.smithi174.stdout:Install 2 Packages 2024-04-15T21:01:26.032 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:26.033 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 332 k 2024-04-15T21:01:26.033 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 1.5 M 2024-04-15T21:01:26.033 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:01:26.148 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-mgr-cephadm 2024-04-15T21:01:26.208 INFO:teuthology.orchestra.run.smithi151.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 141 kB/s | 58 kB 00:00 2024-04-15T21:01:26.291 INFO:teuthology.orchestra.run.smithi174.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 266 kB/s | 69 kB 00:00 2024-04-15T21:01:26.325 INFO:teuthology.orchestra.run.smithi174.stdout:(2/2): ceph-volume-19.0.0-3084.g87dbfb63.el9.no 904 kB/s | 264 kB 00:00 2024-04-15T21:01:26.326 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:26.326 INFO:teuthology.orchestra.run.smithi174.stdout:Total 1.1 MB/s | 332 kB 00:00 2024-04-15T21:01:26.326 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:01:26.335 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:01:26.335 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:01:26.366 INFO:teuthology.orchestra.run.smithi151.stdout:(4/6): python3-typing-extensions-4.4.0-2.el9.no 322 kB/s | 51 kB 00:00 2024-04-15T21:01:26.373 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:01:26.373 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:01:26.475 INFO:teuthology.orchestra.run.smithi151.stdout:(5/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 782 kB/s | 548 kB 00:00 2024-04-15T21:01:26.516 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:01:26.683 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-15T21:01:26.735 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:35 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:26.735 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : ceph-volume-2:19.0.0-3084.g87dbfb63.el9.noarch 2/2 2024-04-15T21:01:26.752 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: ceph-volume-2:19.0.0-3084.g87dbfb63.el9.noarch 2/2 2024-04-15T21:01:26.752 INFO:teuthology.orchestra.run.smithi174.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:01:26.752 INFO:teuthology.orchestra.run.smithi174.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-15T21:01:26.752 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:26.875 INFO:teuthology.orchestra.run.smithi151.stdout:(6/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 150 kB/s | 248 kB 00:01 2024-04-15T21:01:26.878 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:26.878 INFO:teuthology.orchestra.run.smithi151.stdout:Total 3.2 MB/s | 6.8 MB 00:02 2024-04-15T21:01:26.893 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:01:26.894 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:26.895 INFO:teuthology.orchestra.run.smithi050.stdout:======================================================================================== 2024-04-15T21:01:26.895 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-04-15T21:01:26.895 INFO:teuthology.orchestra.run.smithi050.stdout:======================================================================================== 2024-04-15T21:01:26.895 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:01:26.895 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-cephadm noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 142 k 2024-04-15T21:01:26.895 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-04-15T21:01:26.895 INFO:teuthology.orchestra.run.smithi050.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-15T21:01:26.895 INFO:teuthology.orchestra.run.smithi050.stdout: python3-babel noarch 2.9.1-2.el9 CentOS-AppStream 5.8 M 2024-04-15T21:01:26.895 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-15T21:01:26.895 INFO:teuthology.orchestra.run.smithi050.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-15T21:01:26.895 INFO:teuthology.orchestra.run.smithi050.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-15T21:01:26.895 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:26.896 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:01:26.896 INFO:teuthology.orchestra.run.smithi050.stdout:======================================================================================== 2024-04-15T21:01:26.896 INFO:teuthology.orchestra.run.smithi050.stdout:Install 6 Packages 2024-04-15T21:01:26.896 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:26.896 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 6.8 M 2024-04-15T21:01:26.896 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 33 M 2024-04-15T21:01:26.897 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:01:26.904 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:01:26.904 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:01:26.994 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:01:26.996 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:01:27.293 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:01:27.465 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-15T21:01:27.518 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-15T21:01:27.531 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : ceph-volume-2:19.0.0-3084.g87dbfb63.el9.noarch 1/2 2024-04-15T21:01:27.795 INFO:teuthology.orchestra.run.smithi050.stdout:(1/6): ceph-mgr-cephadm-19.0.0-3084.g87dbfb63.e 592 kB/s | 142 kB 00:00 2024-04-15T21:01:27.877 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-15T21:01:27.877 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:27.877 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:01:27.877 INFO:teuthology.orchestra.run.smithi174.stdout: ceph-volume-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:27.877 INFO:teuthology.orchestra.run.smithi174.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-15T21:01:27.877 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:27.877 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:27.911 INFO:teuthology.orchestra.run.smithi050.stdout:(2/6): python3-babel-2.9.1-2.el9.noarch.rpm 16 MB/s | 5.8 MB 00:00 2024-04-15T21:01:28.035 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-15T21:01:28.070 INFO:teuthology.orchestra.run.smithi050.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 364 kB/s | 58 kB 00:00 2024-04-15T21:01:28.096 INFO:teuthology.orchestra.run.smithi050.stdout:(4/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.8 MB/s | 548 kB 00:00 2024-04-15T21:01:28.121 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-15T21:01:28.146 INFO:teuthology.orchestra.run.smithi050.stdout:(5/6): python3-typing-extensions-4.4.0-2.el9.no 677 kB/s | 51 kB 00:00 2024-04-15T21:01:28.173 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install librados-devel 2024-04-15T21:01:28.179 INFO:teuthology.orchestra.run.smithi050.stdout:(6/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 397 kB/s | 248 kB 00:00 2024-04-15T21:01:28.180 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:28.180 INFO:teuthology.orchestra.run.smithi050.stdout:Total 5.3 MB/s | 6.8 MB 00:01 2024-04-15T21:01:28.194 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-15T21:01:28.194 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:01:28.205 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:01:28.205 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:01:28.224 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 6/6 2024-04-15T21:01:28.298 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:01:28.299 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:01:28.636 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:01:28.770 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:39 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:28.818 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-15T21:01:28.874 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-15T21:01:28.923 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:28.924 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:28.924 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repo Size 2024-04-15T21:01:28.924 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:28.925 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:01:28.925 INFO:teuthology.orchestra.run.smithi174.stdout: librados-devel x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 127 k 2024-04-15T21:01:28.925 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:28.925 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:01:28.925 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:28.925 INFO:teuthology.orchestra.run.smithi174.stdout:Install 1 Package 2024-04-15T21:01:28.925 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:28.925 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 127 k 2024-04-15T21:01:28.925 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 456 k 2024-04-15T21:01:28.925 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:01:29.138 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 6/6 2024-04-15T21:01:29.139 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/6 2024-04-15T21:01:29.139 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-15T21:01:29.139 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-15T21:01:29.139 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-15T21:01:29.139 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-15T21:01:29.338 INFO:teuthology.orchestra.run.smithi174.stdout:librados-devel-19.0.0-3084.g87dbfb63.el9.x86_64 307 kB/s | 127 kB 00:00 2024-04-15T21:01:29.338 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:29.338 INFO:teuthology.orchestra.run.smithi174.stdout:Total 306 kB/s | 127 kB 00:00 2024-04-15T21:01:29.339 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:01:29.344 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:01:29.344 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:01:29.401 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:01:29.402 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:01:29.421 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-15T21:01:29.460 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-15T21:01:29.460 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:29.460 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:01:29.460 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-mgr-cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:29.460 INFO:teuthology.orchestra.run.smithi151.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-15T21:01:29.460 INFO:teuthology.orchestra.run.smithi151.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-15T21:01:29.460 INFO:teuthology.orchestra.run.smithi151.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-15T21:01:29.460 INFO:teuthology.orchestra.run.smithi151.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-15T21:01:29.460 INFO:teuthology.orchestra.run.smithi151.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-15T21:01:29.460 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:29.460 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:29.502 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-15T21:01:29.574 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-15T21:01:29.593 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:01:29.602 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 6/6 2024-04-15T21:01:29.701 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-fuse 2024-04-15T21:01:29.703 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : librados-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:30.215 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: librados-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:30.279 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:36 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:30.394 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 6/6 2024-04-15T21:01:30.394 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 1/6 2024-04-15T21:01:30.394 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-15T21:01:30.395 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-15T21:01:30.395 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-15T21:01:30.395 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-15T21:01:30.432 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:30.432 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:30.433 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-04-15T21:01:30.433 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:30.433 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:01:30.433 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-fuse x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 890 k 2024-04-15T21:01:30.433 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-04-15T21:01:30.433 INFO:teuthology.orchestra.run.smithi151.stdout: fuse x86_64 2.9.9-15.el9 CentOS-BaseOS 79 k 2024-04-15T21:01:30.433 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:30.433 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:01:30.433 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:30.433 INFO:teuthology.orchestra.run.smithi151.stdout:Install 2 Packages 2024-04-15T21:01:30.433 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:30.434 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 969 k 2024-04-15T21:01:30.434 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 2.8 M 2024-04-15T21:01:30.434 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:01:30.495 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : librados-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:30.495 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:30.495 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:01:30.495 INFO:teuthology.orchestra.run.smithi174.stdout: librados-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:30.496 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:30.496 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:30.571 INFO:teuthology.orchestra.run.smithi151.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 576 kB/s | 79 kB 00:00 2024-04-15T21:01:30.695 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-15T21:01:30.695 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:30.695 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:01:30.695 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-mgr-cephadm-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:30.695 INFO:teuthology.orchestra.run.smithi050.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-15T21:01:30.695 INFO:teuthology.orchestra.run.smithi050.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-15T21:01:30.695 INFO:teuthology.orchestra.run.smithi050.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-15T21:01:30.695 INFO:teuthology.orchestra.run.smithi050.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-15T21:01:30.695 INFO:teuthology.orchestra.run.smithi050.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-15T21:01:30.695 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:30.696 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:30.731 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install libcephfs2 2024-04-15T21:01:30.913 INFO:teuthology.orchestra.run.smithi151.stdout:(2/2): ceph-fuse-19.0.0-3084.g87dbfb63.el9.x86_ 1.8 MB/s | 890 kB 00:00 2024-04-15T21:01:30.914 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:30.915 INFO:teuthology.orchestra.run.smithi151.stdout:Total 2.0 MB/s | 969 kB 00:00 2024-04-15T21:01:30.915 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:01:30.935 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:01:30.936 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:01:30.949 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-fuse 2024-04-15T21:01:31.009 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:01:31.009 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:01:31.196 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:01:31.325 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:42 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:31.330 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-15T21:01:31.405 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/2 2024-04-15T21:01:31.427 INFO:teuthology.orchestra.run.smithi174.stdout:Package libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:31.480 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:31.481 INFO:teuthology.orchestra.run.smithi174.stdout:Nothing to do. 2024-04-15T21:01:31.481 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:31.534 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install libcephfs-devel 2024-04-15T21:01:31.540 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:40 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:31.702 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:31.702 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:31.702 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-04-15T21:01:31.702 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:31.702 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:01:31.702 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-fuse x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 890 k 2024-04-15T21:01:31.703 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-04-15T21:01:31.703 INFO:teuthology.orchestra.run.smithi050.stdout: fuse x86_64 2.9.9-15.el9 CentOS-BaseOS 79 k 2024-04-15T21:01:31.703 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:31.703 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:01:31.703 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:31.703 INFO:teuthology.orchestra.run.smithi050.stdout:Install 2 Packages 2024-04-15T21:01:31.703 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:31.704 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 969 k 2024-04-15T21:01:31.704 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 2.8 M 2024-04-15T21:01:31.704 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:01:31.840 INFO:teuthology.orchestra.run.smithi050.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 579 kB/s | 79 kB 00:00 2024-04-15T21:01:32.111 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:43 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:32.114 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/2 2024-04-15T21:01:32.114 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/2 2024-04-15T21:01:32.182 INFO:teuthology.orchestra.run.smithi050.stdout:(2/2): ceph-fuse-19.0.0-3084.g87dbfb63.el9.x86_ 1.8 MB/s | 890 kB 00:00 2024-04-15T21:01:32.183 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:32.183 INFO:teuthology.orchestra.run.smithi050.stdout:Total 2.0 MB/s | 969 kB 00:00 2024-04-15T21:01:32.183 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:01:32.205 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:01:32.205 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:01:32.261 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:32.262 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:32.262 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repo Size 2024-04-15T21:01:32.262 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:32.262 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:01:32.262 INFO:teuthology.orchestra.run.smithi174.stdout: libcephfs-devel x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 32 k 2024-04-15T21:01:32.262 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:32.262 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:01:32.262 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:32.263 INFO:teuthology.orchestra.run.smithi174.stdout:Install 1 Package 2024-04-15T21:01:32.263 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:32.263 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 32 k 2024-04-15T21:01:32.263 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 142 k 2024-04-15T21:01:32.263 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:01:32.282 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:01:32.282 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:01:32.407 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-15T21:01:32.408 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:32.408 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:01:32.408 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-15T21:01:32.408 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:32.408 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:32.424 INFO:teuthology.orchestra.run.smithi174.stdout:libcephfs-devel-19.0.0-3084.g87dbfb63.el9.x86_6 197 kB/s | 32 kB 00:00 2024-04-15T21:01:32.424 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:32.424 INFO:teuthology.orchestra.run.smithi174.stdout:Total 196 kB/s | 32 kB 00:00 2024-04-15T21:01:32.424 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:01:32.428 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:01:32.428 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:01:32.452 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:01:32.452 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:01:32.465 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:01:32.542 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:01:32.596 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-15T21:01:32.646 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : libcephfs-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:32.676 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/2 2024-04-15T21:01:32.686 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install ceph-volume 2024-04-15T21:01:33.023 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:33.273 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:39 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:33.286 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : libcephfs-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:33.287 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:33.287 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:01:33.287 INFO:teuthology.orchestra.run.smithi174.stdout: libcephfs-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:33.287 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:33.287 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:33.330 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 2/2 2024-04-15T21:01:33.330 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/2 2024-04-15T21:01:33.432 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:33.432 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:33.432 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repository Size 2024-04-15T21:01:33.432 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:33.433 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:01:33.433 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-volume noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 264 k 2024-04-15T21:01:33.433 INFO:teuthology.orchestra.run.smithi151.stdout:Installing dependencies: 2024-04-15T21:01:33.433 INFO:teuthology.orchestra.run.smithi151.stdout: python3-packaging noarch 20.9-5.el9 CentOS-AppStream 69 k 2024-04-15T21:01:33.433 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:33.433 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:01:33.433 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:33.433 INFO:teuthology.orchestra.run.smithi151.stdout:Install 2 Packages 2024-04-15T21:01:33.433 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:33.434 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 332 k 2024-04-15T21:01:33.434 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 1.5 M 2024-04-15T21:01:33.434 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:01:33.459 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install librados2 2024-04-15T21:01:33.589 INFO:teuthology.orchestra.run.smithi151.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 445 kB/s | 69 kB 00:00 2024-04-15T21:01:33.611 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-15T21:01:33.611 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:33.611 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:01:33.611 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-15T21:01:33.611 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:33.611 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:33.713 INFO:teuthology.orchestra.run.smithi151.stdout:(2/2): ceph-volume-19.0.0-3084.g87dbfb63.el9.no 944 kB/s | 264 kB 00:00 2024-04-15T21:01:33.715 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:33.715 INFO:teuthology.orchestra.run.smithi151.stdout:Total 1.2 MB/s | 332 kB 00:00 2024-04-15T21:01:33.715 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:01:33.723 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:01:33.723 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:01:33.766 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:01:33.767 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:01:33.917 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:01:33.922 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install ceph-volume 2024-04-15T21:01:34.042 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:45 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:34.105 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-15T21:01:34.142 INFO:teuthology.orchestra.run.smithi174.stdout:Package librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:34.150 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : ceph-volume-2:19.0.0-3084.g87dbfb63.el9.noarch 2/2 2024-04-15T21:01:34.169 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: ceph-volume-2:19.0.0-3084.g87dbfb63.el9.noarch 2/2 2024-04-15T21:01:34.170 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:01:34.170 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-15T21:01:34.170 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:34.194 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:34.195 INFO:teuthology.orchestra.run.smithi174.stdout:Nothing to do. 2024-04-15T21:01:34.195 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:34.252 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install librbd1 2024-04-15T21:01:34.517 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:43 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:34.681 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:34.682 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:34.682 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repository Size 2024-04-15T21:01:34.682 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:34.682 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:01:34.682 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-volume noarch 2:19.0.0-3084.g87dbfb63.el9 ceph-noarch 264 k 2024-04-15T21:01:34.683 INFO:teuthology.orchestra.run.smithi050.stdout:Installing dependencies: 2024-04-15T21:01:34.683 INFO:teuthology.orchestra.run.smithi050.stdout: python3-packaging noarch 20.9-5.el9 CentOS-AppStream 69 k 2024-04-15T21:01:34.683 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:34.683 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:01:34.683 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:34.683 INFO:teuthology.orchestra.run.smithi050.stdout:Install 2 Packages 2024-04-15T21:01:34.683 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:34.683 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 332 k 2024-04-15T21:01:34.683 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 1.5 M 2024-04-15T21:01:34.683 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:01:34.812 INFO:teuthology.orchestra.run.smithi050.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 535 kB/s | 69 kB 00:00 2024-04-15T21:01:34.834 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:45 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:34.910 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : ceph-volume-2:19.0.0-3084.g87dbfb63.el9.noarch 1/2 2024-04-15T21:01:34.934 INFO:teuthology.orchestra.run.smithi174.stdout:Package librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:34.988 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:34.989 INFO:teuthology.orchestra.run.smithi174.stdout:Nothing to do. 2024-04-15T21:01:34.989 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:35.045 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install python3-rados 2024-04-15T21:01:35.129 INFO:teuthology.orchestra.run.smithi050.stdout:(2/2): ceph-volume-19.0.0-3084.g87dbfb63.el9.no 592 kB/s | 264 kB 00:00 2024-04-15T21:01:35.131 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:35.131 INFO:teuthology.orchestra.run.smithi050.stdout:Total 741 kB/s | 332 kB 00:00 2024-04-15T21:01:35.131 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:01:35.140 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:01:35.140 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:01:35.177 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:01:35.177 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:01:35.268 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-15T21:01:35.268 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:35.269 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:01:35.269 INFO:teuthology.orchestra.run.smithi151.stdout: ceph-volume-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:35.269 INFO:teuthology.orchestra.run.smithi151.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-15T21:01:35.269 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:35.269 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:35.325 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:01:35.519 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-15T21:01:35.557 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : ceph-volume-2:19.0.0-3084.g87dbfb63.el9.noarch 2/2 2024-04-15T21:01:35.577 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: ceph-volume-2:19.0.0-3084.g87dbfb63.el9.noarch 2/2 2024-04-15T21:01:35.577 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:01:35.577 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-15T21:01:35.577 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:35.584 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install librados-devel 2024-04-15T21:01:35.628 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:46 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:35.728 INFO:teuthology.orchestra.run.smithi174.stdout:Package python3-rados-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:35.781 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:35.782 INFO:teuthology.orchestra.run.smithi174.stdout:Nothing to do. 2024-04-15T21:01:35.782 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:35.845 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install python3-rgw 2024-04-15T21:01:36.178 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:42 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:36.317 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : ceph-volume-2:19.0.0-3084.g87dbfb63.el9.noarch 1/2 2024-04-15T21:01:36.339 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:36.339 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:36.339 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repo Size 2024-04-15T21:01:36.339 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:36.339 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:01:36.339 INFO:teuthology.orchestra.run.smithi151.stdout: librados-devel x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 127 k 2024-04-15T21:01:36.339 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:36.340 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:01:36.340 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:36.340 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-04-15T21:01:36.340 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:36.340 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 127 k 2024-04-15T21:01:36.340 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 456 k 2024-04-15T21:01:36.340 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:01:36.426 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:47 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:36.527 INFO:teuthology.orchestra.run.smithi174.stdout:Package python3-rgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:36.580 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:36.581 INFO:teuthology.orchestra.run.smithi174.stdout:Nothing to do. 2024-04-15T21:01:36.582 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:36.645 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install python3-cephfs 2024-04-15T21:01:36.667 INFO:teuthology.orchestra.run.smithi151.stdout:librados-devel-19.0.0-3084.g87dbfb63.el9.x86_64 388 kB/s | 127 kB 00:00 2024-04-15T21:01:36.668 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:36.668 INFO:teuthology.orchestra.run.smithi151.stdout:Total 386 kB/s | 127 kB 00:00 2024-04-15T21:01:36.668 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:01:36.669 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-15T21:01:36.669 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:36.669 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:01:36.669 INFO:teuthology.orchestra.run.smithi050.stdout: ceph-volume-2:19.0.0-3084.g87dbfb63.el9.noarch 2024-04-15T21:01:36.669 INFO:teuthology.orchestra.run.smithi050.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-15T21:01:36.669 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:36.669 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:36.675 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:01:36.675 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:01:36.733 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:01:36.733 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:01:36.923 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:01:37.026 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install librados-devel 2024-04-15T21:01:37.076 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : librados-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:37.224 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:48 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:37.323 INFO:teuthology.orchestra.run.smithi174.stdout:Package python3-cephfs-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:37.374 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:37.375 INFO:teuthology.orchestra.run.smithi174.stdout:Nothing to do. 2024-04-15T21:01:37.375 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:37.437 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install python3-rbd 2024-04-15T21:01:37.568 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: librados-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:37.624 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:46 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:37.784 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:37.784 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:37.785 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repo Size 2024-04-15T21:01:37.785 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:37.785 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:01:37.785 INFO:teuthology.orchestra.run.smithi050.stdout: librados-devel x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 127 k 2024-04-15T21:01:37.785 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:37.785 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:01:37.785 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:37.785 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-04-15T21:01:37.785 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:37.785 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 127 k 2024-04-15T21:01:37.785 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 456 k 2024-04-15T21:01:37.785 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:01:37.872 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : librados-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:37.872 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:37.872 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:01:37.873 INFO:teuthology.orchestra.run.smithi151.stdout: librados-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:37.873 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:37.873 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:38.010 INFO:teuthology.orchestra.run.smithi050.stdout:librados-devel-19.0.0-3084.g87dbfb63.el9.x86_64 565 kB/s | 127 kB 00:00 2024-04-15T21:01:38.011 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:38.011 INFO:teuthology.orchestra.run.smithi050.stdout:Total 561 kB/s | 127 kB 00:00 2024-04-15T21:01:38.011 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:01:38.017 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:01:38.017 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:01:38.019 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:49 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:38.075 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:01:38.075 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:01:38.121 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install libcephfs2 2024-04-15T21:01:38.121 INFO:teuthology.orchestra.run.smithi174.stdout:Package python3-rbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:38.173 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:38.174 INFO:teuthology.orchestra.run.smithi174.stdout:Nothing to do. 2024-04-15T21:01:38.175 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:38.236 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install rbd-fuse 2024-04-15T21:01:38.269 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:01:38.361 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : librados-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:38.721 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:44 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:38.825 INFO:teuthology.orchestra.run.smithi151.stdout:Package libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:38.852 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:49 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:38.859 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: librados-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:38.877 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:38.878 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-04-15T21:01:38.878 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:38.936 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install libcephfs-devel 2024-04-15T21:01:39.012 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:39.012 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:39.013 INFO:teuthology.orchestra.run.smithi174.stdout: Package Architecture Version Repository Size 2024-04-15T21:01:39.013 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:39.013 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:01:39.013 INFO:teuthology.orchestra.run.smithi174.stdout: rbd-fuse x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 85 k 2024-04-15T21:01:39.013 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:39.013 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:01:39.013 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:39.013 INFO:teuthology.orchestra.run.smithi174.stdout:Install 1 Package 2024-04-15T21:01:39.013 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:39.013 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 85 k 2024-04-15T21:01:39.013 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 231 k 2024-04-15T21:01:39.013 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:01:39.166 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : librados-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:39.167 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:39.167 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:01:39.167 INFO:teuthology.orchestra.run.smithi050.stdout: librados-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:39.167 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:39.167 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:39.285 INFO:teuthology.orchestra.run.smithi174.stdout:rbd-fuse-19.0.0-3084.g87dbfb63.el9.x86_64.rpm 314 kB/s | 85 kB 00:00 2024-04-15T21:01:39.285 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:39.286 INFO:teuthology.orchestra.run.smithi174.stdout:Total 312 kB/s | 85 kB 00:00 2024-04-15T21:01:39.286 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:01:39.293 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:01:39.293 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:01:39.352 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:01:39.352 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:01:39.388 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install libcephfs2 2024-04-15T21:01:39.490 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:01:39.514 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:45 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:39.601 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : rbd-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:39.665 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:39.666 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:39.666 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repo Size 2024-04-15T21:01:39.666 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:39.666 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:01:39.667 INFO:teuthology.orchestra.run.smithi151.stdout: libcephfs-devel x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 32 k 2024-04-15T21:01:39.667 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:39.667 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:01:39.667 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:39.667 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-04-15T21:01:39.667 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:39.667 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 32 k 2024-04-15T21:01:39.667 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 142 k 2024-04-15T21:01:39.667 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:01:39.908 INFO:teuthology.orchestra.run.smithi151.stdout:libcephfs-devel-19.0.0-3084.g87dbfb63.el9.x86_6 132 kB/s | 32 kB 00:00 2024-04-15T21:01:39.908 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:39.908 INFO:teuthology.orchestra.run.smithi151.stdout:Total 131 kB/s | 32 kB 00:00 2024-04-15T21:01:39.909 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:01:39.912 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:01:39.912 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:01:39.942 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:01:39.943 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:01:39.984 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:48 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:40.015 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: rbd-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:40.036 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:01:40.087 INFO:teuthology.orchestra.run.smithi050.stdout:Package libcephfs2-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:40.142 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:40.143 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-04-15T21:01:40.143 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:40.147 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : libcephfs-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:40.201 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install libcephfs-devel 2024-04-15T21:01:40.297 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : rbd-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:40.297 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:40.297 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:01:40.297 INFO:teuthology.orchestra.run.smithi174.stdout: rbd-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:40.297 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:40.297 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:40.541 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install rbd-mirror 2024-04-15T21:01:40.543 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:40.791 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:49 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:40.848 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : libcephfs-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:40.848 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:40.848 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:01:40.848 INFO:teuthology.orchestra.run.smithi151.stdout: libcephfs-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:40.849 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:40.849 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:40.947 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:40.948 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:40.948 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repo Size 2024-04-15T21:01:40.948 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:40.948 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:01:40.948 INFO:teuthology.orchestra.run.smithi050.stdout: libcephfs-devel x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 32 k 2024-04-15T21:01:40.948 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:40.948 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:01:40.948 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:40.948 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-04-15T21:01:40.948 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:40.948 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 32 k 2024-04-15T21:01:40.949 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 142 k 2024-04-15T21:01:40.949 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:01:41.027 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install librados2 2024-04-15T21:01:41.134 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:52 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:41.291 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:41.292 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:41.292 INFO:teuthology.orchestra.run.smithi174.stdout: Package Arch Version Repo Size 2024-04-15T21:01:41.292 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:41.292 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:01:41.292 INFO:teuthology.orchestra.run.smithi174.stdout: rbd-mirror x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 3.1 M 2024-04-15T21:01:41.292 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:41.292 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:01:41.292 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:41.292 INFO:teuthology.orchestra.run.smithi174.stdout:Install 1 Package 2024-04-15T21:01:41.292 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:41.292 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 3.1 M 2024-04-15T21:01:41.292 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 13 M 2024-04-15T21:01:41.292 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:01:41.305 INFO:teuthology.orchestra.run.smithi050.stdout:libcephfs-devel-19.0.0-3084.g87dbfb63.el9.x86_6 89 kB/s | 32 kB 00:00 2024-04-15T21:01:41.306 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:41.306 INFO:teuthology.orchestra.run.smithi050.stdout:Total 88 kB/s | 32 kB 00:00 2024-04-15T21:01:41.306 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:01:41.310 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:01:41.310 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:01:41.337 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:01:41.338 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:01:41.440 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:01:41.557 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : libcephfs-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:41.612 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:47 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:41.711 INFO:teuthology.orchestra.run.smithi151.stdout:Package librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:41.764 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:41.765 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-04-15T21:01:41.765 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:41.829 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install librbd1 2024-04-15T21:01:41.903 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:42.158 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : libcephfs-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:42.158 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:42.159 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:01:42.159 INFO:teuthology.orchestra.run.smithi050.stdout: libcephfs-devel-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:42.159 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:42.159 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:42.336 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install librados2 2024-04-15T21:01:42.412 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:48 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:42.513 INFO:teuthology.orchestra.run.smithi151.stdout:Package librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:42.565 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:42.566 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-04-15T21:01:42.566 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:42.626 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install python3-rados 2024-04-15T21:01:42.887 INFO:teuthology.orchestra.run.smithi174.stdout:rbd-mirror-19.0.0-3084.g87dbfb63.el9.x86_64.rpm 1.9 MB/s | 3.1 MB 00:01 2024-04-15T21:01:42.888 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:42.888 INFO:teuthology.orchestra.run.smithi174.stdout:Total 1.9 MB/s | 3.1 MB 00:01 2024-04-15T21:01:42.888 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:01:42.899 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:01:42.899 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:01:42.924 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:51 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:42.976 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:01:42.976 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:01:43.027 INFO:teuthology.orchestra.run.smithi050.stdout:Package librados2-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:43.082 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:43.083 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-04-15T21:01:43.084 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:43.154 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install librbd1 2024-04-15T21:01:43.212 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:49 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:43.312 INFO:teuthology.orchestra.run.smithi151.stdout:Package python3-rados-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:43.364 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:43.365 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-04-15T21:01:43.365 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:43.400 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:01:43.437 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install python3-rgw 2024-04-15T21:01:43.454 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : rbd-mirror-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:43.481 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: rbd-mirror-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:43.481 INFO:teuthology.orchestra.run.smithi174.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:01:43.481 INFO:teuthology.orchestra.run.smithi174.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-15T21:01:43.481 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T21:01:43.481 INFO:teuthology.orchestra.run.smithi174.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T21:01:43.482 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:43.742 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:52 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:43.845 INFO:teuthology.orchestra.run.smithi050.stdout:Package librbd1-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:43.900 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:43.902 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-04-15T21:01:43.902 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:43.967 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install python3-rados 2024-04-15T21:01:44.018 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:50 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:44.119 INFO:teuthology.orchestra.run.smithi151.stdout:Package python3-rgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:44.171 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:44.172 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-04-15T21:01:44.172 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:44.235 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install python3-cephfs 2024-04-15T21:01:44.561 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:53 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:44.594 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : rbd-mirror-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:44.594 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:44.594 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:01:44.594 INFO:teuthology.orchestra.run.smithi174.stdout: rbd-mirror-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:44.594 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:44.594 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:44.665 INFO:teuthology.orchestra.run.smithi050.stdout:Package python3-rados-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:44.720 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:44.721 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-04-15T21:01:44.721 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:44.792 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install python3-rgw 2024-04-15T21:01:44.807 DEBUG:teuthology.orchestra.run.smithi174:> sudo yum -y install rbd-nbd 2024-04-15T21:01:44.816 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:50 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:44.915 INFO:teuthology.orchestra.run.smithi151.stdout:Package python3-cephfs-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:44.966 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:44.967 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-04-15T21:01:44.967 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:45.027 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install python3-rbd 2024-04-15T21:01:45.397 INFO:teuthology.orchestra.run.smithi174.stdout:Last metadata expiration check: 0:01:56 ago on Mon 15 Apr 2024 08:59:49 PM UTC. 2024-04-15T21:01:45.406 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:54 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:45.510 INFO:teuthology.orchestra.run.smithi050.stdout:Package python3-rgw-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:45.550 INFO:teuthology.orchestra.run.smithi174.stdout:Dependencies resolved. 2024-04-15T21:01:45.551 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:45.551 INFO:teuthology.orchestra.run.smithi174.stdout: Package Architecture Version Repository Size 2024-04-15T21:01:45.551 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:45.551 INFO:teuthology.orchestra.run.smithi174.stdout:Installing: 2024-04-15T21:01:45.551 INFO:teuthology.orchestra.run.smithi174.stdout: rbd-nbd x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 171 k 2024-04-15T21:01:45.551 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:45.551 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction Summary 2024-04-15T21:01:45.551 INFO:teuthology.orchestra.run.smithi174.stdout:================================================================================ 2024-04-15T21:01:45.551 INFO:teuthology.orchestra.run.smithi174.stdout:Install 1 Package 2024-04-15T21:01:45.551 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:45.551 INFO:teuthology.orchestra.run.smithi174.stdout:Total download size: 171 k 2024-04-15T21:01:45.552 INFO:teuthology.orchestra.run.smithi174.stdout:Installed size: 494 k 2024-04-15T21:01:45.552 INFO:teuthology.orchestra.run.smithi174.stdout:Downloading Packages: 2024-04-15T21:01:45.565 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:45.567 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-04-15T21:01:45.567 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:45.612 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:51 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:45.634 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install python3-cephfs 2024-04-15T21:01:45.712 INFO:teuthology.orchestra.run.smithi151.stdout:Package python3-rbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:45.765 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:45.766 INFO:teuthology.orchestra.run.smithi151.stdout:Nothing to do. 2024-04-15T21:01:45.766 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:45.838 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install rbd-fuse 2024-04-15T21:01:45.940 INFO:teuthology.orchestra.run.smithi174.stdout:rbd-nbd-19.0.0-3084.g87dbfb63.el9.x86_64.rpm 441 kB/s | 171 kB 00:00 2024-04-15T21:01:45.941 INFO:teuthology.orchestra.run.smithi174.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:45.941 INFO:teuthology.orchestra.run.smithi174.stdout:Total 439 kB/s | 171 kB 00:00 2024-04-15T21:01:45.941 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction check 2024-04-15T21:01:45.949 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction check succeeded. 2024-04-15T21:01:45.949 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction test 2024-04-15T21:01:46.006 INFO:teuthology.orchestra.run.smithi174.stdout:Transaction test succeeded. 2024-04-15T21:01:46.006 INFO:teuthology.orchestra.run.smithi174.stdout:Running transaction 2024-04-15T21:01:46.151 INFO:teuthology.orchestra.run.smithi174.stdout: Preparing : 1/1 2024-04-15T21:01:46.241 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:55 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:46.264 INFO:teuthology.orchestra.run.smithi174.stdout: Installing : rbd-nbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:46.352 INFO:teuthology.orchestra.run.smithi050.stdout:Package python3-cephfs-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:46.406 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:46.407 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-04-15T21:01:46.407 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:46.425 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:52 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:46.478 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install python3-rbd 2024-04-15T21:01:46.578 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:46.578 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:46.578 INFO:teuthology.orchestra.run.smithi151.stdout: Package Architecture Version Repository Size 2024-04-15T21:01:46.579 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:46.579 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:01:46.579 INFO:teuthology.orchestra.run.smithi151.stdout: rbd-fuse x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 85 k 2024-04-15T21:01:46.579 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:46.579 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:01:46.579 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:46.579 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-04-15T21:01:46.579 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:46.579 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 85 k 2024-04-15T21:01:46.579 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 231 k 2024-04-15T21:01:46.579 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:01:46.682 INFO:teuthology.orchestra.run.smithi174.stdout: Running scriptlet: rbd-nbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:46.787 INFO:teuthology.orchestra.run.smithi151.stdout:rbd-fuse-19.0.0-3084.g87dbfb63.el9.x86_64.rpm 410 kB/s | 85 kB 00:00 2024-04-15T21:01:46.788 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:46.788 INFO:teuthology.orchestra.run.smithi151.stdout:Total 407 kB/s | 85 kB 00:00 2024-04-15T21:01:46.788 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:01:46.796 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:01:46.796 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:01:46.854 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:01:46.854 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:01:46.960 INFO:teuthology.orchestra.run.smithi174.stdout: Verifying : rbd-nbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:46.960 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:46.960 INFO:teuthology.orchestra.run.smithi174.stdout:Installed: 2024-04-15T21:01:46.960 INFO:teuthology.orchestra.run.smithi174.stdout: rbd-nbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:46.960 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:01:46.960 INFO:teuthology.orchestra.run.smithi174.stdout:Complete! 2024-04-15T21:01:47.004 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:01:47.072 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:56 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:47.111 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : rbd-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:47.175 INFO:teuthology.orchestra.run.smithi050.stdout:Package python3-rbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 is already installed. 2024-04-15T21:01:47.212 DEBUG:teuthology.parallel:result is None 2024-04-15T21:01:47.231 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:47.232 INFO:teuthology.orchestra.run.smithi050.stdout:Nothing to do. 2024-04-15T21:01:47.232 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:47.304 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install rbd-fuse 2024-04-15T21:01:47.514 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: rbd-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:47.839 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : rbd-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:47.840 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:47.840 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:01:47.840 INFO:teuthology.orchestra.run.smithi151.stdout: rbd-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:47.840 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:47.840 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:47.893 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:56 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:48.051 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:48.052 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:48.052 INFO:teuthology.orchestra.run.smithi050.stdout: Package Architecture Version Repository Size 2024-04-15T21:01:48.052 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:48.052 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:01:48.052 INFO:teuthology.orchestra.run.smithi050.stdout: rbd-fuse x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 85 k 2024-04-15T21:01:48.052 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:48.052 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:01:48.052 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:48.052 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-04-15T21:01:48.053 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:48.053 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 85 k 2024-04-15T21:01:48.053 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 231 k 2024-04-15T21:01:48.053 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:01:48.083 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install rbd-mirror 2024-04-15T21:01:48.267 INFO:teuthology.orchestra.run.smithi050.stdout:rbd-fuse-19.0.0-3084.g87dbfb63.el9.x86_64.rpm 398 kB/s | 85 kB 00:00 2024-04-15T21:01:48.268 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:48.268 INFO:teuthology.orchestra.run.smithi050.stdout:Total 396 kB/s | 85 kB 00:00 2024-04-15T21:01:48.268 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:01:48.275 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:01:48.275 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:01:48.333 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:01:48.333 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:01:48.485 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:01:48.577 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : rbd-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:48.679 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:54 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:48.832 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:48.833 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:48.833 INFO:teuthology.orchestra.run.smithi151.stdout: Package Arch Version Repo Size 2024-04-15T21:01:48.833 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:48.833 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:01:48.833 INFO:teuthology.orchestra.run.smithi151.stdout: rbd-mirror x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 3.1 M 2024-04-15T21:01:48.833 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:48.833 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:01:48.833 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:48.834 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-04-15T21:01:48.834 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:48.834 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 3.1 M 2024-04-15T21:01:48.834 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 13 M 2024-04-15T21:01:48.834 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:01:48.968 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: rbd-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:49.258 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : rbd-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:49.258 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:49.258 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:01:49.258 INFO:teuthology.orchestra.run.smithi050.stdout: rbd-fuse-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:49.259 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:49.259 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:49.419 INFO:teuthology.orchestra.run.smithi151.stdout:rbd-mirror-19.0.0-3084.g87dbfb63.el9.x86_64.rpm 5.3 MB/s | 3.1 MB 00:00 2024-04-15T21:01:49.419 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:49.420 INFO:teuthology.orchestra.run.smithi151.stdout:Total 5.3 MB/s | 3.1 MB 00:00 2024-04-15T21:01:49.420 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:01:49.429 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:01:49.429 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:01:49.502 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:01:49.502 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:01:49.511 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install rbd-mirror 2024-04-15T21:01:49.928 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:01:50.011 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : rbd-mirror-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:50.036 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: rbd-mirror-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:50.037 INFO:teuthology.orchestra.run.smithi151.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:01:50.037 INFO:teuthology.orchestra.run.smithi151.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-15T21:01:50.037 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T21:01:50.037 INFO:teuthology.orchestra.run.smithi151.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T21:01:50.037 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:50.113 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:01:59 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:50.273 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:50.274 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:50.274 INFO:teuthology.orchestra.run.smithi050.stdout: Package Arch Version Repo Size 2024-04-15T21:01:50.274 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:50.274 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:01:50.274 INFO:teuthology.orchestra.run.smithi050.stdout: rbd-mirror x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 3.1 M 2024-04-15T21:01:50.274 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:50.275 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:01:50.275 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:50.275 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-04-15T21:01:50.275 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:50.275 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 3.1 M 2024-04-15T21:01:50.275 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 13 M 2024-04-15T21:01:50.275 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:01:50.854 INFO:teuthology.orchestra.run.smithi050.stdout:rbd-mirror-19.0.0-3084.g87dbfb63.el9.x86_64.rpm 5.3 MB/s | 3.1 MB 00:00 2024-04-15T21:01:50.854 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:50.855 INFO:teuthology.orchestra.run.smithi050.stdout:Total 5.3 MB/s | 3.1 MB 00:00 2024-04-15T21:01:50.855 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:01:50.865 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:01:50.865 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:01:50.942 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:01:50.943 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:01:51.154 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : rbd-mirror-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:51.154 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:51.154 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:01:51.154 INFO:teuthology.orchestra.run.smithi151.stdout: rbd-mirror-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:51.154 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:51.155 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:51.394 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:01:51.414 DEBUG:teuthology.orchestra.run.smithi151:> sudo yum -y install rbd-nbd 2024-04-15T21:01:51.463 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : rbd-mirror-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:51.489 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: rbd-mirror-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:51.489 INFO:teuthology.orchestra.run.smithi050.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T21:01:51.489 INFO:teuthology.orchestra.run.smithi050.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-15T21:01:51.489 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T21:01:51.489 INFO:teuthology.orchestra.run.smithi050.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T21:01:51.489 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:52.005 INFO:teuthology.orchestra.run.smithi151.stdout:Last metadata expiration check: 0:01:58 ago on Mon 15 Apr 2024 08:59:54 PM UTC. 2024-04-15T21:01:52.157 INFO:teuthology.orchestra.run.smithi151.stdout:Dependencies resolved. 2024-04-15T21:01:52.158 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:52.158 INFO:teuthology.orchestra.run.smithi151.stdout: Package Architecture Version Repository Size 2024-04-15T21:01:52.158 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:52.158 INFO:teuthology.orchestra.run.smithi151.stdout:Installing: 2024-04-15T21:01:52.158 INFO:teuthology.orchestra.run.smithi151.stdout: rbd-nbd x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 171 k 2024-04-15T21:01:52.158 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:52.158 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction Summary 2024-04-15T21:01:52.158 INFO:teuthology.orchestra.run.smithi151.stdout:================================================================================ 2024-04-15T21:01:52.158 INFO:teuthology.orchestra.run.smithi151.stdout:Install 1 Package 2024-04-15T21:01:52.158 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:52.158 INFO:teuthology.orchestra.run.smithi151.stdout:Total download size: 171 k 2024-04-15T21:01:52.158 INFO:teuthology.orchestra.run.smithi151.stdout:Installed size: 494 k 2024-04-15T21:01:52.159 INFO:teuthology.orchestra.run.smithi151.stdout:Downloading Packages: 2024-04-15T21:01:52.384 INFO:teuthology.orchestra.run.smithi151.stdout:rbd-nbd-19.0.0-3084.g87dbfb63.el9.x86_64.rpm 760 kB/s | 171 kB 00:00 2024-04-15T21:01:52.385 INFO:teuthology.orchestra.run.smithi151.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:52.385 INFO:teuthology.orchestra.run.smithi151.stdout:Total 754 kB/s | 171 kB 00:00 2024-04-15T21:01:52.385 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction check 2024-04-15T21:01:52.393 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction check succeeded. 2024-04-15T21:01:52.393 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction test 2024-04-15T21:01:52.449 INFO:teuthology.orchestra.run.smithi151.stdout:Transaction test succeeded. 2024-04-15T21:01:52.449 INFO:teuthology.orchestra.run.smithi151.stdout:Running transaction 2024-04-15T21:01:52.590 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : rbd-mirror-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:52.590 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:52.590 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:01:52.590 INFO:teuthology.orchestra.run.smithi050.stdout: rbd-mirror-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:52.590 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:52.590 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:52.597 INFO:teuthology.orchestra.run.smithi151.stdout: Preparing : 1/1 2024-04-15T21:01:52.708 INFO:teuthology.orchestra.run.smithi151.stdout: Installing : rbd-nbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:52.824 DEBUG:teuthology.orchestra.run.smithi050:> sudo yum -y install rbd-nbd 2024-04-15T21:01:53.132 INFO:teuthology.orchestra.run.smithi151.stdout: Running scriptlet: rbd-nbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:53.425 INFO:teuthology.orchestra.run.smithi050.stdout:Last metadata expiration check: 0:02:02 ago on Mon 15 Apr 2024 08:59:51 PM UTC. 2024-04-15T21:01:53.453 INFO:teuthology.orchestra.run.smithi151.stdout: Verifying : rbd-nbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:53.454 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:53.454 INFO:teuthology.orchestra.run.smithi151.stdout:Installed: 2024-04-15T21:01:53.454 INFO:teuthology.orchestra.run.smithi151.stdout: rbd-nbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:53.454 INFO:teuthology.orchestra.run.smithi151.stdout: 2024-04-15T21:01:53.454 INFO:teuthology.orchestra.run.smithi151.stdout:Complete! 2024-04-15T21:01:53.583 INFO:teuthology.orchestra.run.smithi050.stdout:Dependencies resolved. 2024-04-15T21:01:53.584 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:53.584 INFO:teuthology.orchestra.run.smithi050.stdout: Package Architecture Version Repository Size 2024-04-15T21:01:53.584 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:53.584 INFO:teuthology.orchestra.run.smithi050.stdout:Installing: 2024-04-15T21:01:53.585 INFO:teuthology.orchestra.run.smithi050.stdout: rbd-nbd x86_64 2:19.0.0-3084.g87dbfb63.el9 ceph 171 k 2024-04-15T21:01:53.585 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:53.585 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction Summary 2024-04-15T21:01:53.585 INFO:teuthology.orchestra.run.smithi050.stdout:================================================================================ 2024-04-15T21:01:53.585 INFO:teuthology.orchestra.run.smithi050.stdout:Install 1 Package 2024-04-15T21:01:53.585 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:53.585 INFO:teuthology.orchestra.run.smithi050.stdout:Total download size: 171 k 2024-04-15T21:01:53.585 INFO:teuthology.orchestra.run.smithi050.stdout:Installed size: 494 k 2024-04-15T21:01:53.585 INFO:teuthology.orchestra.run.smithi050.stdout:Downloading Packages: 2024-04-15T21:01:53.753 DEBUG:teuthology.parallel:result is None 2024-04-15T21:01:53.932 INFO:teuthology.orchestra.run.smithi050.stdout:rbd-nbd-19.0.0-3084.g87dbfb63.el9.x86_64.rpm 493 kB/s | 171 kB 00:00 2024-04-15T21:01:53.933 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:01:53.933 INFO:teuthology.orchestra.run.smithi050.stdout:Total 491 kB/s | 171 kB 00:00 2024-04-15T21:01:53.933 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction check 2024-04-15T21:01:53.942 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction check succeeded. 2024-04-15T21:01:53.942 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction test 2024-04-15T21:01:54.000 INFO:teuthology.orchestra.run.smithi050.stdout:Transaction test succeeded. 2024-04-15T21:01:54.001 INFO:teuthology.orchestra.run.smithi050.stdout:Running transaction 2024-04-15T21:01:54.161 INFO:teuthology.orchestra.run.smithi050.stdout: Preparing : 1/1 2024-04-15T21:01:54.267 INFO:teuthology.orchestra.run.smithi050.stdout: Installing : rbd-nbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:54.693 INFO:teuthology.orchestra.run.smithi050.stdout: Running scriptlet: rbd-nbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:54.973 INFO:teuthology.orchestra.run.smithi050.stdout: Verifying : rbd-nbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 1/1 2024-04-15T21:01:54.973 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:54.974 INFO:teuthology.orchestra.run.smithi050.stdout:Installed: 2024-04-15T21:01:54.974 INFO:teuthology.orchestra.run.smithi050.stdout: rbd-nbd-2:19.0.0-3084.g87dbfb63.el9.x86_64 2024-04-15T21:01:54.974 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:01:54.974 INFO:teuthology.orchestra.run.smithi050.stdout:Complete! 2024-04-15T21:01:55.246 DEBUG:teuthology.parallel:result is None 2024-04-15T21:01:55.247 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:01:55.469 DEBUG:teuthology.orchestra.run.smithi050:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-15T21:01:55.492 INFO:teuthology.orchestra.run.smithi050.stdout:19.0.0-3084.g87dbfb63.el9 2024-04-15T21:01:55.492 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-3084.g87dbfb63.el9 2024-04-15T21:01:55.493 INFO:teuthology.task.install:The correct ceph version 19.0.0-3084.g87dbfb63 is installed. 2024-04-15T21:01:55.495 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:01:55.710 DEBUG:teuthology.orchestra.run.smithi151:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-15T21:01:55.736 INFO:teuthology.orchestra.run.smithi151.stdout:19.0.0-3084.g87dbfb63.el9 2024-04-15T21:01:55.736 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-3084.g87dbfb63.el9 2024-04-15T21:01:55.736 INFO:teuthology.task.install:The correct ceph version 19.0.0-3084.g87dbfb63 is installed. 2024-04-15T21:01:55.738 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:01:55.884 DEBUG:teuthology.orchestra.run.smithi174:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-15T21:01:55.909 INFO:teuthology.orchestra.run.smithi174.stdout:19.0.0-3084.g87dbfb63.el9 2024-04-15T21:01:55.910 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-3084.g87dbfb63.el9 2024-04-15T21:01:55.910 INFO:teuthology.task.install:The correct ceph version 19.0.0-3084.g87dbfb63 is installed. 2024-04-15T21:01:55.912 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-04-15T21:01:55.912 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T21:01:55.912 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T21:01:55.945 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-04-15T21:01:55.945 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T21:01:55.979 DEBUG:teuthology.orchestra.run.smithi174:> set -ex 2024-04-15T21:01:55.979 DEBUG:teuthology.orchestra.run.smithi174:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T21:01:56.013 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-04-15T21:01:56.013 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T21:01:56.013 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T21:01:56.045 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T21:01:56.115 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-04-15T21:01:56.115 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T21:01:56.148 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T21:01:56.221 DEBUG:teuthology.orchestra.run.smithi174:> set -ex 2024-04-15T21:01:56.221 DEBUG:teuthology.orchestra.run.smithi174:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T21:01:56.254 DEBUG:teuthology.orchestra.run.smithi174:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T21:01:56.325 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-04-15T21:01:56.326 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T21:01:56.326 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T21:01:56.359 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T21:01:56.429 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-04-15T21:01:56.430 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T21:01:56.463 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T21:01:56.536 DEBUG:teuthology.orchestra.run.smithi174:> set -ex 2024-04-15T21:01:56.536 DEBUG:teuthology.orchestra.run.smithi174:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T21:01:56.569 DEBUG:teuthology.orchestra.run.smithi174:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T21:01:56.641 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-04-15T21:01:56.641 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T21:01:56.641 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T21:01:56.673 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T21:01:56.745 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-04-15T21:01:56.745 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T21:01:56.778 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T21:01:56.852 DEBUG:teuthology.orchestra.run.smithi174:> set -ex 2024-04-15T21:01:56.852 DEBUG:teuthology.orchestra.run.smithi174:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T21:01:56.885 DEBUG:teuthology.orchestra.run.smithi174:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T21:01:56.958 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-15T21:01:57.058 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': True}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN', 'mons down', 'mon down', 'out of quorum'], 'log-only-match': ['CEPHADM_'], 'sha1': '87dbfb632e974cb2c28d17423071d2d833b53b29'} 2024-04-15T21:01:57.059 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:01:57.059 INFO:tasks.cephadm:Cluster fsid is 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:01:57.059 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-15T21:01:57.059 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.50', 'mon.b': '172.21.15.151', 'mon.c': '172.21.15.174'} 2024-04-15T21:01:57.060 INFO:tasks.cephadm:First mon is mon.a on smithi050 2024-04-15T21:01:57.060 INFO:tasks.cephadm:First mgr is a 2024-04-15T21:01:57.060 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-15T21:01:57.060 DEBUG:teuthology.orchestra.run.smithi050:> sudo hostname $(hostname -s) 2024-04-15T21:01:57.093 DEBUG:teuthology.orchestra.run.smithi151:> sudo hostname $(hostname -s) 2024-04-15T21:01:57.127 DEBUG:teuthology.orchestra.run.smithi174:> sudo hostname $(hostname -s) 2024-04-15T21:01:57.161 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-15T21:01:57.161 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:01:57.302 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '87dbfb632e974cb2c28d17423071d2d833b53b29', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/54897/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-3084-g87dbfb63', 'node_name': '172.21.2.14+braggi14', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-3084.g87dbfb63'}, 'url': 'https://3.chacra.ceph.com/r/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-04-14 16:30:23.821701', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'main', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-04-15T21:01:57.512 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref main, sha1 87dbfb632e974cb2c28d17423071d2d833b53b29 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:01:57.514 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/x86_64/flavors/default/cephadm 2024-04-15T21:01:57.514 DEBUG:teuthology.orchestra.run.smithi050:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T21:01:57.956 INFO:teuthology.orchestra.run.smithi050.stdout:-rw-r--r--. 1 ubuntu ubuntu 781490 Apr 15 21:01 /home/ubuntu/cephtest/cephadm 2024-04-15T21:01:57.956 DEBUG:teuthology.orchestra.run.smithi151:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T21:01:58.789 INFO:teuthology.orchestra.run.smithi151.stdout:-rw-r--r--. 1 ubuntu ubuntu 781490 Apr 15 21:01 /home/ubuntu/cephtest/cephadm 2024-04-15T21:01:58.790 DEBUG:teuthology.orchestra.run.smithi174:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/main/87dbfb632e974cb2c28d17423071d2d833b53b29/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T21:02:00.275 INFO:teuthology.orchestra.run.smithi174.stdout:-rw-r--r--. 1 ubuntu ubuntu 781490 Apr 15 21:02 /home/ubuntu/cephtest/cephadm 2024-04-15T21:02:00.275 DEBUG:teuthology.orchestra.run.smithi050:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T21:02:00.295 DEBUG:teuthology.orchestra.run.smithi151:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T21:02:00.314 DEBUG:teuthology.orchestra.run.smithi174:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T21:02:00.346 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 on all hosts... 2024-04-15T21:02:00.346 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 pull 2024-04-15T21:02:00.348 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 pull 2024-04-15T21:02:00.360 DEBUG:teuthology.orchestra.run.smithi174:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 pull 2024-04-15T21:02:01.207 INFO:teuthology.orchestra.run.smithi174.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29... 2024-04-15T21:02:01.240 INFO:teuthology.orchestra.run.smithi151.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29... 2024-04-15T21:02:01.268 INFO:teuthology.orchestra.run.smithi050.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29... 2024-04-15T21:02:41.968 INFO:teuthology.orchestra.run.smithi050.stdout:{ 2024-04-15T21:02:41.968 INFO:teuthology.orchestra.run.smithi050.stdout: "ceph_version": "ceph version 19.0.0-3084-g87dbfb63 (87dbfb632e974cb2c28d17423071d2d833b53b29) squid (dev)", 2024-04-15T21:02:41.968 INFO:teuthology.orchestra.run.smithi050.stdout: "image_id": "a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b", 2024-04-15T21:02:41.968 INFO:teuthology.orchestra.run.smithi050.stdout: "repo_digests": [ 2024-04-15T21:02:41.968 INFO:teuthology.orchestra.run.smithi050.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f" 2024-04-15T21:02:41.968 INFO:teuthology.orchestra.run.smithi050.stdout: ] 2024-04-15T21:02:41.968 INFO:teuthology.orchestra.run.smithi050.stdout:} 2024-04-15T21:02:56.153 INFO:teuthology.orchestra.run.smithi151.stdout:{ 2024-04-15T21:02:56.153 INFO:teuthology.orchestra.run.smithi151.stdout: "ceph_version": "ceph version 19.0.0-3084-g87dbfb63 (87dbfb632e974cb2c28d17423071d2d833b53b29) squid (dev)", 2024-04-15T21:02:56.153 INFO:teuthology.orchestra.run.smithi151.stdout: "image_id": "a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b", 2024-04-15T21:02:56.153 INFO:teuthology.orchestra.run.smithi151.stdout: "repo_digests": [ 2024-04-15T21:02:56.153 INFO:teuthology.orchestra.run.smithi151.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f" 2024-04-15T21:02:56.153 INFO:teuthology.orchestra.run.smithi151.stdout: ] 2024-04-15T21:02:56.153 INFO:teuthology.orchestra.run.smithi151.stdout:} 2024-04-15T21:03:00.918 INFO:teuthology.orchestra.run.smithi174.stdout:{ 2024-04-15T21:03:00.918 INFO:teuthology.orchestra.run.smithi174.stdout: "ceph_version": "ceph version 19.0.0-3084-g87dbfb63 (87dbfb632e974cb2c28d17423071d2d833b53b29) squid (dev)", 2024-04-15T21:03:00.918 INFO:teuthology.orchestra.run.smithi174.stdout: "image_id": "a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b", 2024-04-15T21:03:00.918 INFO:teuthology.orchestra.run.smithi174.stdout: "repo_digests": [ 2024-04-15T21:03:00.918 INFO:teuthology.orchestra.run.smithi174.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f" 2024-04-15T21:03:00.918 INFO:teuthology.orchestra.run.smithi174.stdout: ] 2024-04-15T21:03:00.919 INFO:teuthology.orchestra.run.smithi174.stdout:} 2024-04-15T21:03:00.942 DEBUG:teuthology.orchestra.run.smithi050:> sudo mkdir -p /etc/ceph 2024-04-15T21:03:00.980 DEBUG:teuthology.orchestra.run.smithi151:> sudo mkdir -p /etc/ceph 2024-04-15T21:03:01.016 DEBUG:teuthology.orchestra.run.smithi174:> sudo mkdir -p /etc/ceph 2024-04-15T21:03:01.047 DEBUG:teuthology.orchestra.run.smithi050:> sudo chmod 777 /etc/ceph 2024-04-15T21:03:01.078 DEBUG:teuthology.orchestra.run.smithi151:> sudo chmod 777 /etc/ceph 2024-04-15T21:03:01.111 DEBUG:teuthology.orchestra.run.smithi174:> sudo chmod 777 /etc/ceph 2024-04-15T21:03:01.138 INFO:tasks.cephadm:Writing seed config... 2024-04-15T21:03:01.140 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-04-15T21:03:01.140 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-04-15T21:03:01.140 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-04-15T21:03:01.140 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = True 2024-04-15T21:03:01.140 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-04-15T21:03:01.140 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-04-15T21:03:01.140 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-04-15T21:03:01.140 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-04-15T21:03:01.140 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-04-15T21:03:01.141 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T21:03:01.141 DEBUG:teuthology.orchestra.run.smithi050:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-04-15T21:03:01.158 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 = 650ea436-fb6b-11ee-bc8f-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 = True [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-04-15T21:03:01.159 DEBUG:teuthology.orchestra.run.smithi050:mon.a> sudo journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.a.service 2024-04-15T21:03:01.201 DEBUG:teuthology.orchestra.run.smithi050:mgr.a> sudo journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mgr.a.service 2024-04-15T21:03:01.245 INFO:tasks.cephadm:Bootstrapping... 2024-04-15T21:03:01.245 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 -v bootstrap --fsid 650ea436-fb6b-11ee-bc8f-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.50 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:03:01.447 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------------------------------------------------------------------- 2024-04-15T21:03:01.447 INFO:teuthology.orchestra.run.smithi050.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29', '-v', 'bootstrap', '--fsid', '650ea436-fb6b-11ee-bc8f-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.50', '--skip-admin-label'] 2024-04-15T21:03:01.447 INFO:teuthology.orchestra.run.smithi050.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-04-15T21:03:01.448 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying podman|docker is present... 2024-04-15T21:03:01.473 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-15T21:03:01.473 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying lvm2 is present... 2024-04-15T21:03:01.473 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying time synchronization is in place... 2024-04-15T21:03:01.481 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-15T21:03:01.481 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-15T21:03:01.487 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-15T21:03:01.487 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-04-15T21:03:01.493 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout enabled 2024-04-15T21:03:01.499 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout active 2024-04-15T21:03:01.500 INFO:teuthology.orchestra.run.smithi050.stdout:Unit chronyd.service is enabled and running 2024-04-15T21:03:01.500 INFO:teuthology.orchestra.run.smithi050.stdout:Repeating the final host check... 2024-04-15T21:03:01.523 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-15T21:03:01.523 INFO:teuthology.orchestra.run.smithi050.stdout:podman (/bin/podman) version 4.9.4 is present 2024-04-15T21:03:01.523 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl is present 2024-04-15T21:03:01.523 INFO:teuthology.orchestra.run.smithi050.stdout:lvcreate is present 2024-04-15T21:03:01.529 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-15T21:03:01.529 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-15T21:03:01.535 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-15T21:03:01.536 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-04-15T21:03:01.542 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout enabled 2024-04-15T21:03:01.548 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout active 2024-04-15T21:03:01.549 INFO:teuthology.orchestra.run.smithi050.stdout:Unit chronyd.service is enabled and running 2024-04-15T21:03:01.549 INFO:teuthology.orchestra.run.smithi050.stdout:Host looks OK 2024-04-15T21:03:01.549 INFO:teuthology.orchestra.run.smithi050.stdout:Cluster fsid: 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:03:01.549 INFO:teuthology.orchestra.run.smithi050.stdout:Acquiring lock 140083988251552 on /run/cephadm/650ea436-fb6b-11ee-bc8f-c7b262605968.lock 2024-04-15T21:03:01.549 INFO:teuthology.orchestra.run.smithi050.stdout:Lock 140083988251552 acquired on /run/cephadm/650ea436-fb6b-11ee-bc8f-c7b262605968.lock 2024-04-15T21:03:01.549 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying IP 172.21.15.50 port 3300 ... 2024-04-15T21:03:01.550 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying IP 172.21.15.50 port 6789 ... 2024-04-15T21:03:01.550 INFO:teuthology.orchestra.run.smithi050.stdout:Base mon IP(s) is [172.21.15.50:3300, 172.21.15.50:6789], mon addrv is [v2:172.21.15.50:3300,v1:172.21.15.50:6789] 2024-04-15T21:03:01.553 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout default via 172.21.15.254 dev ens1f0 proto dhcp src 172.21.15.50 metric 100 2024-04-15T21:03:01.553 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.50 metric 100 2024-04-15T21:03:01.555 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-04-15T21:03:01.555 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout fe80::/64 dev ens1f0 proto kernel metric 1024 pref medium 2024-04-15T21:03:01.555 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 100 pref medium 2024-04-15T21:03:01.558 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-04-15T21:03:01.558 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-04-15T21:03:01.558 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-15T21:03:01.558 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout 4: ens1f0: mtu 1500 state UP qlen 1000 2024-04-15T21:03:01.558 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:febd:1584/64 scope link noprefixroute 2024-04-15T21:03:01.558 INFO:teuthology.orchestra.run.smithi050.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-15T21:03:01.559 INFO:teuthology.orchestra.run.smithi050.stdout:Mon IP `172.21.15.50` is in CIDR network `172.21.0.0/20` 2024-04-15T21:03:01.559 INFO:teuthology.orchestra.run.smithi050.stdout:Mon IP `172.21.15.50` is in CIDR network `172.21.0.0/20` 2024-04-15T21:03:01.559 INFO:teuthology.orchestra.run.smithi050.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-04-15T21:03:01.559 INFO:teuthology.orchestra.run.smithi050.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-04-15T21:03:01.560 INFO:teuthology.orchestra.run.smithi050.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29... 2024-04-15T21:03:02.021 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stdout a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b 2024-04-15T21:03:02.021 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29... 2024-04-15T21:03:02.021 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stderr Getting image source signatures 2024-04-15T21:03:02.021 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stderr Copying blob sha256:9793b5b5582798bde394f4383d142e9f248a25e4ebfd72ee05ea9ec6251a877d 2024-04-15T21:03:02.021 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stderr Copying blob sha256:db6600fab110490d8983f9c48773b7ad292dbf67136d909afa3b973b354a77e9 2024-04-15T21:03:02.021 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stderr Copying config sha256:a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b 2024-04-15T21:03:02.021 INFO:teuthology.orchestra.run.smithi050.stdout:/bin/podman: stderr Writing manifest to image destination 2024-04-15T21:03:02.909 INFO:teuthology.orchestra.run.smithi050.stdout:ceph: stdout ceph version 19.0.0-3084-g87dbfb63 (87dbfb632e974cb2c28d17423071d2d833b53b29) squid (dev) 2024-04-15T21:03:02.909 INFO:teuthology.orchestra.run.smithi050.stdout:Ceph version: ceph version 19.0.0-3084-g87dbfb63 (87dbfb632e974cb2c28d17423071d2d833b53b29) squid (dev) 2024-04-15T21:03:02.909 INFO:teuthology.orchestra.run.smithi050.stdout:Extracting ceph user uid/gid from container image... 2024-04-15T21:03:03.898 INFO:teuthology.orchestra.run.smithi050.stdout:stat: stdout 167 167 2024-04-15T21:03:03.898 INFO:teuthology.orchestra.run.smithi050.stdout:Creating initial keys... 2024-04-15T21:03:04.788 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-authtool: stdout AQAIlh1meTSUDBAAG0nKm4WPz6P1fEHrifYYQg== 2024-04-15T21:03:05.719 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-authtool: stdout AQAJlh1m5w17ChAAnuWmorSfHY00hE3mFSq9gg== 2024-04-15T21:03:06.641 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph-authtool: stdout AQAKlh1mnh/GAxAAAZMlA+atydltjVtrvSD9qg== 2024-04-15T21:03:06.641 INFO:teuthology.orchestra.run.smithi050.stdout:Creating initial monmap... 2024-04-15T21:03:10.213 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-15T21:03:10.213 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-04-15T21:03:10.213 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:03:10.213 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-15T21:03:10.213 INFO:teuthology.orchestra.run.smithi050.stdout:monmaptool for a [v2:172.21.15.50:3300,v1:172.21.15.50:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-15T21:03:10.213 INFO:teuthology.orchestra.run.smithi050.stdout:setting min_mon_release = quincy 2024-04-15T21:03:10.213 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: set fsid to 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:03:10.213 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-15T21:03:10.213 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:03:10.213 INFO:teuthology.orchestra.run.smithi050.stdout:Creating mon... 2024-04-15T21:03:19.551 INFO:teuthology.orchestra.run.smithi050.stdout:create mon.a on 2024-04-15T21:03:19.909 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-04-15T21:03:20.054 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-04-15T21:03:20.252 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-650ea436-fb6b-11ee-bc8f-c7b262605968.target → /etc/systemd/system/ceph-650ea436-fb6b-11ee-bc8f-c7b262605968.target. 2024-04-15T21:03:20.252 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-650ea436-fb6b-11ee-bc8f-c7b262605968.target → /etc/systemd/system/ceph-650ea436-fb6b-11ee-bc8f-c7b262605968.target. 2024-04-15T21:03:20.480 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.a 2024-04-15T21:03:20.480 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to reset failed state of unit ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.a.service: Unit ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.a.service not loaded. 2024-04-15T21:03:20.648 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-650ea436-fb6b-11ee-bc8f-c7b262605968.target.wants/ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.a.service → /etc/systemd/system/ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@.service. 2024-04-15T21:03:20.979 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:20 smithi050 podman[29785]: 2024-04-15 21:03:20.795747059 +0000 UTC m=+0.017390730 image pull a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:03:21.118 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-15T21:03:21.118 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout disabled 2024-04-15T21:03:21.125 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-15T21:03:21.125 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-04-15T21:03:21.125 INFO:teuthology.orchestra.run.smithi050.stdout:firewalld.service is not enabled 2024-04-15T21:03:21.125 INFO:teuthology.orchestra.run.smithi050.stdout:Not possible to enable service . firewalld.service is not available 2024-04-15T21:03:21.126 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mon to start... 2024-04-15T21:03:21.126 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mon... 2024-04-15T21:03:21.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:21 smithi050 podman[29785]: 2024-04-15 21:03:21.047258332 +0000 UTC m=+0.268901976 container init 297baf64a2d5ff4220041489a30ad94e28c9a02038fb5e0bc5efd0ec79a4932c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240409, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, RELEASE=main-87dbfb6, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2) 2024-04-15T21:03:21.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:21 smithi050 podman[29785]: 2024-04-15 21:03:21.052912112 +0000 UTC m=+0.274555756 container start 297baf64a2d5ff4220041489a30ad94e28c9a02038fb5e0bc5efd0ec79a4932c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240409, maintainer=Guillaume Abrioux , RELEASE=main-87dbfb6, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, ceph=True, GIT_CLEAN=True, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS) 2024-04-15T21:03:21.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:21 smithi050 ceph-mon[29823]: mkfs 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:03:21.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:21 smithi050 ceph-mon[29823]: mon.a is new leader, mons a in quorum (ranks 0) 2024-04-15T21:03:21.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:21 smithi050 bash[29785]: 297baf64a2d5ff4220041489a30ad94e28c9a02038fb5e0bc5efd0ec79a4932c 2024-04-15T21:03:21.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:21 smithi050 systemd[1]: Started Ceph mon.a for 650ea436-fb6b-11ee-bc8f-c7b262605968. 2024-04-15T21:03:22.179 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:22 smithi050 ceph-mon[29823]: mon.a is new leader, mons a in quorum (ranks 0) 2024-04-15T21:03:22.179 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:22 smithi050 ceph-mon[29823]: monmap epoch 1 2024-04-15T21:03:22.179 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:22 smithi050 ceph-mon[29823]: fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:03:22.180 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:22 smithi050 ceph-mon[29823]: last_changed 2024-04-15T21:03:07.001665+0000 2024-04-15T21:03:22.180 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:22 smithi050 ceph-mon[29823]: created 2024-04-15T21:03:07.001665+0000 2024-04-15T21:03:22.180 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:22 smithi050 ceph-mon[29823]: min_mon_release 19 (squid) 2024-04-15T21:03:22.180 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:22 smithi050 ceph-mon[29823]: election_strategy: 1 2024-04-15T21:03:22.180 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:22 smithi050 ceph-mon[29823]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-04-15T21:03:22.180 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:22 smithi050 ceph-mon[29823]: fsmap 2024-04-15T21:03:22.180 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:22 smithi050 ceph-mon[29823]: osdmap e1: 0 total, 0 up, 0 in 2024-04-15T21:03:22.180 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:22 smithi050 ceph-mon[29823]: mgrmap e1: no daemons active 2024-04-15T21:03:22.180 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:22 smithi050 ceph-mon[29823]: from='client.? 172.21.15.50:0/2864806388' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-04-15T21:03:22.181 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout cluster: 2024-04-15T21:03:22.183 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout id: 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:03:22.183 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-04-15T21:03:22.183 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-04-15T21:03:22.183 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout services: 2024-04-15T21:03:22.184 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.550627s) 2024-04-15T21:03:22.184 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-04-15T21:03:22.184 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-04-15T21:03:22.184 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-04-15T21:03:22.184 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout data: 2024-04-15T21:03:22.184 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-04-15T21:03:22.184 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-04-15T21:03:22.184 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-04-15T21:03:22.184 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout pgs: 2024-04-15T21:03:22.184 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-04-15T21:03:22.184 INFO:teuthology.orchestra.run.smithi050.stdout:mon is available 2024-04-15T21:03:22.184 INFO:teuthology.orchestra.run.smithi050.stdout:Assimilating anything we can from ceph.conf... 2024-04-15T21:03:23.223 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-04-15T21:03:23.223 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [global] 2024-04-15T21:03:23.223 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout fsid = 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:03:23.223 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.50:3300,v1:172.21.15.50:6789] 2024-04-15T21:03:23.223 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-15T21:03:23.223 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-15T21:03:23.224 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-15T21:03:23.224 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-15T21:03:23.224 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-04-15T21:03:23.224 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-15T21:03:23.224 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = True 2024-04-15T21:03:23.224 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-15T21:03:23.224 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-04-15T21:03:23.224 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [osd] 2024-04-15T21:03:23.224 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-15T21:03:23.224 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-15T21:03:23.224 INFO:teuthology.orchestra.run.smithi050.stdout:Generating new minimal ceph.conf... 2024-04-15T21:03:23.328 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:23 smithi050 ceph-mon[29823]: from='client.? 172.21.15.50:0/4042793296' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-15T21:03:23.328 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:23 smithi050 ceph-mon[29823]: from='client.? 172.21.15.50:0/4042793296' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-15T21:03:24.250 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:24 smithi050 ceph-mon[29823]: from='client.? 172.21.15.50:0/241665631' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:03:24.253 INFO:teuthology.orchestra.run.smithi050.stdout:Restarting the monitor... 2024-04-15T21:03:24.516 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:24 smithi050 systemd[1]: Stopping Ceph mon.a for 650ea436-fb6b-11ee-bc8f-c7b262605968... 2024-04-15T21:03:24.781 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:24 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a[29800]: 2024-04-15T21:03:24.522+0000 7f0f1329d700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-04-15T21:03:24.781 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:24 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a[29800]: 2024-04-15T21:03:24.522+0000 7f0f1329d700 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-04-15T21:03:25.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:24 smithi050 podman[30152]: 2024-04-15 21:03:24.789371175 +0000 UTC m=+0.362926310 container died 297baf64a2d5ff4220041489a30ad94e28c9a02038fb5e0bc5efd0ec79a4932c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a, org.label-schema.build-date=20240409, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.schema-version=1.0, GIT_CLEAN=True, maintainer=Guillaume Abrioux , ceph=True, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-87dbfb6, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-15T21:03:25.687 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:25 smithi050 podman[30152]: 2024-04-15 21:03:25.44515217 +0000 UTC m=+1.018707304 container cleanup 297baf64a2d5ff4220041489a30ad94e28c9a02038fb5e0bc5efd0ec79a4932c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GIT_CLEAN=True, RELEASE=main-87dbfb6, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, ceph=True, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.build-date=20240409) 2024-04-15T21:03:25.687 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:25 smithi050 bash[30152]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a 2024-04-15T21:03:26.063 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:25 smithi050 podman[30172]: 2024-04-15 21:03:25.69617639 +0000 UTC m=+0.905702503 container remove 297baf64a2d5ff4220041489a30ad94e28c9a02038fb5e0bc5efd0ec79a4932c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a, RELEASE=main-87dbfb6, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, org.label-schema.build-date=20240409, org.label-schema.license=GPLv2, ceph=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67) 2024-04-15T21:03:26.064 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:25 smithi050 systemd[1]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.a.service: Deactivated successfully. 2024-04-15T21:03:26.064 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:25 smithi050 systemd[1]: Stopped Ceph mon.a for 650ea436-fb6b-11ee-bc8f-c7b262605968. 2024-04-15T21:03:26.064 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:25 smithi050 systemd[1]: Starting Ceph mon.a for 650ea436-fb6b-11ee-bc8f-c7b262605968... 2024-04-15T21:03:26.064 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 podman[30272]: 2024-04-15 21:03:26.072186633 +0000 UTC m=+0.097776550 container create 00a2c11cf43de48ca3a8a369c7db87ad5c4f354f39fb6014819a752d2004fcf2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a, GIT_CLEAN=True, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.schema-version=1.0, RELEASE=main-87dbfb6, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux ) 2024-04-15T21:03:26.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 podman[30272]: 2024-04-15 21:03:25.99201741 +0000 UTC m=+0.017607338 image pull a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:03:26.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 podman[30272]: 2024-04-15 21:03:26.274533321 +0000 UTC m=+0.300123236 container init 00a2c11cf43de48ca3a8a369c7db87ad5c4f354f39fb6014819a752d2004fcf2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a, org.label-schema.license=GPLv2, org.label-schema.build-date=20240409, maintainer=Guillaume Abrioux , GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, ceph=True, RELEASE=main-87dbfb6) 2024-04-15T21:03:26.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 podman[30272]: 2024-04-15 21:03:26.280075729 +0000 UTC m=+0.305665646 container start 00a2c11cf43de48ca3a8a369c7db87ad5c4f354f39fb6014819a752d2004fcf2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True, CEPH_POINT_RELEASE=, RELEASE=main-87dbfb6) 2024-04-15T21:03:26.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: set uid:gid to 167:167 (ceph:ceph) 2024-04-15T21:03:26.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: ceph version 19.0.0-3084-g87dbfb63 (87dbfb632e974cb2c28d17423071d2d833b53b29) squid (dev), process ceph-mon, pid 7 2024-04-15T21:03:26.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: pidfile_write: ignore empty --pid-file 2024-04-15T21:03:26.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: load: jerasure load: lrc 2024-04-15T21:03:26.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: RocksDB version: 7.9.2 2024-04-15T21:03:26.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Git sha 0 2024-04-15T21:03:26.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Compile date 2024-04-14 15:12:02 2024-04-15T21:03:26.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: DB SUMMARY 2024-04-15T21:03:26.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: DB Session ID: FQT69CFCLKARJ7XEOS2I 2024-04-15T21:03:26.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: CURRENT file: CURRENT 2024-04-15T21:03:26.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: IDENTITY file: IDENTITY 2024-04-15T21:03:26.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-04-15T21:03:26.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-04-15T21:03:26.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 89103 ; 2024-04-15T21:03:26.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.error_if_exists: 0 2024-04-15T21:03:26.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.create_if_missing: 0 2024-04-15T21:03:26.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.paranoid_checks: 1 2024-04-15T21:03:26.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.flush_verify_memtable_count: 1 2024-04-15T21:03:26.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-15T21:03:26.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-15T21:03:26.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.env: 0x55a94c3a2cc0 2024-04-15T21:03:26.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.fs: PosixFileSystem 2024-04-15T21:03:26.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.info_log: 0x55a94e74fc20 2024-04-15T21:03:26.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_file_opening_threads: 16 2024-04-15T21:03:26.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.statistics: (nil) 2024-04-15T21:03:26.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.use_fsync: 0 2024-04-15T21:03:26.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_log_file_size: 0 2024-04-15T21:03:26.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-15T21:03:26.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.log_file_time_to_roll: 0 2024-04-15T21:03:26.343 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.keep_log_file_num: 1000 2024-04-15T21:03:26.343 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.recycle_log_file_num: 0 2024-04-15T21:03:26.343 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.allow_fallocate: 1 2024-04-15T21:03:26.343 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.allow_mmap_reads: 0 2024-04-15T21:03:26.343 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.allow_mmap_writes: 0 2024-04-15T21:03:26.343 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.use_direct_reads: 0 2024-04-15T21:03:26.343 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-15T21:03:26.343 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.create_missing_column_families: 0 2024-04-15T21:03:26.343 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.db_log_dir: 2024-04-15T21:03:26.343 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.wal_dir: 2024-04-15T21:03:26.343 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.table_cache_numshardbits: 6 2024-04-15T21:03:26.343 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.WAL_ttl_seconds: 0 2024-04-15T21:03:26.343 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.WAL_size_limit_MB: 0 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.is_fd_close_on_exec: 1 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.advise_random_on_open: 1 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.db_write_buffer_size: 0 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.write_buffer_manager: 0x55a94e71e1e0 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.use_adaptive_mutex: 0 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.rate_limiter: (nil) 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.wal_recovery_mode: 2 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.enable_thread_tracking: 0 2024-04-15T21:03:26.344 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.enable_pipelined_write: 0 2024-04-15T21:03:26.345 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.unordered_write: 0 2024-04-15T21:03:26.345 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-15T21:03:26.345 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-15T21:03:26.345 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-15T21:03:26.345 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-15T21:03:26.345 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.row_cache: None 2024-04-15T21:03:26.345 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.wal_filter: None 2024-04-15T21:03:26.345 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-15T21:03:26.345 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.allow_ingest_behind: 0 2024-04-15T21:03:26.345 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.two_write_queues: 0 2024-04-15T21:03:26.345 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.manual_wal_flush: 0 2024-04-15T21:03:26.345 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.wal_compression: 0 2024-04-15T21:03:26.345 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.atomic_flush: 0 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.persist_stats_to_disk: 0 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.write_dbid_to_manifest: 0 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.log_readahead_size: 0 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.best_efforts_recovery: 0 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.allow_data_in_errors: 0 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.db_host_id: __hostname__ 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.enforce_single_del_contracts: true 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_background_jobs: 2 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_background_compactions: -1 2024-04-15T21:03:26.346 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_subcompactions: 1 2024-04-15T21:03:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-15T21:03:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-15T21:03:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.delayed_write_rate : 16777216 2024-04-15T21:03:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_total_wal_size: 0 2024-04-15T21:03:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-15T21:03:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.stats_dump_period_sec: 600 2024-04-15T21:03:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.stats_persist_period_sec: 600 2024-04-15T21:03:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-15T21:03:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_open_files: -1 2024-04-15T21:03:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.bytes_per_sync: 0 2024-04-15T21:03:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.wal_bytes_per_sync: 0 2024-04-15T21:03:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.strict_bytes_per_sync: 0 2024-04-15T21:03:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compaction_readahead_size: 0 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_background_flushes: -1 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Compression algorithms supported: 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: kZSTD supported: 0 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: kXpressCompression supported: 0 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: kLZ4HCCompression supported: 1 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: kZlibCompression supported: 1 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: kSnappyCompression supported: 1 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: kLZ4Compression supported: 1 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: kBZip2Compression supported: 0 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Fast CRC32 supported: Supported on x86 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: DMutex implementation: pthread_mutex_t 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-04-15T21:03:26.348 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.merge_operator: 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compaction_filter: None 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compaction_filter_factory: None 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.sst_partitioner_factory: None 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.memtable_factory: SkipListFactory 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.table_factory: BlockBasedTable 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55a94e74fde0) 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout: cache_index_and_filter_blocks: 1 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout: pin_top_level_index_and_filter: 1 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout: index_type: 0 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout: data_block_index_type: 0 2024-04-15T21:03:26.349 INFO:journalctl@ceph.mon.a.smithi050.stdout: index_shortening: 1 2024-04-15T21:03:26.350 INFO:journalctl@ceph.mon.a.smithi050.stdout: data_block_hash_table_util_ratio: 0.750000 2024-04-15T21:03:26.350 INFO:journalctl@ceph.mon.a.smithi050.stdout: checksum: 4 2024-04-15T21:03:26.350 INFO:journalctl@ceph.mon.a.smithi050.stdout: no_block_cache: 0 2024-04-15T21:03:26.350 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_cache: 0x55a94e751090 2024-04-15T21:03:26.350 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_cache_name: BinnedLRUCache 2024-04-15T21:03:26.350 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_cache_options: 2024-04-15T21:03:26.350 INFO:journalctl@ceph.mon.a.smithi050.stdout: capacity : 536870912 2024-04-15T21:03:26.350 INFO:journalctl@ceph.mon.a.smithi050.stdout: num_shard_bits : 4 2024-04-15T21:03:26.350 INFO:journalctl@ceph.mon.a.smithi050.stdout: strict_capacity_limit : 0 2024-04-15T21:03:26.350 INFO:journalctl@ceph.mon.a.smithi050.stdout: high_pri_pool_ratio: 0.000 2024-04-15T21:03:26.350 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_cache_compressed: (nil) 2024-04-15T21:03:26.350 INFO:journalctl@ceph.mon.a.smithi050.stdout: persistent_cache: (nil) 2024-04-15T21:03:26.350 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_size: 4096 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_size_deviation: 10 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_restart_interval: 16 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: index_block_restart_interval: 1 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: metadata_block_size: 4096 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: partition_filters: 0 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: use_delta_encoding: 1 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: filter_policy: bloomfilter 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: whole_key_filtering: 1 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: verify_compression: 0 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: read_amp_bytes_per_bit: 0 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: format_version: 5 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: enable_index_compression: 1 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: block_align: 0 2024-04-15T21:03:26.351 INFO:journalctl@ceph.mon.a.smithi050.stdout: max_auto_readahead_size: 262144 2024-04-15T21:03:26.352 INFO:journalctl@ceph.mon.a.smithi050.stdout: prepopulate_block_cache: 0 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout: initial_auto_readahead_size: 8192 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout: num_file_reads_for_auto_readahead: 2 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.write_buffer_size: 33554432 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_write_buffer_number: 2 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compression: NoCompression 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.bottommost_compression: Disabled 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.prefix_extractor: nullptr 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.num_levels: 7 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-15T21:03:26.353 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-15T21:03:26.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-15T21:03:26.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-15T21:03:26.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-15T21:03:26.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-15T21:03:26.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-15T21:03:26.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-15T21:03:26.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-15T21:03:26.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compression_opts.window_bits: -14 2024-04-15T21:03:26.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compression_opts.level: 32767 2024-04-15T21:03:26.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compression_opts.strategy: 0 2024-04-15T21:03:26.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-15T21:03:26.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-15T21:03:26.354 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compression_opts.enabled: false 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.target_file_size_base: 67108864 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.target_file_size_multiplier: 1 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-15T21:03:26.355 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-15T21:03:26.356 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-15T21:03:26.356 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-15T21:03:26.356 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-15T21:03:26.356 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-15T21:03:26.356 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-15T21:03:26.356 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-15T21:03:26.356 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-15T21:03:26.356 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.arena_block_size: 1048576 2024-04-15T21:03:26.356 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-15T21:03:26.356 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-15T21:03:26.356 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.disable_auto_compactions: 0 2024-04-15T21:03:26.356 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-15T21:03:26.356 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.inplace_update_support: 0 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.inplace_update_num_locks: 10000 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.memtable_huge_page_size: 0 2024-04-15T21:03:26.357 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.bloom_locality: 0 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.max_successive_merges: 0 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.optimize_filters_for_hits: 0 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.paranoid_file_checks: 0 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.force_consistency_checks: 1 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.report_bg_io_stats: 0 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.ttl: 2592000 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.periodic_compaction_seconds: 0 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.enable_blob_files: false 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.min_blob_size: 0 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.blob_file_size: 268435456 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.blob_compression_type: NoCompression 2024-04-15T21:03:26.358 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.enable_blob_garbage_collection: false 2024-04-15T21:03:26.359 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-15T21:03:26.359 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-15T21:03:26.359 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-15T21:03:26.359 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.blob_file_starting_level: 0 2024-04-15T21:03:26.359 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-15T21:03:26.359 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-04-15T21:03:26.359 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-04-15T21:03:26.359 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 0776c3f1-e9bb-4939-9142-674e4e48575d 2024-04-15T21:03:26.359 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713215006309975, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-04-15T21:03:26.359 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-04-15T21:03:26.359 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713215006310844, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85720, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 258, "table_properties": {"data_size": 83867, "index_size": 237, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 10201, "raw_average_key_size": 47, "raw_value_size": 78074, "raw_average_value_size": 359, "num_data_blocks": 11, "num_entries": 217, "num_filter_entries": 217, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1713215006, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "0776c3f1-e9bb-4939-9142-674e4e48575d", "db_session_id": "FQT69CFCLKARJ7XEOS2I", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-04-15T21:03:26.359 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713215006310934, "job": 1, "event": "recovery_finished"} 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55a94e83e000 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: DB pointer 0x55a94e828000 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout: ** DB Stats ** 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-15T21:03:26.360 INFO:journalctl@ceph.mon.a.smithi050.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.stdout: 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.stdout: ** Compaction Stats [default] ** 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.stdout: L0 2/0 85.57 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 146.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.stdout: Sum 2/0 85.57 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 146.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.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 146.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.stdout: 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.stdout: ** Compaction Stats [default] ** 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.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 146.2 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.stdout: 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-15T21:03:26.361 INFO:journalctl@ceph.mon.a.smithi050.stdout: 2024-04-15T21:03:26.362 INFO:journalctl@ceph.mon.a.smithi050.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-15T21:03:26.362 INFO:journalctl@ceph.mon.a.smithi050.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-04-15T21:03:26.362 INFO:journalctl@ceph.mon.a.smithi050.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-15T21:03:26.362 INFO:journalctl@ceph.mon.a.smithi050.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-04-15T21:03:26.362 INFO:journalctl@ceph.mon.a.smithi050.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-04-15T21:03:26.362 INFO:journalctl@ceph.mon.a.smithi050.stdout: AddFile(Keys): cumulative 0, interval 0 2024-04-15T21:03:26.362 INFO:journalctl@ceph.mon.a.smithi050.stdout: Cumulative compaction: 0.00 GB write, 27.34 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-15T21:03:26.362 INFO:journalctl@ceph.mon.a.smithi050.stdout: Interval compaction: 0.00 GB write, 27.34 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-15T21:03:26.362 INFO:journalctl@ceph.mon.a.smithi050.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-04-15T21:03:26.362 INFO:journalctl@ceph.mon.a.smithi050.stdout: Block cache BinnedLRUCache@0x55a94e751090#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 9e-06 secs_since: 0 2024-04-15T21:03:26.362 INFO:journalctl@ceph.mon.a.smithi050.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.42 KB,8.04663e-05%) Misc(1,0.00 KB,0%) 2024-04-15T21:03:26.362 INFO:journalctl@ceph.mon.a.smithi050.stdout: 2024-04-15T21:03:26.362 INFO:journalctl@ceph.mon.a.smithi050.stdout: ** File Read Latency Histogram By Level [default] ** 2024-04-15T21:03:26.363 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: starting mon.a rank 0 at public addrs [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] at bind addrs [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:03:26.363 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: mon.a@-1(???) e1 preinit fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:03:26.363 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: mon.a@-1(???).mds e1 new map 2024-04-15T21:03:26.363 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: mon.a@-1(???).mds e1 print_map 2024-04-15T21:03:26.363 INFO:journalctl@ceph.mon.a.smithi050.stdout: e1 2024-04-15T21:03:26.363 INFO:journalctl@ceph.mon.a.smithi050.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-04-15T21:03:26.363 INFO:journalctl@ceph.mon.a.smithi050.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-04-15T21:03:26.363 INFO:journalctl@ceph.mon.a.smithi050.stdout: legacy client fscid: -1 2024-04-15T21:03:26.363 INFO:journalctl@ceph.mon.a.smithi050.stdout: 2024-04-15T21:03:26.363 INFO:journalctl@ceph.mon.a.smithi050.stdout: No filesystems configured 2024-04-15T21:03:26.363 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-15T21:03:26.363 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:03:26.364 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:03:26.364 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:03:26.364 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-04-15T21:03:26.403 INFO:teuthology.orchestra.run.smithi050.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-04-15T21:03:26.632 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: mon.a is new leader, mons a in quorum (ranks 0) 2024-04-15T21:03:26.632 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: monmap epoch 1 2024-04-15T21:03:26.633 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:03:26.633 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: last_changed 2024-04-15T21:03:07.001665+0000 2024-04-15T21:03:26.633 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: created 2024-04-15T21:03:07.001665+0000 2024-04-15T21:03:26.633 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: min_mon_release 19 (squid) 2024-04-15T21:03:26.633 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: election_strategy: 1 2024-04-15T21:03:26.633 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-04-15T21:03:26.633 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: fsmap 2024-04-15T21:03:26.633 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: osdmap e1: 0 total, 0 up, 0 in 2024-04-15T21:03:26.633 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 ceph-mon[30310]: mgrmap e1: no daemons active 2024-04-15T21:03:26.633 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 bash[30272]: 00a2c11cf43de48ca3a8a369c7db87ad5c4f354f39fb6014819a752d2004fcf2 2024-04-15T21:03:26.633 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:26 smithi050 systemd[1]: Started Ceph mon.a for 650ea436-fb6b-11ee-bc8f-c7b262605968. 2024-04-15T21:03:27.475 INFO:teuthology.orchestra.run.smithi050.stdout:Wrote config to /etc/ceph/ceph.conf 2024-04-15T21:03:27.497 INFO:teuthology.orchestra.run.smithi050.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:03:27.497 INFO:teuthology.orchestra.run.smithi050.stdout:Creating mgr... 2024-04-15T21:03:27.498 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying port 0.0.0.0:9283 ... 2024-04-15T21:03:27.498 INFO:teuthology.orchestra.run.smithi050.stdout:Verifying port 0.0.0.0:8765 ... 2024-04-15T21:03:27.751 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mgr.a 2024-04-15T21:03:27.752 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Failed to reset failed state of unit ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mgr.a.service: Unit ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mgr.a.service not loaded. 2024-04-15T21:03:27.906 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-650ea436-fb6b-11ee-bc8f-c7b262605968.target.wants/ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mgr.a.service → /etc/systemd/system/ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@.service. 2024-04-15T21:03:28.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:27 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/297982630' entity='client.admin' 2024-04-15T21:03:28.089 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:27 smithi050 systemd[1]: Starting Ceph mgr.a for 650ea436-fb6b-11ee-bc8f-c7b262605968... 2024-04-15T21:03:28.383 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-15T21:03:28.384 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout disabled 2024-04-15T21:03:28.391 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-15T21:03:28.391 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-04-15T21:03:28.391 INFO:teuthology.orchestra.run.smithi050.stdout:firewalld.service is not enabled 2024-04-15T21:03:28.391 INFO:teuthology.orchestra.run.smithi050.stdout:Not possible to enable service . firewalld.service is not available 2024-04-15T21:03:28.399 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-15T21:03:28.399 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout disabled 2024-04-15T21:03:28.407 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-15T21:03:28.407 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-04-15T21:03:28.407 INFO:teuthology.orchestra.run.smithi050.stdout:firewalld.service is not enabled 2024-04-15T21:03:28.407 INFO:teuthology.orchestra.run.smithi050.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-04-15T21:03:28.407 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mgr to start... 2024-04-15T21:03:28.407 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mgr... 2024-04-15T21:03:28.529 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:28 smithi050 podman[30551]: 2024-04-15 21:03:28.050017511 +0000 UTC m=+0.017881209 image pull a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 2024-04-15T21:03:28.529 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:28 smithi050 podman[30551]: 2024-04-15 21:03:28.150370325 +0000 UTC m=+0.118234006 container create c09eeb519b1261535e5b0be3a3a4cc47123678fc6f6c423f4ed055a868e07d32 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a, org.label-schema.build-date=20240409, GIT_CLEAN=True, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, ceph=True, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-87dbfb6, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS) 2024-04-15T21:03:28.529 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:28 smithi050 podman[30551]: 2024-04-15 21:03:28.310946859 +0000 UTC m=+0.278810538 container init c09eeb519b1261535e5b0be3a3a4cc47123678fc6f6c423f4ed055a868e07d32 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, RELEASE=main-87dbfb6, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, ceph=True, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.build-date=20240409, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-15T21:03:28.529 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:28 smithi050 podman[30551]: 2024-04-15 21:03:28.316469095 +0000 UTC m=+0.284332773 container start c09eeb519b1261535e5b0be3a3a4cc47123678fc6f6c423f4ed055a868e07d32 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-87dbfb6, GIT_CLEAN=True, CEPH_POINT_RELEASE=, ceph=True, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409) 2024-04-15T21:03:28.529 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:28 smithi050 bash[30551]: c09eeb519b1261535e5b0be3a3a4cc47123678fc6f6c423f4ed055a868e07d32 2024-04-15T21:03:28.529 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:28 smithi050 systemd[1]: Started Ceph mgr.a for 650ea436-fb6b-11ee-bc8f-c7b262605968. 2024-04-15T21:03:29.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:29 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/1625919749' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-15T21:03:29.089 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:28 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:28.889+0000 7f7e6085e200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-15T21:03:29.089 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:28 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:28.989+0000 7f7e6085e200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-15T21:03:29.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-04-15T21:03:29.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:03:29.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsid": "650ea436-fb6b-11ee-bc8f-c7b262605968", 2024-04-15T21:03:29.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "health": { 2024-04-15T21:03:29.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-15T21:03:29.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-15T21:03:29.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-15T21:03:29.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:29.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-15T21:03:29.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-15T21:03:29.557 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 0 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "a" 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-15T21:03:29.558 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-15T21:03:29.559 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-15T21:03:29.559 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-15T21:03:29.559 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-15T21:03:29.559 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-15T21:03:29.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:29.562 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:29.563 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "restful" 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modified": "2024-04-15T21:03:21.092298+0000", 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-15T21:03:29.564 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:03:29.565 INFO:teuthology.orchestra.run.smithi050.stdout:mgr not available, waiting (1/15)... 2024-04-15T21:03:29.839 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:29 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:29.663+0000 7f7e6085e200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-15T21:03:29.839 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:29 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:29.757+0000 7f7e6085e200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-15T21:03:30.339 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:29 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:29.901+0000 7f7e6085e200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-15T21:03:30.339 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:30 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:29.999+0000 7f7e6085e200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-15T21:03:30.339 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:30 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:30.084+0000 7f7e6085e200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-15T21:03:30.644 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:30 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:30.354+0000 7f7e6085e200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-15T21:03:30.644 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:30 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:30.467+0000 7f7e6085e200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-15T21:03:30.645 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:30 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:30.555+0000 7f7e6085e200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-15T21:03:30.645 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:30 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:30.651+0000 7f7e6085e200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-15T21:03:31.088 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:30 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:30.830+0000 7f7e6085e200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-15T21:03:31.962 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:31 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:31.845+0000 7f7e6085e200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-15T21:03:32.325 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:32 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/4274886667' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-15T21:03:32.325 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:31 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:31.982+0000 7f7e6085e200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-15T21:03:32.325 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:32 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:32.332+0000 7f7e6085e200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-15T21:03:32.588 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:32 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:32.423+0000 7f7e6085e200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-15T21:03:32.663 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-04-15T21:03:32.663 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:03:32.663 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsid": "650ea436-fb6b-11ee-bc8f-c7b262605968", 2024-04-15T21:03:32.663 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "health": { 2024-04-15T21:03:32.663 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-15T21:03:32.663 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-15T21:03:32.663 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-15T21:03:32.663 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 0 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "a" 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:32.664 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-15T21:03:32.665 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:32.665 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-15T21:03:32.665 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-15T21:03:32.665 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-15T21:03:32.665 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-15T21:03:32.665 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-15T21:03:32.665 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-15T21:03:32.668 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:32.668 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-15T21:03:32.668 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-15T21:03:32.669 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-15T21:03:32.669 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-15T21:03:32.669 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-15T21:03:32.669 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-15T21:03:32.669 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-15T21:03:32.669 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-15T21:03:32.669 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-15T21:03:32.669 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:32.669 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-15T21:03:32.669 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:32.669 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-15T21:03:32.669 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "restful" 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:32.670 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modified": "2024-04-15T21:03:21.092298+0000", 2024-04-15T21:03:32.671 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:03:32.671 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:32.671 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-15T21:03:32.671 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:03:32.671 INFO:teuthology.orchestra.run.smithi050.stdout:mgr not available, waiting (2/15)... 2024-04-15T21:03:33.089 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:32 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:32.629+0000 7f7e6085e200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:03:33.089 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:32 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:32.820+0000 7f7e6085e200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-15T21:03:33.375 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:33 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:33.120+0000 7f7e6085e200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:03:33.376 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:33 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:33.383+0000 7f7e6085e200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-15T21:03:33.838 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:33 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:33.627+0000 7f7e6085e200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-15T21:03:34.792 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:34 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:34.465+0000 7f7e6085e200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-15T21:03:35.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:35 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3025472945' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-15T21:03:35.339 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:35 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:35.065+0000 7f7e6085e200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-15T21:03:35.339 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:35 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:35.171+0000 7f7e6085e200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-15T21:03:35.814 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:35 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:35.400+0000 7f7e6085e200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-15T21:03:35.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-04-15T21:03:35.819 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsid": "650ea436-fb6b-11ee-bc8f-c7b262605968", 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "health": { 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 0 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "a" 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_age": 8, 2024-04-15T21:03:35.820 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-15T21:03:35.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:35.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-15T21:03:35.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-15T21:03:35.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:35.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-15T21:03:35.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:35.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-15T21:03:35.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-15T21:03:35.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-15T21:03:35.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-15T21:03:35.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-15T21:03:35.821 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-15T21:03:35.825 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:35.825 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-15T21:03:35.825 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-15T21:03:35.825 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-15T21:03:35.825 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-15T21:03:35.825 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-15T21:03:35.825 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-15T21:03:35.825 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-15T21:03:35.826 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "restful" 2024-04-15T21:03:35.827 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:03:35.827 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:03:35.827 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:35.827 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-15T21:03:35.827 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:35.827 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modified": "2024-04-15T21:03:21.092298+0000", 2024-04-15T21:03:35.827 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:03:35.827 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:35.827 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-15T21:03:35.827 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:03:35.827 INFO:teuthology.orchestra.run.smithi050.stdout:mgr not available, waiting (3/15)... 2024-04-15T21:03:36.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:36 smithi050 ceph-mon[30310]: Activating manager daemon a 2024-04-15T21:03:36.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:36 smithi050 ceph-mon[30310]: mgrmap e2: a(active, starting, since 0.00297877s) 2024-04-15T21:03:36.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:36 smithi050 ceph-mon[30310]: from='mgr.14100 172.21.15.50:0/4074917546' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-15T21:03:36.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:36 smithi050 ceph-mon[30310]: from='mgr.14100 172.21.15.50:0/4074917546' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-15T21:03:36.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:36 smithi050 ceph-mon[30310]: from='mgr.14100 172.21.15.50:0/4074917546' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-15T21:03:36.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:36 smithi050 ceph-mon[30310]: from='mgr.14100 172.21.15.50:0/4074917546' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:03:36.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:36 smithi050 ceph-mon[30310]: from='mgr.14100 172.21.15.50:0/4074917546' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-15T21:03:36.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:36 smithi050 ceph-mon[30310]: Manager daemon a is now available 2024-04-15T21:03:36.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:36 smithi050 ceph-mon[30310]: from='mgr.14100 172.21.15.50:0/4074917546' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-15T21:03:36.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:36 smithi050 ceph-mon[30310]: from='mgr.14100 172.21.15.50:0/4074917546' entity='mgr.a' 2024-04-15T21:03:36.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:36 smithi050 ceph-mon[30310]: from='mgr.14100 172.21.15.50:0/4074917546' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-15T21:03:36.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:36 smithi050 ceph-mon[30310]: from='mgr.14100 172.21.15.50:0/4074917546' entity='mgr.a' 2024-04-15T21:03:36.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:36 smithi050 ceph-mon[30310]: from='mgr.14100 172.21.15.50:0/4074917546' entity='mgr.a' 2024-04-15T21:03:37.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:37 smithi050 ceph-mon[30310]: mgrmap e3: a(active, since 1.00707s) 2024-04-15T21:03:38.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:38 smithi050 ceph-mon[30310]: mgrmap e4: a(active, since 2s) 2024-04-15T21:03:39.184 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-04-15T21:03:39.185 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:03:39.185 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsid": "650ea436-fb6b-11ee-bc8f-c7b262605968", 2024-04-15T21:03:39.185 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "health": { 2024-04-15T21:03:39.185 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-15T21:03:39.185 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-15T21:03:39.185 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-15T21:03:39.185 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:39.185 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-15T21:03:39.185 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-15T21:03:39.185 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 0 2024-04-15T21:03:39.185 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:03:39.185 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-15T21:03:39.186 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "a" 2024-04-15T21:03:39.186 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:03:39.186 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "quorum_age": 12, 2024-04-15T21:03:39.186 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-15T21:03:39.186 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:39.186 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-15T21:03:39.186 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-15T21:03:39.186 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:39.186 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-15T21:03:39.186 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:39.186 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-15T21:03:39.186 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-15T21:03:39.186 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-15T21:03:39.190 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-15T21:03:39.190 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-15T21:03:39.190 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-15T21:03:39.190 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:39.190 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-15T21:03:39.190 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:39.191 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-15T21:03:39.192 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-15T21:03:39.192 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-15T21:03:39.192 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-15T21:03:39.192 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-15T21:03:39.192 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-15T21:03:39.192 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "restful" 2024-04-15T21:03:39.192 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ], 2024-04-15T21:03:39.192 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:03:39.192 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:39.192 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-15T21:03:39.192 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-15T21:03:39.192 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "modified": "2024-04-15T21:03:21.092298+0000", 2024-04-15T21:03:39.192 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-15T21:03:39.193 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout }, 2024-04-15T21:03:39.193 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-15T21:03:39.193 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:03:39.193 INFO:teuthology.orchestra.run.smithi050.stdout:mgr is available 2024-04-15T21:03:39.434 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:39 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3244354599' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-15T21:03:40.437 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:40 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/2752301997' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-15T21:03:40.437 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:40 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/2752301997' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-15T21:03:40.440 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-04-15T21:03:40.441 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [global] 2024-04-15T21:03:40.441 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout fsid = 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:03:40.441 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-15T21:03:40.441 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-15T21:03:40.441 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-15T21:03:40.441 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-15T21:03:40.441 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-04-15T21:03:40.441 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-15T21:03:40.441 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-15T21:03:40.441 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 2024-04-15T21:03:40.441 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout [osd] 2024-04-15T21:03:40.441 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-15T21:03:40.441 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-15T21:03:40.442 INFO:teuthology.orchestra.run.smithi050.stdout:Enabling cephadm module... 2024-04-15T21:03:41.718 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:41 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/1053790528' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-15T21:03:41.718 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:41 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: ignoring --setuser ceph since I am not root 2024-04-15T21:03:41.718 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:41 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: ignoring --setgroup ceph since I am not root 2024-04-15T21:03:42.236 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:41 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:41.991+0000 7f87e5672200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-15T21:03:42.236 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:42 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:42.091+0000 7f87e5672200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-15T21:03:42.546 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:42 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/1053790528' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-04-15T21:03:42.546 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:42 smithi050 ceph-mon[30310]: mgrmap e5: a(active, since 6s) 2024-04-15T21:03:43.065 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:42 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:42.822+0000 7f87e5672200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-15T21:03:43.066 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:42 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:42.925+0000 7f87e5672200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-15T21:03:43.066 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:43 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:43.073+0000 7f87e5672200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-15T21:03:43.338 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:43 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:43.173+0000 7f87e5672200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-15T21:03:43.339 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:43 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:43.259+0000 7f87e5672200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-15T21:03:43.379 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:03:43.380 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-04-15T21:03:43.380 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-15T21:03:43.380 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-04-15T21:03:43.380 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-15T21:03:43.380 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:03:43.380 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for the mgr to restart... 2024-04-15T21:03:43.380 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mgr epoch 5... 2024-04-15T21:03:43.636 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:43 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/2575837571' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-15T21:03:43.636 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:43 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:43.540+0000 7f87e5672200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-15T21:03:44.021 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:43 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:43.656+0000 7f87e5672200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-15T21:03:44.022 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:43 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:43.748+0000 7f87e5672200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-15T21:03:44.022 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:43 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:43.847+0000 7f87e5672200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-15T21:03:44.022 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:44 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:44.029+0000 7f87e5672200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-15T21:03:45.338 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:45 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:45.022+0000 7f87e5672200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-15T21:03:45.339 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:45 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:45.157+0000 7f87e5672200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-15T21:03:45.782 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:45 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:45.497+0000 7f87e5672200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-15T21:03:45.782 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:45 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:45.589+0000 7f87e5672200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-15T21:03:45.782 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:45 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:45.789+0000 7f87e5672200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:03:46.089 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:45 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:45.979+0000 7f87e5672200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-15T21:03:46.528 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:46 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:46.271+0000 7f87e5672200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:03:46.838 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:46 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:46.536+0000 7f87e5672200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-15T21:03:46.839 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:46 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:46.779+0000 7f87e5672200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-15T21:03:48.089 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:47 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:47.610+0000 7f87e5672200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-15T21:03:48.510 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:48.196+0000 7f87e5672200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-15T21:03:48.511 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:48.297+0000 7f87e5672200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-15T21:03:48.511 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:03:48.518+0000 7f87e5672200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-15T21:03:48.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: Active manager daemon a restarted 2024-04-15T21:03:48.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: Activating manager daemon a 2024-04-15T21:03:48.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: osdmap e2: 0 total, 0 up, 0 in 2024-04-15T21:03:48.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: mgrmap e6: a(active, starting, since 0.00311536s) 2024-04-15T21:03:48.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:03:48.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-15T21:03:48.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-15T21:03:48.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-15T21:03:48.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-15T21:03:48.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: Manager daemon a is now available 2024-04-15T21:03:48.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:03:48.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:03:48.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:03:48.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:03:48.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:03:48.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:48 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-15T21:03:49.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:49 smithi050 ceph-mon[30310]: Found migration_current of "None". Setting to last migration. 2024-04-15T21:03:49.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:49 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-15T21:03:49.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:49 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:03:49.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:49 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:03:49.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:49 smithi050 ceph-mon[30310]: mgrmap e7: a(active, since 1.00509s) 2024-04-15T21:03:50.178 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:03:50.178 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-04-15T21:03:50.178 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-15T21:03:50.178 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:03:50.179 INFO:teuthology.orchestra.run.smithi050.stdout:mgr epoch 5 is available 2024-04-15T21:03:50.179 INFO:teuthology.orchestra.run.smithi050.stdout:Setting orchestrator backend to cephadm... 2024-04-15T21:03:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:50 smithi050 ceph-mon[30310]: from='client.14124 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-15T21:03:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:50 smithi050 ceph-mon[30310]: from='client.14124 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-15T21:03:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:50 smithi050 ceph-mon[30310]: [15/Apr/2024:21:03:49] ENGINE Bus STARTING 2024-04-15T21:03:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:50 smithi050 ceph-mon[30310]: [15/Apr/2024:21:03:49] ENGINE Serving on http://172.21.15.50:8765 2024-04-15T21:03:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:50 smithi050 ceph-mon[30310]: [15/Apr/2024:21:03:49] ENGINE Serving on https://172.21.15.50:7150 2024-04-15T21:03:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:50 smithi050 ceph-mon[30310]: [15/Apr/2024:21:03:49] ENGINE Bus STARTED 2024-04-15T21:03:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:50 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:03:51.731 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:51 smithi050 ceph-mon[30310]: mgrmap e8: a(active, since 2s) 2024-04-15T21:03:51.731 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:51 smithi050 ceph-mon[30310]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:03:51.731 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:51 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:03:51.731 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:51 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:03:52.704 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:52 smithi050 ceph-mon[30310]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:03:52.932 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout value unchanged 2024-04-15T21:03:52.932 INFO:teuthology.orchestra.run.smithi050.stdout:Generating ssh key... 2024-04-15T21:03:54.586 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: Generating public/private rsa key pair. 2024-04-15T21:03:54.586 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: Your identification has been saved in /tmp/tmp37tyc0f2/key. 2024-04-15T21:03:54.586 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: Your public key has been saved in /tmp/tmp37tyc0f2/key.pub. 2024-04-15T21:03:54.586 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: The key fingerprint is: 2024-04-15T21:03:54.586 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: SHA256:WRxkMZPsM5MSEcb1Ve4ODlnNkil4bH+AWMoBAdxH6k0 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:03:54.586 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: The key's randomart image is: 2024-04-15T21:03:54.586 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: +---[RSA 3072]----+ 2024-04-15T21:03:54.586 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: | ..+*X@o. ...| 2024-04-15T21:03:54.586 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: | ..+=+% o * | 2024-04-15T21:03:54.586 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: | .+E.B * +| 2024-04-15T21:03:54.586 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: | ..=*o = + | 2024-04-15T21:03:54.586 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: | S..+o o o| 2024-04-15T21:03:54.587 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: | o + | 2024-04-15T21:03:54.587 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: | . .| 2024-04-15T21:03:54.587 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: | | 2024-04-15T21:03:54.587 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: | | 2024-04-15T21:03:54.587 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:03:54 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: +----[SHA256]-----+ 2024-04-15T21:03:55.364 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:55 smithi050 ceph-mon[30310]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:03:55.364 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:55 smithi050 ceph-mon[30310]: Generating ssh key... 2024-04-15T21:03:55.364 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:55 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:03:55.365 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:55 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:03:56.254 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDiojFuBoKxsopVCng6slb9FTwxSbrlk14/Hdo/7BzchUYg05kdQGBIdytG5szU0Xfgvo8v7564jjfDarz4I5t0sdqa5gqM76zU5O6jXR06X6kWBZEGmnmTg330zphb+lrY/KtLcDLErtFGkA02MTmB7jxqq3VyzO/Kzxe+EaMqy/CxpepIDaj7F1/fUuHNdBjVRU0aXEgu76hC1efSJN2I6GD7IbFU/2tOei6w/1rVmtoNha8S88HJ7LbhZOB59FM5HkXdi7CXdoYg5sW/Ud4GZFOwwBJqnAF9yd7QfWoMDPCnqj5ut7C1pJO4ZZESPWpbpFRECmKBRKWqyyvTgZnXUBj/onMMD72GYluvclV44Xi7wyK6PTIAx+PWggM2OOA2BOqviBkauvlRO9D6M6c0vjamr9aqP8vGb32wazHndytlRPP9KE7o49n/Yfjcjp0cnCfIaNoWG4Tq07mr/NeAsD03ytyh6q3dhPpAOB8rwIYQnwovaa/qivtdNAP4TE0= ceph-650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:03:56.254 INFO:teuthology.orchestra.run.smithi050.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-04-15T21:03:56.255 INFO:teuthology.orchestra.run.smithi050.stdout:Adding key to root@localhost authorized_keys... 2024-04-15T21:03:56.255 INFO:teuthology.orchestra.run.smithi050.stdout:Adding host smithi050... 2024-04-15T21:03:56.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:56 smithi050 ceph-mon[30310]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:03:57.566 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:57 smithi050 ceph-mon[30310]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi050", "addr": "172.21.15.50", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:03:58.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:03:58 smithi050 ceph-mon[30310]: Deploying cephadm binary to smithi050 2024-04-15T21:04:01.970 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Added host 'smithi050' with addr '172.21.15.50' 2024-04-15T21:04:01.970 INFO:teuthology.orchestra.run.smithi050.stdout:Deploying unmanaged mon service... 2024-04-15T21:04:02.588 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:02 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:04:02.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:02 smithi050 ceph-mon[30310]: Added host smithi050 2024-04-15T21:04:02.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:02 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:04:03.989 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:03 smithi050 ceph-mon[30310]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:04:03.989 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:03 smithi050 ceph-mon[30310]: Saving service mon spec with placement count:5 2024-04-15T21:04:03.989 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:03 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:04:04.428 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-04-15T21:04:04.428 INFO:teuthology.orchestra.run.smithi050.stdout:Deploying unmanaged mgr service... 2024-04-15T21:04:05.338 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:05 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:04:05.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:05 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:04:05.662 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-04-15T21:04:06.375 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:06 smithi050 ceph-mon[30310]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:04:06.375 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:06 smithi050 ceph-mon[30310]: Saving service mgr spec with placement count:2 2024-04-15T21:04:06.375 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:06 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:04:07.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:07 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/371631221' entity='client.admin' 2024-04-15T21:04:08.503 INFO:teuthology.orchestra.run.smithi050.stdout:Enabling the dashboard module... 2024-04-15T21:04:08.869 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:08 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:04:08.869 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:08 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:04:08.869 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:08 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi050", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:04:08.870 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:08 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' 2024-04-15T21:04:08.870 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:08 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi050", "caps": []}]: dispatch 2024-04-15T21:04:08.870 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:08 smithi050 ceph-mon[30310]: from='mgr.14120 172.21.15.50:0/1928369196' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi050", "caps": []}]': finished 2024-04-15T21:04:08.870 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:08 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3662070468' entity='client.admin' 2024-04-15T21:04:10.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:09 smithi050 ceph-mon[30310]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:04:10.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:09 smithi050 ceph-mon[30310]: Deploying daemon agent.smithi050 on smithi050 2024-04-15T21:04:10.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:09 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/619753565' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-04-15T21:04:10.089 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:09 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: ignoring --setuser ceph since I am not root 2024-04-15T21:04:10.089 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:09 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: ignoring --setgroup ceph since I am not root 2024-04-15T21:04:10.643 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:10 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:10.386+0000 7f20c4aab200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-15T21:04:10.643 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:10 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:10.490+0000 7f20c4aab200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-15T21:04:11.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:10 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/619753565' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-04-15T21:04:11.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:10 smithi050 ceph-mon[30310]: mgrmap e9: a(active, since 21s) 2024-04-15T21:04:11.405 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:11 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:11.171+0000 7f20c4aab200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-15T21:04:11.406 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:11 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:11.267+0000 7f20c4aab200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-15T21:04:11.406 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:11 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:11.412+0000 7f20c4aab200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-15T21:04:11.696 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:11 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:11.512+0000 7f20c4aab200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-15T21:04:11.696 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:11 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:11.598+0000 7f20c4aab200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-15T21:04:11.699 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:04:11.699 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "epoch": 9, 2024-04-15T21:04:11.699 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-15T21:04:11.699 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "active_name": "a", 2024-04-15T21:04:11.699 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-04-15T21:04:11.699 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:04:11.699 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for the mgr to restart... 2024-04-15T21:04:11.699 INFO:teuthology.orchestra.run.smithi050.stdout:Waiting for mgr epoch 9... 2024-04-15T21:04:11.949 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:11 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/2502069085' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-04-15T21:04:11.950 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:11 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:11.880+0000 7f20c4aab200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-15T21:04:12.338 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:11 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:11.999+0000 7f20c4aab200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-15T21:04:12.339 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:12 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:12.090+0000 7f20c4aab200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-15T21:04:12.339 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:12 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:12.191+0000 7f20c4aab200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-15T21:04:12.838 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:12 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:12.371+0000 7f20c4aab200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-15T21:04:13.517 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:13 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:13.383+0000 7f20c4aab200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-15T21:04:13.517 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:13 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:13.524+0000 7f20c4aab200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-15T21:04:14.166 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:13 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:13.872+0000 7f20c4aab200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-15T21:04:14.166 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:13 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:13.966+0000 7f20c4aab200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-15T21:04:14.166 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:14 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:14.174+0000 7f20c4aab200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:04:14.588 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:14 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:14.369+0000 7f20c4aab200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-15T21:04:14.923 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:14 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:14.667+0000 7f20c4aab200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:04:14.923 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:14 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:14.931+0000 7f20c4aab200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-15T21:04:15.338 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:15 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:15.179+0000 7f20c4aab200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-15T21:04:16.338 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:16.019+0000 7f20c4aab200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-15T21:04:16.927 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:16.609+0000 7f20c4aab200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-15T21:04:16.928 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:16.711+0000 7f20c4aab200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-15T21:04:16.928 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:04:16.935+0000 7f20c4aab200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-15T21:04:17.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-mon[30310]: Active manager daemon a restarted 2024-04-15T21:04:17.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-mon[30310]: Activating manager daemon a 2024-04-15T21:04:17.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-mon[30310]: osdmap e3: 0 total, 0 up, 0 in 2024-04-15T21:04:17.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-mon[30310]: mgrmap e10: a(active, starting, since 0.00298004s) 2024-04-15T21:04:17.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:04:17.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-15T21:04:17.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-15T21:04:17.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-15T21:04:17.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-15T21:04:17.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-mon[30310]: Manager daemon a is now available 2024-04-15T21:04:17.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:17.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:04:18.282 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:17 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2024-04-15T21:04:18.282 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:17 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2024-04-15T21:04:18.282 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:17 smithi050 ceph-mon[30310]: mgrmap e11: a(active, since 1.00582s) 2024-04-15T21:04:19.009 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout { 2024-04-15T21:04:19.009 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2024-04-15T21:04:19.009 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout "initialized": true 2024-04-15T21:04:19.009 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout } 2024-04-15T21:04:19.009 INFO:teuthology.orchestra.run.smithi050.stdout:mgr epoch 9 is available 2024-04-15T21:04:19.009 INFO:teuthology.orchestra.run.smithi050.stdout:Generating a dashboard self-signed certificate... 2024-04-15T21:04:19.820 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:19 smithi050 ceph-mon[30310]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-04-15T21:04:19.820 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:19 smithi050 ceph-mon[30310]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-04-15T21:04:19.820 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:19.820 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi050", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:04:19.820 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:19.820 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi050", "caps": []}]: dispatch 2024-04-15T21:04:20.374 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2024-04-15T21:04:20.374 INFO:teuthology.orchestra.run.smithi050.stdout:Creating initial admin user... 2024-04-15T21:04:20.621 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:20 smithi050 ceph-mon[30310]: [15/Apr/2024:21:04:18] ENGINE Bus STARTING 2024-04-15T21:04:20.621 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:20 smithi050 ceph-mon[30310]: Deploying daemon agent.smithi050 on smithi050 2024-04-15T21:04:20.621 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:20 smithi050 ceph-mon[30310]: [15/Apr/2024:21:04:19] ENGINE Serving on http://172.21.15.50:8765 2024-04-15T21:04:20.621 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:20 smithi050 ceph-mon[30310]: [15/Apr/2024:21:04:19] ENGINE Serving on https://172.21.15.50:7150 2024-04-15T21:04:20.621 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:20 smithi050 ceph-mon[30310]: [15/Apr/2024:21:04:19] ENGINE Bus STARTED 2024-04-15T21:04:20.622 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:20 smithi050 ceph-mon[30310]: mgrmap e12: a(active, since 2s) 2024-04-15T21:04:20.622 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:20 smithi050 ceph-mon[30310]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:04:20.622 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:20.622 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:21.863 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$roE1lj/N0E.kGMNmh/6Vaurm8Q/TnK7QOA9klmoZe24DOfsU8vZHO", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1713215061, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-04-15T21:04:21.863 INFO:teuthology.orchestra.run.smithi050.stdout:Fetching dashboard port number... 2024-04-15T21:04:22.568 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:22 smithi050 ceph-mon[30310]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:04:22.568 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:23.178 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stdout 8443 2024-04-15T21:04:23.189 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-15T21:04:23.189 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout disabled 2024-04-15T21:04:23.197 INFO:teuthology.orchestra.run.smithi050.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-15T21:04:23.197 INFO:teuthology.orchestra.run.smithi050.stdout:systemctl: stdout inactive 2024-04-15T21:04:23.197 INFO:teuthology.orchestra.run.smithi050.stdout:firewalld.service is not enabled 2024-04-15T21:04:23.197 INFO:teuthology.orchestra.run.smithi050.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-04-15T21:04:23.199 INFO:teuthology.orchestra.run.smithi050.stdout:Ceph Dashboard is now available at: 2024-04-15T21:04:23.199 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:04:23.199 INFO:teuthology.orchestra.run.smithi050.stdout: URL: https://smithi050.front.sepia.ceph.com:8443/ 2024-04-15T21:04:23.200 INFO:teuthology.orchestra.run.smithi050.stdout: User: admin 2024-04-15T21:04:23.200 INFO:teuthology.orchestra.run.smithi050.stdout: Password: 4xm4epa0lt 2024-04-15T21:04:23.200 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:04:23.200 INFO:teuthology.orchestra.run.smithi050.stdout:Saving cluster configuration to /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config directory 2024-04-15T21:04:23.200 INFO:teuthology.orchestra.run.smithi050.stdout:Enabling autotune for osd_memory_target 2024-04-15T21:04:23.436 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:23 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3695173219' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-04-15T21:04:24.533 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:24 smithi050 ceph-mon[30310]: mgrmap e13: a(active, since 6s) 2024-04-15T21:04:25.791 INFO:teuthology.orchestra.run.smithi050.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout:Or, if you are only running a single cluster on this host: 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout:Please consider enabling telemetry to help improve Ceph: 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout: ceph telemetry on 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout:For more information see: 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:04:25.792 INFO:teuthology.orchestra.run.smithi050.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-04-15T21:04:25.793 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:04:25.793 INFO:teuthology.orchestra.run.smithi050.stdout:Bootstrap complete. 2024-04-15T21:04:25.838 INFO:tasks.cephadm:Fetching config... 2024-04-15T21:04:25.838 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T21:04:25.838 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-04-15T21:04:25.856 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-04-15T21:04:25.856 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T21:04:25.856 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-04-15T21:04:25.911 INFO:tasks.cephadm:Fetching mon keyring... 2024-04-15T21:04:25.911 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T21:04:25.911 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/keyring of=/dev/stdout 2024-04-15T21:04:26.100 INFO:tasks.cephadm:Fetching pub ssh key... 2024-04-15T21:04:26.100 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T21:04:26.100 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-04-15T21:04:26.161 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-04-15T21:04:26.161 DEBUG:teuthology.orchestra.run.smithi050:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDiojFuBoKxsopVCng6slb9FTwxSbrlk14/Hdo/7BzchUYg05kdQGBIdytG5szU0Xfgvo8v7564jjfDarz4I5t0sdqa5gqM76zU5O6jXR06X6kWBZEGmnmTg330zphb+lrY/KtLcDLErtFGkA02MTmB7jxqq3VyzO/Kzxe+EaMqy/CxpepIDaj7F1/fUuHNdBjVRU0aXEgu76hC1efSJN2I6GD7IbFU/2tOei6w/1rVmtoNha8S88HJ7LbhZOB59FM5HkXdi7CXdoYg5sW/Ud4GZFOwwBJqnAF9yd7QfWoMDPCnqj5ut7C1pJO4ZZESPWpbpFRECmKBRKWqyyvTgZnXUBj/onMMD72GYluvclV44Xi7wyK6PTIAx+PWggM2OOA2BOqviBkauvlRO9D6M6c0vjamr9aqP8vGb32wazHndytlRPP9KE7o49n/Yfjcjp0cnCfIaNoWG4Tq07mr/NeAsD03ytyh6q3dhPpAOB8rwIYQnwovaa/qivtdNAP4TE0= ceph-650ea436-fb6b-11ee-bc8f-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-15T21:04:26.304 INFO:teuthology.orchestra.run.smithi050.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDiojFuBoKxsopVCng6slb9FTwxSbrlk14/Hdo/7BzchUYg05kdQGBIdytG5szU0Xfgvo8v7564jjfDarz4I5t0sdqa5gqM76zU5O6jXR06X6kWBZEGmnmTg330zphb+lrY/KtLcDLErtFGkA02MTmB7jxqq3VyzO/Kzxe+EaMqy/CxpepIDaj7F1/fUuHNdBjVRU0aXEgu76hC1efSJN2I6GD7IbFU/2tOei6w/1rVmtoNha8S88HJ7LbhZOB59FM5HkXdi7CXdoYg5sW/Ud4GZFOwwBJqnAF9yd7QfWoMDPCnqj5ut7C1pJO4ZZESPWpbpFRECmKBRKWqyyvTgZnXUBj/onMMD72GYluvclV44Xi7wyK6PTIAx+PWggM2OOA2BOqviBkauvlRO9D6M6c0vjamr9aqP8vGb32wazHndytlRPP9KE7o49n/Yfjcjp0cnCfIaNoWG4Tq07mr/NeAsD03ytyh6q3dhPpAOB8rwIYQnwovaa/qivtdNAP4TE0= ceph-650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:04:26.319 DEBUG:teuthology.orchestra.run.smithi151:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDiojFuBoKxsopVCng6slb9FTwxSbrlk14/Hdo/7BzchUYg05kdQGBIdytG5szU0Xfgvo8v7564jjfDarz4I5t0sdqa5gqM76zU5O6jXR06X6kWBZEGmnmTg330zphb+lrY/KtLcDLErtFGkA02MTmB7jxqq3VyzO/Kzxe+EaMqy/CxpepIDaj7F1/fUuHNdBjVRU0aXEgu76hC1efSJN2I6GD7IbFU/2tOei6w/1rVmtoNha8S88HJ7LbhZOB59FM5HkXdi7CXdoYg5sW/Ud4GZFOwwBJqnAF9yd7QfWoMDPCnqj5ut7C1pJO4ZZESPWpbpFRECmKBRKWqyyvTgZnXUBj/onMMD72GYluvclV44Xi7wyK6PTIAx+PWggM2OOA2BOqviBkauvlRO9D6M6c0vjamr9aqP8vGb32wazHndytlRPP9KE7o49n/Yfjcjp0cnCfIaNoWG4Tq07mr/NeAsD03ytyh6q3dhPpAOB8rwIYQnwovaa/qivtdNAP4TE0= ceph-650ea436-fb6b-11ee-bc8f-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-15T21:04:26.347 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:26 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/436563962' entity='client.admin' 2024-04-15T21:04:26.367 INFO:teuthology.orchestra.run.smithi151.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDiojFuBoKxsopVCng6slb9FTwxSbrlk14/Hdo/7BzchUYg05kdQGBIdytG5szU0Xfgvo8v7564jjfDarz4I5t0sdqa5gqM76zU5O6jXR06X6kWBZEGmnmTg330zphb+lrY/KtLcDLErtFGkA02MTmB7jxqq3VyzO/Kzxe+EaMqy/CxpepIDaj7F1/fUuHNdBjVRU0aXEgu76hC1efSJN2I6GD7IbFU/2tOei6w/1rVmtoNha8S88HJ7LbhZOB59FM5HkXdi7CXdoYg5sW/Ud4GZFOwwBJqnAF9yd7QfWoMDPCnqj5ut7C1pJO4ZZESPWpbpFRECmKBRKWqyyvTgZnXUBj/onMMD72GYluvclV44Xi7wyK6PTIAx+PWggM2OOA2BOqviBkauvlRO9D6M6c0vjamr9aqP8vGb32wazHndytlRPP9KE7o49n/Yfjcjp0cnCfIaNoWG4Tq07mr/NeAsD03ytyh6q3dhPpAOB8rwIYQnwovaa/qivtdNAP4TE0= ceph-650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:04:26.383 DEBUG:teuthology.orchestra.run.smithi174:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDiojFuBoKxsopVCng6slb9FTwxSbrlk14/Hdo/7BzchUYg05kdQGBIdytG5szU0Xfgvo8v7564jjfDarz4I5t0sdqa5gqM76zU5O6jXR06X6kWBZEGmnmTg330zphb+lrY/KtLcDLErtFGkA02MTmB7jxqq3VyzO/Kzxe+EaMqy/CxpepIDaj7F1/fUuHNdBjVRU0aXEgu76hC1efSJN2I6GD7IbFU/2tOei6w/1rVmtoNha8S88HJ7LbhZOB59FM5HkXdi7CXdoYg5sW/Ud4GZFOwwBJqnAF9yd7QfWoMDPCnqj5ut7C1pJO4ZZESPWpbpFRECmKBRKWqyyvTgZnXUBj/onMMD72GYluvclV44Xi7wyK6PTIAx+PWggM2OOA2BOqviBkauvlRO9D6M6c0vjamr9aqP8vGb32wazHndytlRPP9KE7o49n/Yfjcjp0cnCfIaNoWG4Tq07mr/NeAsD03ytyh6q3dhPpAOB8rwIYQnwovaa/qivtdNAP4TE0= ceph-650ea436-fb6b-11ee-bc8f-c7b262605968' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-04-15T21:04:26.431 INFO:teuthology.orchestra.run.smithi174.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDiojFuBoKxsopVCng6slb9FTwxSbrlk14/Hdo/7BzchUYg05kdQGBIdytG5szU0Xfgvo8v7564jjfDarz4I5t0sdqa5gqM76zU5O6jXR06X6kWBZEGmnmTg330zphb+lrY/KtLcDLErtFGkA02MTmB7jxqq3VyzO/Kzxe+EaMqy/CxpepIDaj7F1/fUuHNdBjVRU0aXEgu76hC1efSJN2I6GD7IbFU/2tOei6w/1rVmtoNha8S88HJ7LbhZOB59FM5HkXdi7CXdoYg5sW/Ud4GZFOwwBJqnAF9yd7QfWoMDPCnqj5ut7C1pJO4ZZESPWpbpFRECmKBRKWqyyvTgZnXUBj/onMMD72GYluvclV44Xi7wyK6PTIAx+PWggM2OOA2BOqviBkauvlRO9D6M6c0vjamr9aqP8vGb32wazHndytlRPP9KE7o49n/Yfjcjp0cnCfIaNoWG4Tq07mr/NeAsD03ytyh6q3dhPpAOB8rwIYQnwovaa/qivtdNAP4TE0= ceph-650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:04:26.447 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-04-15T21:04:26.843 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:04:27.939 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:27.939 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:27.939 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:27.939 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:04:27.939 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:27.939 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:27.939 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:27.939 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:27.939 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:27.939 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:27.939 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:04:27.939 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:29.415 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:29 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:29.415 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:29 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/512518034' entity='client.admin' 2024-04-15T21:04:29.415 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:29 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:04:29.415 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:29 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:29.442 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-04-15T21:04:29.443 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-04-15T21:04:29.797 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:04:33.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:33.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:33.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:33.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:34.524 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi151 2024-04-15T21:04:34.524 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-04-15T21:04:34.524 DEBUG:teuthology.orchestra.run.smithi151:> dd of=/etc/ceph/ceph.conf 2024-04-15T21:04:34.543 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-04-15T21:04:34.543 DEBUG:teuthology.orchestra.run.smithi151:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:04:34.601 INFO:tasks.cephadm:Adding host smithi151 to orchestrator... 2024-04-15T21:04:34.601 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph orch host add smithi151 2024-04-15T21:04:34.843 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:04:35.071 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:34 smithi050 ceph-mon[30310]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:04:35.071 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:35.071 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:04:35.071 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:04:35.071 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:04:35.071 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:34 smithi050 ceph-mon[30310]: Updating smithi050:/etc/ceph/ceph.conf 2024-04-15T21:04:35.071 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:35.071 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:35.071 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:36.045 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:35 smithi050 ceph-mon[30310]: Updating smithi050:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:04:36.045 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:35 smithi050 ceph-mon[30310]: Updating smithi050:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:04:36.045 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:35 smithi050 ceph-mon[30310]: Updating smithi050:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:04:37.342 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:36 smithi050 ceph-mon[30310]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi151", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:04:38.338 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:37 smithi050 ceph-mon[30310]: pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:04:38.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:37 smithi050 ceph-mon[30310]: Deploying cephadm binary to smithi151 2024-04-15T21:04:40.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:39 smithi050 ceph-mon[30310]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:04:41.002 INFO:teuthology.orchestra.run.smithi050.stdout:Added host 'smithi151' with addr '172.21.15.151' 2024-04-15T21:04:41.667 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph orch host ls --format=json 2024-04-15T21:04:41.917 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:04:42.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:42 smithi050 ceph-mon[30310]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:04:42.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:42 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:42.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:42 smithi050 ceph-mon[30310]: Added host smithi151 2024-04-15T21:04:42.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:42 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:04:42.286 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:42 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:43.311 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:43 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:43.311 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:43 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:43.311 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:43 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi151", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:04:43.311 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:43 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:04:43.311 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:43 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:04:43.311 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:43 smithi050 ceph-mon[30310]: Updating smithi151:/etc/ceph/ceph.conf 2024-04-15T21:04:43.311 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:43 smithi050 ceph-mon[30310]: Updating smithi151:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:04:43.312 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:43 smithi050 ceph-mon[30310]: Updating smithi151:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:04:43.312 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:43 smithi050 ceph-mon[30310]: Updating smithi151:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:04:43.312 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:43 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:43.312 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:43 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:43.312 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:43 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi151", "caps": []}]: dispatch 2024-04-15T21:04:43.312 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:43 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi151", "caps": []}]': finished 2024-04-15T21:04:43.790 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:04:43.790 INFO:teuthology.orchestra.run.smithi050.stdout:[{"addr": "172.21.15.50", "hostname": "smithi050", "labels": [], "status": ""}, {"addr": "172.21.15.151", "hostname": "smithi151", "labels": [], "status": ""}] 2024-04-15T21:04:44.298 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:44 smithi050 ceph-mon[30310]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:04:44.298 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:44 smithi050 ceph-mon[30310]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:04:44.299 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi174 2024-04-15T21:04:44.299 DEBUG:teuthology.orchestra.run.smithi174:> set -ex 2024-04-15T21:04:44.299 DEBUG:teuthology.orchestra.run.smithi174:> dd of=/etc/ceph/ceph.conf 2024-04-15T21:04:44.320 DEBUG:teuthology.orchestra.run.smithi174:> set -ex 2024-04-15T21:04:44.320 DEBUG:teuthology.orchestra.run.smithi174:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:04:44.378 INFO:tasks.cephadm:Adding host smithi174 to orchestrator... 2024-04-15T21:04:44.378 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph orch host add smithi174 2024-04-15T21:04:44.626 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:04:46.338 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:46 smithi050 ceph-mon[30310]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:04:46.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:46 smithi050 ceph-mon[30310]: Deploying daemon agent.smithi151 on smithi151 2024-04-15T21:04:46.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:46 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:46.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:46 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:46.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:46 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:47.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:04:47.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:04:47.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:04:47.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:47.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:04:47.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:04:47.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:04:47.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:47.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:47 smithi050 ceph-mon[30310]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi174", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:04:47.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:47.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:47.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:47.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:48.951 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:48 smithi050 ceph-mon[30310]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:04:48.952 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:48 smithi050 ceph-mon[30310]: Deploying cephadm binary to smithi174 2024-04-15T21:04:48.952 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:48 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:48.952 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:48 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:48.952 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:48 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:50.831 INFO:teuthology.orchestra.run.smithi050.stdout:Added host 'smithi174' with addr '172.21.15.174' 2024-04-15T21:04:50.842 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:50 smithi050 ceph-mon[30310]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:04:50.843 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:50.843 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:51.434 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph orch host ls --format=json 2024-04-15T21:04:52.012 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:04:52.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:52.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:51 smithi050 ceph-mon[30310]: Added host smithi174 2024-04-15T21:04:52.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:04:52.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:53.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:52 smithi050 ceph-mon[30310]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:04:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi174", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:04:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:04:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:04:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi174", "caps": []}]: dispatch 2024-04-15T21:04:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi174", "caps": []}]': finished 2024-04-15T21:04:53.779 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:04:53.780 INFO:teuthology.orchestra.run.smithi050.stdout:[{"addr": "172.21.15.50", "hostname": "smithi050", "labels": [], "status": ""}, {"addr": "172.21.15.151", "hostname": "smithi151", "labels": [], "status": ""}, {"addr": "172.21.15.174", "hostname": "smithi174", "labels": [], "status": ""}] 2024-04-15T21:04:54.085 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:53 smithi050 ceph-mon[30310]: Updating smithi174:/etc/ceph/ceph.conf 2024-04-15T21:04:54.085 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:53 smithi050 ceph-mon[30310]: Updating smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:04:54.086 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:53 smithi050 ceph-mon[30310]: Updating smithi174:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:04:54.086 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:53 smithi050 ceph-mon[30310]: Updating smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:04:54.388 INFO:tasks.cephadm:Setting crush tunables to default 2024-04-15T21:04:54.389 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph osd crush tunables default 2024-04-15T21:04:54.636 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:04:54.908 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:04:54.908 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: Deploying daemon agent.smithi174 on smithi174 2024-04-15T21:04:54.908 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:04:54.908 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:54.908 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:54.908 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:54.908 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:04:54.909 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:04:54.909 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:04:54.909 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:54.909 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:04:54.909 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:04:54.909 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:04:54.909 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:54.909 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:56.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:56 smithi050 ceph-mon[30310]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:04:56.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:56 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:56.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:56 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:57.058 INFO:teuthology.orchestra.run.smithi050.stderr:adjusted tunables profile to default 2024-04-15T21:04:57.338 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:57 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3291281482' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-15T21:04:57.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:57 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:57.701 INFO:tasks.cephadm:Adding mon.a on smithi050 2024-04-15T21:04:57.701 INFO:tasks.cephadm:Adding mon.b on smithi151 2024-04-15T21:04:57.701 INFO:tasks.cephadm:Adding mon.c on smithi174 2024-04-15T21:04:57.701 DEBUG:teuthology.orchestra.run.smithi174:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph orch apply mon '3;smithi050:172.21.15.50=a;smithi151:172.21.15.151=b;smithi174:172.21.15.174=c' 2024-04-15T21:04:57.946 INFO:teuthology.orchestra.run.smithi174.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:04:58.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:58 smithi050 ceph-mon[30310]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:04:58.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:58 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3291281482' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-15T21:04:58.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:58 smithi050 ceph-mon[30310]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:04:58.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:58 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:58.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:04:58 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:04:59.650 INFO:teuthology.orchestra.run.smithi174.stdout:Scheduled mon update... 2024-04-15T21:05:00.227 DEBUG:teuthology.orchestra.run.smithi151:mon.b> sudo journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.b.service 2024-04-15T21:05:00.230 DEBUG:teuthology.orchestra.run.smithi174:mon.c> sudo journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.c.service 2024-04-15T21:05:00.232 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-15T21:05:00.233 DEBUG:teuthology.orchestra.run.smithi174:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph mon dump -f json 2024-04-15T21:05:00.909 INFO:teuthology.orchestra.run.smithi174.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:01.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:00 smithi050 ceph-mon[30310]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:01.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:00 smithi050 ceph-mon[30310]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi050:172.21.15.50=a;smithi151:172.21.15.151=b;smithi174:172.21.15.174=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:05:01.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:00 smithi050 ceph-mon[30310]: Saving service mon spec with placement smithi050:172.21.15.50=a;smithi151:172.21.15.151=b;smithi174:172.21.15.174=c;count:3 2024-04-15T21:05:01.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:00 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:01.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:00 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:01.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:00 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:01.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:00 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:01.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:00 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:01.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:00 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:01.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:00 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:01.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:00 smithi050 ceph-mon[30310]: Deploying daemon mon.c on smithi174 2024-04-15T21:05:03.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:02 smithi050 ceph-mon[30310]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:04.133 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:05:04.134 INFO:teuthology.orchestra.run.smithi174.stdout:{"epoch":1,"fsid":"650ea436-fb6b-11ee-bc8f-c7b262605968","modified":"2024-04-15T21:03:07.001665Z","created":"2024-04-15T21:03:07.001665Z","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.50:3300","nonce":0},{"type":"v1","addr":"172.21.15.50:6789","nonce":0}]},"addr":"172.21.15.50:6789/0","public_addr":"172.21.15.50:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-04-15T21:05:04.136 INFO:teuthology.orchestra.run.smithi174.stderr:dumped monmap epoch 1 2024-04-15T21:05:04.279 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_open_files: -1 2024-04-15T21:05:04.279 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.bytes_per_sync: 0 2024-04-15T21:05:04.279 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.wal_bytes_per_sync: 0 2024-04-15T21:05:04.279 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.strict_bytes_per_sync: 0 2024-04-15T21:05:04.279 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compaction_readahead_size: 0 2024-04-15T21:05:04.279 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_background_flushes: -1 2024-04-15T21:05:04.279 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Compression algorithms supported: 2024-04-15T21:05:04.279 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-15T21:05:04.280 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: kZSTD supported: 0 2024-04-15T21:05:04.280 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: kXpressCompression supported: 0 2024-04-15T21:05:04.280 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: kLZ4HCCompression supported: 1 2024-04-15T21:05:04.280 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: kZlibCompression supported: 1 2024-04-15T21:05:04.280 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: kSnappyCompression supported: 1 2024-04-15T21:05:04.280 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: kLZ4Compression supported: 1 2024-04-15T21:05:04.280 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: kBZip2Compression supported: 0 2024-04-15T21:05:04.280 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Fast CRC32 supported: Supported on x86 2024-04-15T21:05:04.281 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: DMutex implementation: pthread_mutex_t 2024-04-15T21:05:04.281 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 2024-04-15T21:05:04.281 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-15T21:05:04.281 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-15T21:05:04.281 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.merge_operator: 2024-04-15T21:05:04.281 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compaction_filter: None 2024-04-15T21:05:04.281 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compaction_filter_factory: None 2024-04-15T21:05:04.281 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.sst_partitioner_factory: None 2024-04-15T21:05:04.282 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.memtable_factory: SkipListFactory 2024-04-15T21:05:04.282 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.table_factory: BlockBasedTable 2024-04-15T21:05:04.282 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x56508dbb7de0) 2024-04-15T21:05:04.282 INFO:journalctl@ceph.mon.c.smithi174.stdout: cache_index_and_filter_blocks: 1 2024-04-15T21:05:04.282 INFO:journalctl@ceph.mon.c.smithi174.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-15T21:05:04.282 INFO:journalctl@ceph.mon.c.smithi174.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-15T21:05:04.282 INFO:journalctl@ceph.mon.c.smithi174.stdout: pin_top_level_index_and_filter: 1 2024-04-15T21:05:04.282 INFO:journalctl@ceph.mon.c.smithi174.stdout: index_type: 0 2024-04-15T21:05:04.282 INFO:journalctl@ceph.mon.c.smithi174.stdout: data_block_index_type: 0 2024-04-15T21:05:04.283 INFO:journalctl@ceph.mon.c.smithi174.stdout: index_shortening: 1 2024-04-15T21:05:04.283 INFO:journalctl@ceph.mon.c.smithi174.stdout: data_block_hash_table_util_ratio: 0.750000 2024-04-15T21:05:04.283 INFO:journalctl@ceph.mon.c.smithi174.stdout: checksum: 4 2024-04-15T21:05:04.283 INFO:journalctl@ceph.mon.c.smithi174.stdout: no_block_cache: 0 2024-04-15T21:05:04.283 INFO:journalctl@ceph.mon.c.smithi174.stdout: block_cache: 0x56508dbb9090 2024-04-15T21:05:04.283 INFO:journalctl@ceph.mon.c.smithi174.stdout: block_cache_name: BinnedLRUCache 2024-04-15T21:05:04.283 INFO:journalctl@ceph.mon.c.smithi174.stdout: block_cache_options: 2024-04-15T21:05:04.283 INFO:journalctl@ceph.mon.c.smithi174.stdout: capacity : 536870912 2024-04-15T21:05:04.283 INFO:journalctl@ceph.mon.c.smithi174.stdout: num_shard_bits : 4 2024-04-15T21:05:04.283 INFO:journalctl@ceph.mon.c.smithi174.stdout: strict_capacity_limit : 0 2024-04-15T21:05:04.283 INFO:journalctl@ceph.mon.c.smithi174.stdout: high_pri_pool_ratio: 0.000 2024-04-15T21:05:04.284 INFO:journalctl@ceph.mon.c.smithi174.stdout: block_cache_compressed: (nil) 2024-04-15T21:05:04.284 INFO:journalctl@ceph.mon.c.smithi174.stdout: persistent_cache: (nil) 2024-04-15T21:05:04.284 INFO:journalctl@ceph.mon.c.smithi174.stdout: block_size: 4096 2024-04-15T21:05:04.284 INFO:journalctl@ceph.mon.c.smithi174.stdout: block_size_deviation: 10 2024-04-15T21:05:04.284 INFO:journalctl@ceph.mon.c.smithi174.stdout: block_restart_interval: 16 2024-04-15T21:05:04.284 INFO:journalctl@ceph.mon.c.smithi174.stdout: index_block_restart_interval: 1 2024-04-15T21:05:04.284 INFO:journalctl@ceph.mon.c.smithi174.stdout: metadata_block_size: 4096 2024-04-15T21:05:04.284 INFO:journalctl@ceph.mon.c.smithi174.stdout: partition_filters: 0 2024-04-15T21:05:04.284 INFO:journalctl@ceph.mon.c.smithi174.stdout: use_delta_encoding: 1 2024-04-15T21:05:04.285 INFO:journalctl@ceph.mon.c.smithi174.stdout: filter_policy: bloomfilter 2024-04-15T21:05:04.285 INFO:journalctl@ceph.mon.c.smithi174.stdout: whole_key_filtering: 1 2024-04-15T21:05:04.285 INFO:journalctl@ceph.mon.c.smithi174.stdout: verify_compression: 0 2024-04-15T21:05:04.285 INFO:journalctl@ceph.mon.c.smithi174.stdout: read_amp_bytes_per_bit: 0 2024-04-15T21:05:04.285 INFO:journalctl@ceph.mon.c.smithi174.stdout: format_version: 5 2024-04-15T21:05:04.285 INFO:journalctl@ceph.mon.c.smithi174.stdout: enable_index_compression: 1 2024-04-15T21:05:04.285 INFO:journalctl@ceph.mon.c.smithi174.stdout: block_align: 0 2024-04-15T21:05:04.285 INFO:journalctl@ceph.mon.c.smithi174.stdout: max_auto_readahead_size: 262144 2024-04-15T21:05:04.286 INFO:journalctl@ceph.mon.c.smithi174.stdout: prepopulate_block_cache: 0 2024-04-15T21:05:04.286 INFO:journalctl@ceph.mon.c.smithi174.stdout: initial_auto_readahead_size: 8192 2024-04-15T21:05:04.286 INFO:journalctl@ceph.mon.c.smithi174.stdout: num_file_reads_for_auto_readahead: 2 2024-04-15T21:05:04.286 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.write_buffer_size: 33554432 2024-04-15T21:05:04.286 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_write_buffer_number: 2 2024-04-15T21:05:04.286 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compression: NoCompression 2024-04-15T21:05:04.286 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.bottommost_compression: Disabled 2024-04-15T21:05:04.286 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.prefix_extractor: nullptr 2024-04-15T21:05:04.286 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-15T21:05:04.286 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.num_levels: 7 2024-04-15T21:05:04.286 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compression_opts.window_bits: -14 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compression_opts.level: 32767 2024-04-15T21:05:04.287 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compression_opts.strategy: 0 2024-04-15T21:05:04.288 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-15T21:05:04.288 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-15T21:05:04.288 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-15T21:05:04.288 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-15T21:05:04.288 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compression_opts.enabled: false 2024-04-15T21:05:04.288 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-15T21:05:04.288 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-15T21:05:04.288 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-15T21:05:04.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-15T21:05:04.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.target_file_size_base: 67108864 2024-04-15T21:05:04.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.target_file_size_multiplier: 1 2024-04-15T21:05:04.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-15T21:05:04.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-15T21:05:04.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-15T21:05:04.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-15T21:05:04.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-15T21:05:04.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-15T21:05:04.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-15T21:05:04.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.arena_block_size: 1048576 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.disable_auto_compactions: 0 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-15T21:05:04.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.inplace_update_support: 0 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.inplace_update_num_locks: 10000 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.memtable_huge_page_size: 0 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.bloom_locality: 0 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.max_successive_merges: 0 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.optimize_filters_for_hits: 0 2024-04-15T21:05:04.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.paranoid_file_checks: 0 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.force_consistency_checks: 1 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.report_bg_io_stats: 0 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.ttl: 2592000 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.periodic_compaction_seconds: 0 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.enable_blob_files: false 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.min_blob_size: 0 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.blob_file_size: 268435456 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.blob_compression_type: NoCompression 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.enable_blob_garbage_collection: false 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-15T21:05:04.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.blob_file_starting_level: 0 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 1fddf2e3-9d0c-4bf1-8369-18ec6e80e807 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713215104285103, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713215104285504, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1713215104, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "1fddf2e3-9d0c-4bf1-8369-18ec6e80e807", "db_session_id": "J6XGE1EYSALKOCM9ZO8H", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: EVENT_LOG_v1 {"time_micros": 1713215104285583, "job": 1, "event": "recovery_finished"} 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-c/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x56508dca6000 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: DB pointer 0x56508dc90000 2024-04-15T21:05:04.650 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout: ** DB Stats ** 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout: 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout: ** Compaction Stats [default] ** 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-15T21:05:04.651 INFO:journalctl@ceph.mon.c.smithi174.stdout: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.1 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.stdout: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.1 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.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 4.1 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.stdout: 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.stdout: ** Compaction Stats [default] ** 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.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 4.1 0.00 0.00 1 0.000 0 0 0.0 0.0 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.stdout: 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.stdout: 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-04-15T21:05:04.652 INFO:journalctl@ceph.mon.c.smithi174.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout: AddFile(Keys): cumulative 0, interval 0 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout: Cumulative compaction: 0.00 GB write, 0.63 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout: Interval compaction: 0.00 GB write, 0.63 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout: Block cache BinnedLRUCache@0x56508dbb9090#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.1e-05 secs_since: 0 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout: 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout: ** File Read Latency Histogram By Level [default] ** 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c does not exist in monmap, will attempt to join an existing cluster 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: using public_addr v2:172.21.15.174:0/0 -> [v2:172.21.15.174:3300/0,v1:172.21.15.174:6789/0] 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: starting mon.c rank -1 at public addrs [v2:172.21.15.174:3300/0,v1:172.21.15.174:6789/0] at bind addrs [v2:172.21.15.174:3300/0,v1:172.21.15.174:6789/0] mon_data /var/lib/ceph/mon/ceph-c fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(???) e0 preinit fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(synchronizing).mds e1 new map 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(synchronizing).mds e1 print_map 2024-04-15T21:05:04.653 INFO:journalctl@ceph.mon.c.smithi174.stdout: e1 2024-04-15T21:05:04.654 INFO:journalctl@ceph.mon.c.smithi174.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-04-15T21:05:04.654 INFO:journalctl@ceph.mon.c.smithi174.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-04-15T21:05:04.654 INFO:journalctl@ceph.mon.c.smithi174.stdout: legacy client fscid: -1 2024-04-15T21:05:04.654 INFO:journalctl@ceph.mon.c.smithi174.stdout: 2024-04-15T21:05:04.654 INFO:journalctl@ceph.mon.c.smithi174.stdout: No filesystems configured 2024-04-15T21:05:04.654 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-04-15T21:05:04.654 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-04-15T21:05:04.654 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-04-15T21:05:04.654 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-04-15T21:05:04.654 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-04-15T21:05:04.654 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-04-15T21:05:04.655 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-15T21:05:04.655 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:05:04.655 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:05:04.655 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:05:04.655 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:04.655 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:04.655 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Added host smithi151 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi151", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Updating smithi151:/etc/ceph/ceph.conf 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Updating smithi151:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Updating smithi151:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Updating smithi151:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.656 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi151", "caps": []}]: dispatch 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi151", "caps": []}]': finished 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Deploying daemon agent.smithi151 on smithi151 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.657 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi174", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Deploying cephadm binary to smithi174 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.658 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Added host smithi174 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi174", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.659 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi174", "caps": []}]: dispatch 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi174", "caps": []}]': finished 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Updating smithi174:/etc/ceph/ceph.conf 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Updating smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Updating smithi174:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Updating smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Deploying daemon agent.smithi174 on smithi174 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:04.660 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/3291281482' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/3291281482' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:05:04.661 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi050:172.21.15.50=a;smithi151:172.21.15.151=b;smithi174:172.21.15.174=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Saving service mon spec with placement smithi050:172.21.15.50=a;smithi151:172.21.15.151=b;smithi174:172.21.15.174=c;count:3 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: Deploying daemon mon.c on smithi174 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 ceph-mon[32022]: mon.c@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-04-15T21:05:04.662 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 bash[31971]: 6713668ab0b71fb36ea7ddbeb34f13018ca9fd3269892dbd111e3719d25c38d3 2024-04-15T21:05:04.663 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:04 smithi174 systemd[1]: Started Ceph mon.c for 650ea436-fb6b-11ee-bc8f-c7b262605968. 2024-04-15T21:05:05.938 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-15T21:05:05.938 DEBUG:teuthology.orchestra.run.smithi174:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph mon dump -f json 2024-04-15T21:05:06.187 INFO:teuthology.orchestra.run.smithi174.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T21:05:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:05:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: mon.a calling monitor election 2024-04-15T21:05:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: mon.c calling monitor election 2024-04-15T21:05:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-15T21:05:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: monmap epoch 2 2024-04-15T21:05:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: last_changed 2024-04-15T21:05:04.309233+0000 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: created 2024-04-15T21:03:07.001665+0000 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: min_mon_release 19 (squid) 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: election_strategy: 1 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: 1: [v2:172.21.15.174:3300/0,v1:172.21.15.174:6789/0] mon.c 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: fsmap 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: mgrmap e13: a(active, since 52s) 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: overall HEALTH_OK 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.592 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.592 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.592 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:05:09.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: mon.a calling monitor election 2024-04-15T21:05:09.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:09.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:09.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:09.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: mon.c calling monitor election 2024-04-15T21:05:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-15T21:05:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: monmap epoch 2 2024-04-15T21:05:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:05:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: last_changed 2024-04-15T21:05:04.309233+0000 2024-04-15T21:05:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: created 2024-04-15T21:03:07.001665+0000 2024-04-15T21:05:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: min_mon_release 19 (squid) 2024-04-15T21:05:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: election_strategy: 1 2024-04-15T21:05:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-04-15T21:05:09.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: 1: [v2:172.21.15.174:3300/0,v1:172.21.15.174:6789/0] mon.c 2024-04-15T21:05:09.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: fsmap 2024-04-15T21:05:09.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:05:09.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: mgrmap e13: a(active, since 52s) 2024-04-15T21:05:09.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: overall HEALTH_OK 2024-04-15T21:05:09.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:09.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:10.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:10 smithi050 ceph-mon[30310]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:10.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:10 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:10.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:10 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:10.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:10 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:10.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:10 smithi050 ceph-mon[30310]: Deploying daemon mon.b on smithi151 2024-04-15T21:05:10.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:10 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:10.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:10 smithi174 ceph-mon[32022]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:10.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:10 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:10.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:10 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:10.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:10 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:10.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:10 smithi174 ceph-mon[32022]: Deploying daemon mon.b on smithi151 2024-04-15T21:05:10.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:10 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:10.949 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:05:10.949 INFO:teuthology.orchestra.run.smithi174.stdout:{"epoch":2,"fsid":"650ea436-fb6b-11ee-bc8f-c7b262605968","modified":"2024-04-15T21:05:04.309233Z","created":"2024-04-15T21:03:07.001665Z","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.50:3300","nonce":0},{"type":"v1","addr":"172.21.15.50:6789","nonce":0}]},"addr":"172.21.15.50:6789/0","public_addr":"172.21.15.50:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:3300","nonce":0},{"type":"v1","addr":"172.21.15.174:6789","nonce":0}]},"addr":"172.21.15.174:6789/0","public_addr":"172.21.15.174:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-04-15T21:05:10.952 INFO:teuthology.orchestra.run.smithi174.stderr:dumped monmap epoch 2 2024-04-15T21:05:11.554 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:11 smithi174 ceph-mon[32022]: from='client.? 172.21.15.174:0/435903010' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:05:11.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:11 smithi050 ceph-mon[30310]: from='client.? 172.21.15.174:0/435903010' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:05:12.583 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2024-04-15T21:05:12.583 DEBUG:teuthology.orchestra.run.smithi174:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph mon dump -f json 2024-04-15T21:05:12.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:12 smithi174 ceph-mon[32022]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:12.831 INFO:teuthology.orchestra.run.smithi174.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T21:05:12.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:12 smithi050 ceph-mon[30310]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.346 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.b@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-04-15T21:05:13.346 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.b@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-04-15T21:05:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.b@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-04-15T21:05:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.b@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-04-15T21:05:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.b@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-04-15T21:05:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.b@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-04-15T21:05:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.b@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-15T21:05:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:05:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:05:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.b@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2024-04-15T21:05:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Added host smithi151 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi151", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Updating smithi151:/etc/ceph/ceph.conf 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Updating smithi151:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Updating smithi151:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Updating smithi151:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:05:13.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi151", "caps": []}]: dispatch 2024-04-15T21:05:13.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi151", "caps": []}]': finished 2024-04-15T21:05:13.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:05:13.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Deploying daemon agent.smithi151 on smithi151 2024-04-15T21:05:13.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:13.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:13.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi174", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Deploying cephadm binary to smithi174 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Added host smithi174 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:smithi174", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.732 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.733 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.smithi174", "caps": []}]: dispatch 2024-04-15T21:05:13.733 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.smithi174", "caps": []}]': finished 2024-04-15T21:05:13.733 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Updating smithi174:/etc/ceph/ceph.conf 2024-04-15T21:05:13.733 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Updating smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:13.733 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Updating smithi174:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:05:13.733 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Updating smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Deploying daemon agent.smithi174 on smithi174 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:13.734 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/3291281482' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/3291281482' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;smithi050:172.21.15.50=a;smithi151:172.21.15.151=b;smithi174:172.21.15.174=c", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Saving service mon spec with placement smithi050:172.21.15.50=a;smithi151:172.21.15.151=b;smithi174:172.21.15.174=c;count:3 2024-04-15T21:05:13.735 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Deploying daemon mon.c on smithi174 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.a calling monitor election 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:13.736 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.c calling monitor election 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: monmap epoch 2 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: last_changed 2024-04-15T21:05:04.309233+0000 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: created 2024-04-15T21:03:07.001665+0000 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: min_mon_release 19 (squid) 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: election_strategy: 1 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: 1: [v2:172.21.15.174:3300/0,v1:172.21.15.174:6789/0] mon.c 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: fsmap 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:05:13.737 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mgrmap e13: a(active, since 52s) 2024-04-15T21:05:13.738 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: overall HEALTH_OK 2024-04-15T21:05:13.738 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.738 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.738 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.738 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.738 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.738 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.738 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.738 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.738 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.738 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:13.738 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:13.738 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:13.739 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: Deploying daemon mon.b on smithi151 2024-04-15T21:05:13.739 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:13.739 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: from='client.? 172.21.15.174:0/435903010' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:05:13.739 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:13.739 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 ceph-mon[31870]: mon.b@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-04-15T21:05:13.739 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 bash[31831]: 73c4cd3264adb1ac294534655d1d32603d0d83cadb1ad86951f761e8687e196e 2024-04-15T21:05:13.739 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:13 smithi151 systemd[1]: Started Ceph mon.b for 650ea436-fb6b-11ee-bc8f-c7b262605968. 2024-04-15T21:05:18.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:18.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:05:18.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: mon.a calling monitor election 2024-04-15T21:05:18.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:18.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: mon.c calling monitor election 2024-04-15T21:05:18.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:18.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: mon.b calling monitor election 2024-04-15T21:05:18.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:18.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-15T21:05:18.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: monmap epoch 3 2024-04-15T21:05:18.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:05:18.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: last_changed 2024-04-15T21:05:13.360568+0000 2024-04-15T21:05:18.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: created 2024-04-15T21:03:07.001665+0000 2024-04-15T21:05:18.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: min_mon_release 19 (squid) 2024-04-15T21:05:18.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: election_strategy: 1 2024-04-15T21:05:18.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-04-15T21:05:18.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: 1: [v2:172.21.15.174:3300/0,v1:172.21.15.174:6789/0] mon.c 2024-04-15T21:05:18.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: 2: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.b 2024-04-15T21:05:18.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: fsmap 2024-04-15T21:05:18.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:05:18.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: mgrmap e13: a(active, since 61s) 2024-04-15T21:05:18.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: overall HEALTH_OK 2024-04-15T21:05:18.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.648 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.649 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:18 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:18.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:05:18.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: mon.a calling monitor election 2024-04-15T21:05:18.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:18.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: mon.c calling monitor election 2024-04-15T21:05:18.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: mon.b calling monitor election 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: monmap epoch 3 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: last_changed 2024-04-15T21:05:13.360568+0000 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: created 2024-04-15T21:03:07.001665+0000 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: min_mon_release 19 (squid) 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: election_strategy: 1 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-04-15T21:05:18.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: 1: [v2:172.21.15.174:3300/0,v1:172.21.15.174:6789/0] mon.c 2024-04-15T21:05:18.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: 2: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.b 2024-04-15T21:05:18.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: fsmap 2024-04-15T21:05:18.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:05:18.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: mgrmap e13: a(active, since 61s) 2024-04-15T21:05:18.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: overall HEALTH_OK 2024-04-15T21:05:18.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:18 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:18.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:05:18.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: mon.a calling monitor election 2024-04-15T21:05:18.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:05:18.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: mon.c calling monitor election 2024-04-15T21:05:18.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:18.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: mon.b calling monitor election 2024-04-15T21:05:18.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: monmap epoch 3 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: last_changed 2024-04-15T21:05:13.360568+0000 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: created 2024-04-15T21:03:07.001665+0000 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: min_mon_release 19 (squid) 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: election_strategy: 1 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: 1: [v2:172.21.15.174:3300/0,v1:172.21.15.174:6789/0] mon.c 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: 2: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.b 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: fsmap 2024-04-15T21:05:18.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: osdmap e4: 0 total, 0 up, 0 in 2024-04-15T21:05:18.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: mgrmap e13: a(active, since 61s) 2024-04-15T21:05:18.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: overall HEALTH_OK 2024-04-15T21:05:18.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:18.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:18 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.120 INFO:teuthology.orchestra.run.smithi174.stdout: 2024-04-15T21:05:19.120 INFO:teuthology.orchestra.run.smithi174.stdout:{"epoch":3,"fsid":"650ea436-fb6b-11ee-bc8f-c7b262605968","modified":"2024-04-15T21:05:13.360568Z","created":"2024-04-15T21:03:07.001665Z","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.50:3300","nonce":0},{"type":"v1","addr":"172.21.15.50:6789","nonce":0}]},"addr":"172.21.15.50:6789/0","public_addr":"172.21.15.50:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:3300","nonce":0},{"type":"v1","addr":"172.21.15.174:6789","nonce":0}]},"addr":"172.21.15.174:6789/0","public_addr":"172.21.15.174:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:3300","nonce":0},{"type":"v1","addr":"172.21.15.151:6789","nonce":0}]},"addr":"172.21.15.151:6789/0","public_addr":"172.21.15.151:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2024-04-15T21:05:19.121 INFO:teuthology.orchestra.run.smithi174.stderr:dumped monmap epoch 3 2024-04-15T21:05:19.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:19.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:19.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:19.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: Updating smithi050:/etc/ceph/ceph.conf 2024-04-15T21:05:19.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: Updating smithi151:/etc/ceph/ceph.conf 2024-04-15T21:05:19.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: Updating smithi174:/etc/ceph/ceph.conf 2024-04-15T21:05:19.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='client.? 172.21.15.174:0/3351781191' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:05:19.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:19.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:05:19.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:19.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:19 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:19.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:19.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:19.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:19.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: Updating smithi050:/etc/ceph/ceph.conf 2024-04-15T21:05:19.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: Updating smithi151:/etc/ceph/ceph.conf 2024-04-15T21:05:19.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: Updating smithi174:/etc/ceph/ceph.conf 2024-04-15T21:05:19.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='client.? 172.21.15.174:0/3351781191' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:05:19.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:19.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:05:19.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:19.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:19.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:19.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:19.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:19.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: Updating smithi050:/etc/ceph/ceph.conf 2024-04-15T21:05:19.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: Updating smithi151:/etc/ceph/ceph.conf 2024-04-15T21:05:19.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: Updating smithi174:/etc/ceph/ceph.conf 2024-04-15T21:05:19.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='client.? 172.21.15.174:0/3351781191' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-04-15T21:05:19.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:19.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:19.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:05:19.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:19.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:05:19.976 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-04-15T21:05:19.976 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph config generate-minimal-conf 2024-04-15T21:05:20.902 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:05:20.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:20 smithi151 ceph-mon[31870]: Updating smithi050:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:20 smithi151 ceph-mon[31870]: Updating smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:20 smithi151 ceph-mon[31870]: Updating smithi151:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:20 smithi151 ceph-mon[31870]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:20 smithi151 ceph-mon[31870]: Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:05:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:20 smithi151 ceph-mon[31870]: Reconfiguring mon.a (unknown last config time)... 2024-04-15T21:05:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:20 smithi151 ceph-mon[31870]: Reconfiguring daemon mon.a on smithi050 2024-04-15T21:05:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:21.027 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:20 smithi050 ceph-mon[30310]: Updating smithi050:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:21.027 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:20 smithi050 ceph-mon[30310]: Updating smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:21.027 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:20 smithi050 ceph-mon[30310]: Updating smithi151:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:21.027 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:20 smithi050 ceph-mon[30310]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:21.027 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:20 smithi050 ceph-mon[30310]: Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:05:21.027 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:20 smithi050 ceph-mon[30310]: Reconfiguring mon.a (unknown last config time)... 2024-04-15T21:05:21.027 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:20 smithi050 ceph-mon[30310]: Reconfiguring daemon mon.a on smithi050 2024-04-15T21:05:21.027 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:21.028 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:21.028 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:21.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:20 smithi174 ceph-mon[32022]: Updating smithi050:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:21.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:20 smithi174 ceph-mon[32022]: Updating smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:21.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:20 smithi174 ceph-mon[32022]: Updating smithi151:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:05:21.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:20 smithi174 ceph-mon[32022]: pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:21.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:20 smithi174 ceph-mon[32022]: Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:05:21.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:20 smithi174 ceph-mon[32022]: Reconfiguring mon.a (unknown last config time)... 2024-04-15T21:05:21.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:20 smithi174 ceph-mon[32022]: Reconfiguring daemon mon.a on smithi050 2024-04-15T21:05:21.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:21.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:21.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:22.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:21 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:22.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:21 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:22.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:21 smithi050 ceph-mon[30310]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:22.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:21 smithi050 ceph-mon[30310]: Reconfiguring mon.b (monmap changed)... 2024-04-15T21:05:22.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:21 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:22.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:21 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:05:22.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:21 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:22.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:21 smithi050 ceph-mon[30310]: Reconfiguring daemon mon.b on smithi151 2024-04-15T21:05:22.190 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:21 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:22.190 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:21 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:22.190 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:21 smithi151 ceph-mon[31870]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:22.190 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:21 smithi151 ceph-mon[31870]: Reconfiguring mon.b (monmap changed)... 2024-04-15T21:05:22.191 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:21 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:22.191 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:21 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:05:22.191 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:21 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:22.191 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:21 smithi151 ceph-mon[31870]: Reconfiguring daemon mon.b on smithi151 2024-04-15T21:05:22.398 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:21 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:22.398 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:21 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:22.398 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:21 smithi174 ceph-mon[32022]: pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:22.398 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:21 smithi174 ceph-mon[32022]: Reconfiguring mon.b (monmap changed)... 2024-04-15T21:05:22.398 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:21 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:22.399 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:21 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:05:22.399 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:21 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:22.399 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:21 smithi174 ceph-mon[32022]: Reconfiguring daemon mon.b on smithi151 2024-04-15T21:05:22.725 INFO:teuthology.orchestra.run.smithi050.stdout:# minimal ceph.conf for 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:05:22.725 INFO:teuthology.orchestra.run.smithi050.stdout:[global] 2024-04-15T21:05:22.725 INFO:teuthology.orchestra.run.smithi050.stdout: fsid = 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:05:22.725 INFO:teuthology.orchestra.run.smithi050.stdout: mon_host = [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] [v2:172.21.15.174:3300/0,v1:172.21.15.174:6789/0] 2024-04-15T21:05:23.274 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.274 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.274 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.274 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.274 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.274 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.274 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.275 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.275 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:22 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/48319318' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:23.300 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-04-15T21:05:23.300 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T21:05:23.300 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/ceph/ceph.conf 2024-04-15T21:05:23.318 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.318 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.319 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.319 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.319 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.319 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.319 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.319 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.319 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:22 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/48319318' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:23.331 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T21:05:23.331 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:05:23.394 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:22 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.395 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:22 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.395 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:22 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.395 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:22 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.395 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:22 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.395 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:22 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.395 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:22 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.396 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:22 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:23.396 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:22 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/48319318' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:23.402 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-04-15T21:05:23.402 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/etc/ceph/ceph.conf 2024-04-15T21:05:23.434 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-04-15T21:05:23.434 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:05:23.502 DEBUG:teuthology.orchestra.run.smithi174:> set -ex 2024-04-15T21:05:23.502 DEBUG:teuthology.orchestra.run.smithi174:> sudo dd of=/etc/ceph/ceph.conf 2024-04-15T21:05:23.536 DEBUG:teuthology.orchestra.run.smithi174:> set -ex 2024-04-15T21:05:23.536 DEBUG:teuthology.orchestra.run.smithi174:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:05:23.606 INFO:tasks.cephadm:Adding mgr.a on smithi050 2024-04-15T21:05:23.606 INFO:tasks.cephadm:Adding mgr.b on smithi151 2024-04-15T21:05:23.607 DEBUG:teuthology.orchestra.run.smithi174:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph orch apply mgr '2;smithi050=a;smithi151=b' 2024-04-15T21:05:23.888 INFO:teuthology.orchestra.run.smithi174.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T21:05:24.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:24 smithi174 ceph-mon[32022]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:24.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:24 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:24.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:24 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:24.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:24 smithi174 ceph-mon[32022]: Reconfiguring mon.c (monmap changed)... 2024-04-15T21:05:24.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:24 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:24.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:24 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:05:24.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:24 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:24.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:24 smithi174 ceph-mon[32022]: Reconfiguring daemon mon.c on smithi174 2024-04-15T21:05:24.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:24 smithi151 ceph-mon[31870]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:24.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:24 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:24.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:24 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:24.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:24 smithi151 ceph-mon[31870]: Reconfiguring mon.c (monmap changed)... 2024-04-15T21:05:24.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:24 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:24.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:24 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:05:24.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:24 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:24.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:24 smithi151 ceph-mon[31870]: Reconfiguring daemon mon.c on smithi174 2024-04-15T21:05:24.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:24 smithi050 ceph-mon[30310]: pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:24.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:24 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:24.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:24 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:24.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:24 smithi050 ceph-mon[30310]: Reconfiguring mon.c (monmap changed)... 2024-04-15T21:05:24.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:24 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:05:24.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:24 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:05:24.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:24 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:24.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:24 smithi050 ceph-mon[30310]: Reconfiguring daemon mon.c on smithi174 2024-04-15T21:05:26.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:26 smithi151 ceph-mon[31870]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:26.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:26 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:26.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:26 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:26.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:26 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:26.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:26 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:26.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:26 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:26.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:26 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:26.480 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:26 smithi174 ceph-mon[32022]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:26.480 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:26 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:26.480 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:26 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:26.480 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:26 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:26.480 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:26 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:26.480 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:26 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:26.480 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:26 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:26.690 INFO:teuthology.orchestra.run.smithi174.stdout:Scheduled mgr update... 2024-04-15T21:05:26.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:26 smithi050 ceph-mon[30310]: pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:26.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:26 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:26.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:26 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:26.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:26 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:26.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:26 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:26.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:26 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:26.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:26 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:27.277 DEBUG:teuthology.orchestra.run.smithi151:mgr.b> sudo journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mgr.b.service 2024-04-15T21:05:27.280 INFO:tasks.cephadm:Deploying OSDs... 2024-04-15T21:05:27.280 DEBUG:teuthology.orchestra.run.smithi050:> set -ex 2024-04-15T21:05:27.280 DEBUG:teuthology.orchestra.run.smithi050:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T21:05:27.300 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-15T21:05:27.300 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_1 2024-04-15T21:05:27.358 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T21:05:27.358 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:05:27.358 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 666 Links: 1 2024-04-15T21:05:27.358 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:05:27.358 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:05:27.358 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-04-15 21:05:10.744150109 +0000 2024-04-15T21:05:27.358 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-04-15 20:59:00.709537797 +0000 2024-04-15T21:05:27.359 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-04-15 20:59:00.709537797 +0000 2024-04-15T21:05:27.359 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-04-15 20:59:00.709537797 +0000 2024-04-15T21:05:27.359 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T21:05:27.430 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-04-15T21:05:27.430 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-04-15T21:05:27.430 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000124544 s, 4.1 MB/s 2024-04-15T21:05:27.431 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T21:05:27.490 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_2 2024-04-15T21:05:27.548 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T21:05:27.548 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:05:27.548 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 686 Links: 1 2024-04-15T21:05:27.548 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:05:27.548 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:05:27.548 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-04-15 21:05:10.744150109 +0000 2024-04-15T21:05:27.548 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-04-15 20:59:01.032529510 +0000 2024-04-15T21:05:27.549 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-04-15 20:59:01.032529510 +0000 2024-04-15T21:05:27.549 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-04-15 20:59:01.032529510 +0000 2024-04-15T21:05:27.549 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T21:05:27.619 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-04-15T21:05:27.619 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-04-15T21:05:27.619 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000115075 s, 4.4 MB/s 2024-04-15T21:05:27.620 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T21:05:27.679 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_3 2024-04-15T21:05:27.737 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T21:05:27.737 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:05:27.737 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 704 Links: 1 2024-04-15T21:05:27.737 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:05:27.737 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:05:27.738 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-04-15 21:05:10.744150109 +0000 2024-04-15T21:05:27.738 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-04-15 20:59:01.386520429 +0000 2024-04-15T21:05:27.738 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-04-15 20:59:01.386520429 +0000 2024-04-15T21:05:27.738 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-04-15 20:59:01.386520429 +0000 2024-04-15T21:05:27.738 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T21:05:27.807 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-04-15T21:05:27.807 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-04-15T21:05:27.807 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000118987 s, 4.3 MB/s 2024-04-15T21:05:27.808 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T21:05:27.866 DEBUG:teuthology.orchestra.run.smithi050:> stat /dev/vg_nvme/lv_4 2024-04-15T21:05:27.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:27 smithi174 ceph-mon[32022]: from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi050=a;smithi151=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:05:27.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:27 smithi174 ceph-mon[32022]: Saving service mgr spec with placement smithi050=a;smithi151=b;count:2 2024-04-15T21:05:27.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:27 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:27.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:27 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:27.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:27 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:27.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:27 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:27.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:27 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:27.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:27 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:05:27.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:27 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-15T21:05:27.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:27 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:05:27.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:27 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:27.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:27 smithi174 ceph-mon[32022]: Deploying daemon mgr.b on smithi151 2024-04-15T21:05:27.924 INFO:teuthology.orchestra.run.smithi050.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T21:05:27.924 INFO:teuthology.orchestra.run.smithi050.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:05:27.924 INFO:teuthology.orchestra.run.smithi050.stdout:Device: 5h/5d Inode: 722 Links: 1 2024-04-15T21:05:27.924 INFO:teuthology.orchestra.run.smithi050.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:05:27.924 INFO:teuthology.orchestra.run.smithi050.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:05:27.924 INFO:teuthology.orchestra.run.smithi050.stdout:Access: 2024-04-15 21:05:10.744150109 +0000 2024-04-15T21:05:27.925 INFO:teuthology.orchestra.run.smithi050.stdout:Modify: 2024-04-15 20:59:01.729511629 +0000 2024-04-15T21:05:27.925 INFO:teuthology.orchestra.run.smithi050.stdout:Change: 2024-04-15 20:59:01.729511629 +0000 2024-04-15T21:05:27.925 INFO:teuthology.orchestra.run.smithi050.stdout: Birth: 2024-04-15 20:59:01.729511629 +0000 2024-04-15T21:05:27.925 DEBUG:teuthology.orchestra.run.smithi050:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T21:05:27.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:27 smithi151 ceph-mon[31870]: from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi050=a;smithi151=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:05:27.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:27 smithi151 ceph-mon[31870]: Saving service mgr spec with placement smithi050=a;smithi151=b;count:2 2024-04-15T21:05:27.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:27 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:27.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:27 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:27.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:27 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:27.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:27 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:27.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:27 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:27.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:27 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:05:27.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:27 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-15T21:05:27.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:27 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:05:27.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:27 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:27.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:27 smithi151 ceph-mon[31870]: Deploying daemon mgr.b on smithi151 2024-04-15T21:05:27.991 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:27 smithi050 ceph-mon[30310]: from='client.14211 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;smithi050=a;smithi151=b", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:05:27.991 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:27 smithi050 ceph-mon[30310]: Saving service mgr spec with placement smithi050=a;smithi151=b;count:2 2024-04-15T21:05:27.991 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:27.991 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:27.991 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:27.991 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:27.991 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:27.991 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:05:27.991 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-04-15T21:05:27.991 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:05:27.992 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:27.992 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:27 smithi050 ceph-mon[30310]: Deploying daemon mgr.b on smithi151 2024-04-15T21:05:27.993 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records in 2024-04-15T21:05:27.993 INFO:teuthology.orchestra.run.smithi050.stderr:1+0 records out 2024-04-15T21:05:27.993 INFO:teuthology.orchestra.run.smithi050.stderr:512 bytes copied, 0.000114317 s, 4.5 MB/s 2024-04-15T21:05:27.994 DEBUG:teuthology.orchestra.run.smithi050:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T21:05:28.052 DEBUG:teuthology.orchestra.run.smithi151:> set -ex 2024-04-15T21:05:28.052 DEBUG:teuthology.orchestra.run.smithi151:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T21:05:28.069 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-15T21:05:28.069 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/vg_nvme/lv_1 2024-04-15T21:05:28.126 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T21:05:28.126 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:05:28.126 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 668 Links: 1 2024-04-15T21:05:28.126 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:05:28.126 INFO:teuthology.orchestra.run.smithi151.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:05:28.126 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-04-15 21:05:21.024751842 +0000 2024-04-15T21:05:28.126 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-04-15 20:58:56.492524029 +0000 2024-04-15T21:05:28.126 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-04-15 20:58:56.492524029 +0000 2024-04-15T21:05:28.126 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: 2024-04-15 20:58:56.492524029 +0000 2024-04-15T21:05:28.127 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T21:05:28.195 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-04-15T21:05:28.195 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-04-15T21:05:28.195 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000267052 s, 1.9 MB/s 2024-04-15T21:05:28.197 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T21:05:28.255 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/vg_nvme/lv_2 2024-04-15T21:05:28.311 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T21:05:28.311 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:05:28.311 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 686 Links: 1 2024-04-15T21:05:28.311 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:05:28.311 INFO:teuthology.orchestra.run.smithi151.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:05:28.312 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-04-15 21:05:21.024751842 +0000 2024-04-15T21:05:28.312 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-04-15 20:58:56.845519414 +0000 2024-04-15T21:05:28.312 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-04-15 20:58:56.845519414 +0000 2024-04-15T21:05:28.312 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: 2024-04-15 20:58:56.845519414 +0000 2024-04-15T21:05:28.312 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T21:05:28.507 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-04-15T21:05:28.508 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-04-15T21:05:28.508 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000203819 s, 2.5 MB/s 2024-04-15T21:05:28.509 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T21:05:28.525 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/vg_nvme/lv_3 2024-04-15T21:05:28.584 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T21:05:28.584 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:05:28.584 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 705 Links: 1 2024-04-15T21:05:28.584 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:05:28.584 INFO:teuthology.orchestra.run.smithi151.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:05:28.585 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-04-15 21:05:28.472655593 +0000 2024-04-15T21:05:28.585 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-04-15 20:58:57.198514799 +0000 2024-04-15T21:05:28.585 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-04-15 20:58:57.198514799 +0000 2024-04-15T21:05:28.585 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: 2024-04-15 20:58:57.198514799 +0000 2024-04-15T21:05:28.585 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T21:05:28.691 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-04-15T21:05:28.691 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-04-15T21:05:28.691 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000218081 s, 2.3 MB/s 2024-04-15T21:05:28.693 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T21:05:28.709 DEBUG:teuthology.orchestra.run.smithi151:> stat /dev/vg_nvme/lv_4 2024-04-15T21:05:28.770 INFO:teuthology.orchestra.run.smithi151.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T21:05:28.770 INFO:teuthology.orchestra.run.smithi151.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:05:28.770 INFO:teuthology.orchestra.run.smithi151.stdout:Device: 5h/5d Inode: 725 Links: 1 2024-04-15T21:05:28.770 INFO:teuthology.orchestra.run.smithi151.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:05:28.770 INFO:teuthology.orchestra.run.smithi151.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:05:28.770 INFO:teuthology.orchestra.run.smithi151.stdout:Access: 2024-04-15 21:05:28.657653202 +0000 2024-04-15T21:05:28.770 INFO:teuthology.orchestra.run.smithi151.stdout:Modify: 2024-04-15 20:58:57.534510406 +0000 2024-04-15T21:05:28.770 INFO:teuthology.orchestra.run.smithi151.stdout:Change: 2024-04-15 20:58:57.534510406 +0000 2024-04-15T21:05:28.771 INFO:teuthology.orchestra.run.smithi151.stdout: Birth: 2024-04-15 20:58:57.534510406 +0000 2024-04-15T21:05:28.771 DEBUG:teuthology.orchestra.run.smithi151:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T21:05:28.785 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:28 smithi050 ceph-mon[30310]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:28.836 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:28 smithi151 ceph-mon[31870]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:28.839 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records in 2024-04-15T21:05:28.839 INFO:teuthology.orchestra.run.smithi151.stderr:1+0 records out 2024-04-15T21:05:28.839 INFO:teuthology.orchestra.run.smithi151.stderr:512 bytes copied, 0.000211947 s, 2.4 MB/s 2024-04-15T21:05:28.840 DEBUG:teuthology.orchestra.run.smithi151:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T21:05:28.897 DEBUG:teuthology.orchestra.run.smithi174:> set -ex 2024-04-15T21:05:28.897 DEBUG:teuthology.orchestra.run.smithi174:> dd if=/scratch_devs of=/dev/stdout 2024-04-15T21:05:28.915 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-04-15T21:05:28.915 DEBUG:teuthology.orchestra.run.smithi174:> stat /dev/vg_nvme/lv_1 2024-04-15T21:05:28.971 INFO:teuthology.orchestra.run.smithi174.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-04-15T21:05:28.971 INFO:teuthology.orchestra.run.smithi174.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:05:28.971 INFO:teuthology.orchestra.run.smithi174.stdout:Device: 5h/5d Inode: 666 Links: 1 2024-04-15T21:05:28.971 INFO:teuthology.orchestra.run.smithi174.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:05:28.972 INFO:teuthology.orchestra.run.smithi174.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:05:28.972 INFO:teuthology.orchestra.run.smithi174.stdout:Access: 2024-04-15 21:05:21.239356223 +0000 2024-04-15T21:05:28.972 INFO:teuthology.orchestra.run.smithi174.stdout:Modify: 2024-04-15 20:58:55.916404271 +0000 2024-04-15T21:05:28.972 INFO:teuthology.orchestra.run.smithi174.stdout:Change: 2024-04-15 20:58:55.916404271 +0000 2024-04-15T21:05:28.972 INFO:teuthology.orchestra.run.smithi174.stdout: Birth: 2024-04-15 20:58:55.916404271 +0000 2024-04-15T21:05:28.972 DEBUG:teuthology.orchestra.run.smithi174:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-04-15T21:05:29.038 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:28 smithi174 ceph-mon[32022]: pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:29.041 INFO:teuthology.orchestra.run.smithi174.stderr:1+0 records in 2024-04-15T21:05:29.041 INFO:teuthology.orchestra.run.smithi174.stderr:1+0 records out 2024-04-15T21:05:29.041 INFO:teuthology.orchestra.run.smithi174.stderr:512 bytes copied, 0.000215084 s, 2.4 MB/s 2024-04-15T21:05:29.043 DEBUG:teuthology.orchestra.run.smithi174:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-04-15T21:05:29.099 DEBUG:teuthology.orchestra.run.smithi174:> stat /dev/vg_nvme/lv_2 2024-04-15T21:05:29.155 INFO:teuthology.orchestra.run.smithi174.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-04-15T21:05:29.155 INFO:teuthology.orchestra.run.smithi174.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:05:29.155 INFO:teuthology.orchestra.run.smithi174.stdout:Device: 5h/5d Inode: 686 Links: 1 2024-04-15T21:05:29.155 INFO:teuthology.orchestra.run.smithi174.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:05:29.155 INFO:teuthology.orchestra.run.smithi174.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:05:29.155 INFO:teuthology.orchestra.run.smithi174.stdout:Access: 2024-04-15 21:05:21.239356223 +0000 2024-04-15T21:05:29.155 INFO:teuthology.orchestra.run.smithi174.stdout:Modify: 2024-04-15 20:58:56.248399885 +0000 2024-04-15T21:05:29.155 INFO:teuthology.orchestra.run.smithi174.stdout:Change: 2024-04-15 20:58:56.248399885 +0000 2024-04-15T21:05:29.155 INFO:teuthology.orchestra.run.smithi174.stdout: Birth: 2024-04-15 20:58:56.248399885 +0000 2024-04-15T21:05:29.156 DEBUG:teuthology.orchestra.run.smithi174:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-04-15T21:05:29.170 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:28 smithi151 podman[33504]: 2024-04-15 21:05:28.952222859 +0000 UTC m=+0.130969107 container create 1c193dc8c9458b70adb7bc5a4a08733b509cbc8136fdea8ca667d2b8a36886ef (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b, GIT_CLEAN=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-87dbfb6, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240409, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-15T21:05:29.170 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:29 smithi151 podman[33504]: 2024-04-15 21:05:29.179133636 +0000 UTC m=+0.357879838 container init 1c193dc8c9458b70adb7bc5a4a08733b509cbc8136fdea8ca667d2b8a36886ef (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240409, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-87dbfb6, GIT_CLEAN=True, ceph=True) 2024-04-15T21:05:29.221 INFO:teuthology.orchestra.run.smithi174.stderr:1+0 records in 2024-04-15T21:05:29.221 INFO:teuthology.orchestra.run.smithi174.stderr:1+0 records out 2024-04-15T21:05:29.221 INFO:teuthology.orchestra.run.smithi174.stderr:512 bytes copied, 0.000204568 s, 2.5 MB/s 2024-04-15T21:05:29.222 DEBUG:teuthology.orchestra.run.smithi174:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-04-15T21:05:29.279 DEBUG:teuthology.orchestra.run.smithi174:> stat /dev/vg_nvme/lv_3 2024-04-15T21:05:29.334 INFO:teuthology.orchestra.run.smithi174.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-04-15T21:05:29.334 INFO:teuthology.orchestra.run.smithi174.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:05:29.335 INFO:teuthology.orchestra.run.smithi174.stdout:Device: 5h/5d Inode: 705 Links: 1 2024-04-15T21:05:29.335 INFO:teuthology.orchestra.run.smithi174.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:05:29.335 INFO:teuthology.orchestra.run.smithi174.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:05:29.335 INFO:teuthology.orchestra.run.smithi174.stdout:Access: 2024-04-15 21:05:21.239356223 +0000 2024-04-15T21:05:29.335 INFO:teuthology.orchestra.run.smithi174.stdout:Modify: 2024-04-15 20:58:56.601395221 +0000 2024-04-15T21:05:29.335 INFO:teuthology.orchestra.run.smithi174.stdout:Change: 2024-04-15 20:58:56.601395221 +0000 2024-04-15T21:05:29.335 INFO:teuthology.orchestra.run.smithi174.stdout: Birth: 2024-04-15 20:58:56.601395221 +0000 2024-04-15T21:05:29.335 DEBUG:teuthology.orchestra.run.smithi174:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-04-15T21:05:29.402 INFO:teuthology.orchestra.run.smithi174.stderr:1+0 records in 2024-04-15T21:05:29.402 INFO:teuthology.orchestra.run.smithi174.stderr:1+0 records out 2024-04-15T21:05:29.402 INFO:teuthology.orchestra.run.smithi174.stderr:512 bytes copied, 0.000203062 s, 2.5 MB/s 2024-04-15T21:05:29.403 DEBUG:teuthology.orchestra.run.smithi174:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-04-15T21:05:29.460 DEBUG:teuthology.orchestra.run.smithi174:> stat /dev/vg_nvme/lv_4 2024-04-15T21:05:29.477 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:29 smithi151 podman[33504]: 2024-04-15 21:05:29.184744323 +0000 UTC m=+0.363490525 container start 1c193dc8c9458b70adb7bc5a4a08733b509cbc8136fdea8ca667d2b8a36886ef (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240409, ceph=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-87dbfb6, org.label-schema.license=GPLv2, GIT_CLEAN=True, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, io.buildah.version=1.33.5) 2024-04-15T21:05:29.477 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:29 smithi151 ceph-mgr[33579]: -- 172.21.15.151:0/1055474727 <== mon.2 v2:172.21.15.151:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x560fd10d05a0 con 0x560fd10a4c00 2024-04-15T21:05:29.477 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:29 smithi151 bash[33504]: 1c193dc8c9458b70adb7bc5a4a08733b509cbc8136fdea8ca667d2b8a36886ef 2024-04-15T21:05:29.477 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:29 smithi151 systemd[1]: Started Ceph mgr.b for 650ea436-fb6b-11ee-bc8f-c7b262605968. 2024-04-15T21:05:29.515 INFO:teuthology.orchestra.run.smithi174.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-04-15T21:05:29.516 INFO:teuthology.orchestra.run.smithi174.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-04-15T21:05:29.516 INFO:teuthology.orchestra.run.smithi174.stdout:Device: 5h/5d Inode: 722 Links: 1 2024-04-15T21:05:29.516 INFO:teuthology.orchestra.run.smithi174.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-04-15T21:05:29.516 INFO:teuthology.orchestra.run.smithi174.stdout:Context: system_u:object_r:device_t:s0 2024-04-15T21:05:29.516 INFO:teuthology.orchestra.run.smithi174.stdout:Access: 2024-04-15 21:05:21.239356223 +0000 2024-04-15T21:05:29.516 INFO:teuthology.orchestra.run.smithi174.stdout:Modify: 2024-04-15 20:58:56.951390596 +0000 2024-04-15T21:05:29.516 INFO:teuthology.orchestra.run.smithi174.stdout:Change: 2024-04-15 20:58:56.951390596 +0000 2024-04-15T21:05:29.516 INFO:teuthology.orchestra.run.smithi174.stdout: Birth: 2024-04-15 20:58:56.951390596 +0000 2024-04-15T21:05:29.516 DEBUG:teuthology.orchestra.run.smithi174:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-04-15T21:05:29.583 INFO:teuthology.orchestra.run.smithi174.stderr:1+0 records in 2024-04-15T21:05:29.583 INFO:teuthology.orchestra.run.smithi174.stderr:1+0 records out 2024-04-15T21:05:29.583 INFO:teuthology.orchestra.run.smithi174.stderr:512 bytes copied, 0.000190501 s, 2.7 MB/s 2024-04-15T21:05:29.584 DEBUG:teuthology.orchestra.run.smithi174:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-04-15T21:05:29.640 INFO:tasks.cephadm:Deploying osd.0 on smithi050 with /dev/vg_nvme/lv_4... 2024-04-15T21:05:29.641 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-15T21:05:30.012 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:29 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:29.766+0000 7f0ef310b200 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2024-04-15T21:05:30.012 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:29 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:29.862+0000 7f0ef310b200 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2024-04-15T21:05:30.090 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:05:30.453 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:30.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:30.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:30.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:30.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:05:30.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: Reconfiguring mgr.a (unknown last config time)... 2024-04-15T21:05:30.455 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:05:30.455 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:05:30.455 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:30.455 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:30 smithi050 ceph-mon[30310]: Reconfiguring daemon mgr.a on smithi050 2024-04-15T21:05:30.632 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:30.548+0000 7f0ef310b200 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2024-04-15T21:05:30.632 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: Reconfiguring mgr.a (unknown last config time)... 2024-04-15T21:05:30.633 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:05:30.634 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:05:30.634 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:30.634 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-mon[31870]: Reconfiguring daemon mgr.a on smithi050 2024-04-15T21:05:30.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:30.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:30.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:30.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:30.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:30.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: Metadata not up to date on all hosts. Skipping non agent specs 2024-04-15T21:05:30.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: Reconfiguring mgr.a (unknown last config time)... 2024-04-15T21:05:30.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:05:30.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:05:30.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:30.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:30 smithi174 ceph-mon[32022]: Reconfiguring daemon mgr.a on smithi050 2024-04-15T21:05:30.915 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:30.640+0000 7f0ef310b200 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2024-04-15T21:05:30.915 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:30.785+0000 7f0ef310b200 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2024-04-15T21:05:30.915 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:30.888+0000 7f0ef310b200 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2024-04-15T21:05:31.204 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:30 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:30.974+0000 7f0ef310b200 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2024-04-15T21:05:31.478 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:31 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:31.264+0000 7f0ef310b200 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2024-04-15T21:05:31.478 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:31 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:31.407+0000 7f0ef310b200 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2024-04-15T21:05:31.797 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:31 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:31.505+0000 7f0ef310b200 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2024-04-15T21:05:31.797 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:31 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:31.610+0000 7f0ef310b200 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2024-04-15T21:05:32.091 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:31 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:31.805+0000 7f0ef310b200 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2024-04-15T21:05:32.363 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:32 smithi151 ceph-mon[31870]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:32.363 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:32 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:32.588 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:32 smithi050 ceph-mon[30310]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:32.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:32 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:32.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:32 smithi174 ceph-mon[32022]: pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:32.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:32 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:32.934 INFO:teuthology.orchestra.run.smithi050.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-15T21:05:32.934 INFO:teuthology.orchestra.run.smithi050.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-15T21:05:32.934 INFO:teuthology.orchestra.run.smithi050.stderr: stderr: 10+0 records in 2024-04-15T21:05:32.934 INFO:teuthology.orchestra.run.smithi050.stderr:10+0 records out 2024-04-15T21:05:32.934 INFO:teuthology.orchestra.run.smithi050.stderr:10485760 bytes (10 MB, 10 MiB) copied, 0.0085382 s, 1.2 GB/s 2024-04-15T21:05:32.934 INFO:teuthology.orchestra.run.smithi050.stderr:--> Zapping successful for: 2024-04-15T21:05:32.951 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:32 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:32.831+0000 7f0ef310b200 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2024-04-15T21:05:32.951 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:32 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:32.959+0000 7f0ef310b200 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2024-04-15T21:05:33.567 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.567 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.567 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.567 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.567 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.567 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.568 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:33 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:33.292+0000 7f0ef310b200 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2024-04-15T21:05:33.568 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:33 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:33.380+0000 7f0ef310b200 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2024-04-15T21:05:33.568 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:33 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:33.575+0000 7f0ef310b200 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:05:33.750 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.750 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.750 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.750 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.750 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.750 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.776 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi050:vg_nvme/lv_4 2024-04-15T21:05:33.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:33.977 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:33 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:33.760+0000 7f0ef310b200 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2024-04-15T21:05:34.019 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:05:34.293 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:34 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:34.041+0000 7f0ef310b200 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2024-04-15T21:05:34.293 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:34 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:34.301+0000 7f0ef310b200 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2024-04-15T21:05:34.727 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:34 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:34.535+0000 7f0ef310b200 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2024-04-15T21:05:34.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:34 smithi151 ceph-mon[31870]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:34.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:34.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:34.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:34.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:34.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:34.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:34.790 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:34 smithi050 ceph-mon[30310]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:34.790 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:34.790 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:34.790 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:34.790 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:34.790 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:34.790 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:34.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:34 smithi174 ceph-mon[32022]: pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:34.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:34 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:34.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:34 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:34.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:34 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:34.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:34 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:34.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:34 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:34.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:34 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:35.727 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:35 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:35.329+0000 7f0ef310b200 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2024-04-15T21:05:36.199 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:35 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:35.898+0000 7f0ef310b200 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2024-04-15T21:05:36.199 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:35 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:35.994+0000 7f0ef310b200 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2024-04-15T21:05:36.199 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:05:36 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b[33556]: 2024-04-15T21:05:36.207+0000 7f0ef310b200 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2024-04-15T21:05:36.654 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:36 smithi050 ceph-mon[30310]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:36.654 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:36 smithi050 ceph-mon[30310]: from='client.14220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:05:36.655 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:36 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:05:36.655 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:36 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:05:36.655 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:36 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:36.655 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:36 smithi050 ceph-mon[30310]: Standby manager daemon b started 2024-04-15T21:05:36.655 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:36 smithi050 ceph-mon[30310]: from='mgr.? 172.21.15.151:0/1925721120' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-15T21:05:36.655 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:36 smithi050 ceph-mon[30310]: from='mgr.? 172.21.15.151:0/1925721120' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-15T21:05:36.655 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:36 smithi050 ceph-mon[30310]: from='mgr.? 172.21.15.151:0/1925721120' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-15T21:05:36.655 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:36 smithi050 ceph-mon[30310]: from='mgr.? 172.21.15.151:0/1925721120' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-15T21:05:36.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:36 smithi174 ceph-mon[32022]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:36.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:36 smithi174 ceph-mon[32022]: from='client.14220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:05:36.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:36 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:05:36.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:36 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:05:36.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:36 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:36.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:36 smithi174 ceph-mon[32022]: Standby manager daemon b started 2024-04-15T21:05:36.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:36 smithi174 ceph-mon[32022]: from='mgr.? 172.21.15.151:0/1925721120' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-15T21:05:36.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:36 smithi174 ceph-mon[32022]: from='mgr.? 172.21.15.151:0/1925721120' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-15T21:05:36.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:36 smithi174 ceph-mon[32022]: from='mgr.? 172.21.15.151:0/1925721120' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-15T21:05:36.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:36 smithi174 ceph-mon[32022]: from='mgr.? 172.21.15.151:0/1925721120' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-15T21:05:36.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:36 smithi151 ceph-mon[31870]: pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:36.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:36 smithi151 ceph-mon[31870]: from='client.14220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:05:36.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:36 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:05:36.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:36 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:05:36.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:36 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:36.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:36 smithi151 ceph-mon[31870]: Standby manager daemon b started 2024-04-15T21:05:36.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:36 smithi151 ceph-mon[31870]: from='mgr.? 172.21.15.151:0/1925721120' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2024-04-15T21:05:36.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:36 smithi151 ceph-mon[31870]: from='mgr.? 172.21.15.151:0/1925721120' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-04-15T21:05:36.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:36 smithi151 ceph-mon[31870]: from='mgr.? 172.21.15.151:0/1925721120' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2024-04-15T21:05:36.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:36 smithi151 ceph-mon[31870]: from='mgr.? 172.21.15.151:0/1925721120' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-04-15T21:05:37.632 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:37 smithi050 ceph-mon[30310]: mgrmap e14: a(active, since 79s), standbys: b 2024-04-15T21:05:37.632 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:37 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-15T21:05:37.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:37 smithi174 ceph-mon[32022]: mgrmap e14: a(active, since 79s), standbys: b 2024-04-15T21:05:37.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:37 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-15T21:05:37.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:37 smithi151 ceph-mon[31870]: mgrmap e14: a(active, since 79s), standbys: b 2024-04-15T21:05:37.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:37 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2024-04-15T21:05:38.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:38 smithi050 ceph-mon[30310]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:38.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:38 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/1428361081' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "399c1ba1-fe0a-420d-9aa3-dc6d244f66dc"}]: dispatch 2024-04-15T21:05:38.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:38 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/1428361081' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "399c1ba1-fe0a-420d-9aa3-dc6d244f66dc"}]': finished 2024-04-15T21:05:38.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:38 smithi050 ceph-mon[30310]: osdmap e5: 1 total, 0 up, 1 in 2024-04-15T21:05:38.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:38 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:38.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:38 smithi174 ceph-mon[32022]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:38.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:38 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/1428361081' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "399c1ba1-fe0a-420d-9aa3-dc6d244f66dc"}]: dispatch 2024-04-15T21:05:38.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:38 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/1428361081' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "399c1ba1-fe0a-420d-9aa3-dc6d244f66dc"}]': finished 2024-04-15T21:05:38.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:38 smithi174 ceph-mon[32022]: osdmap e5: 1 total, 0 up, 1 in 2024-04-15T21:05:38.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:38 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:38.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:38 smithi151 ceph-mon[31870]: pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:38.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:38 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/1428361081' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "399c1ba1-fe0a-420d-9aa3-dc6d244f66dc"}]: dispatch 2024-04-15T21:05:38.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:38 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/1428361081' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "399c1ba1-fe0a-420d-9aa3-dc6d244f66dc"}]': finished 2024-04-15T21:05:38.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:38 smithi151 ceph-mon[31870]: osdmap e5: 1 total, 0 up, 1 in 2024-04-15T21:05:38.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:38 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:39.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:39 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/2659608223' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:05:39.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:39 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/2659608223' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:05:39.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:39 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/2659608223' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:05:40.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:40 smithi050 ceph-mon[30310]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:40.883 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:40 smithi174 ceph-mon[32022]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:40.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:40 smithi151 ceph-mon[31870]: pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:42.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:42 smithi151 ceph-mon[31870]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:42.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:42 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:42.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:42 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:42.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:42 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:42.760 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:42 smithi050 ceph-mon[30310]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:42.761 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:42 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:42.761 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:42 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:42.761 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:42 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:42.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:42 smithi174 ceph-mon[32022]: pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:42.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:42 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:42.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:42 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:42.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:42 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:44.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:44 smithi050 ceph-mon[30310]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:44.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:44 smithi174 ceph-mon[32022]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:44.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:44 smithi151 ceph-mon[31870]: pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:45.830 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T21:05:45.830 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:45.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:45 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T21:05:45.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:45 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:45.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T21:05:45.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:46.692 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:46 smithi050 ceph-mon[30310]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:46.693 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:46 smithi050 ceph-mon[30310]: Deploying daemon osd.0 on smithi050 2024-04-15T21:05:46.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:46 smithi174 ceph-mon[32022]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:46.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:46 smithi174 ceph-mon[32022]: Deploying daemon osd.0 on smithi050 2024-04-15T21:05:46.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:46 smithi151 ceph-mon[31870]: pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:46.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:46 smithi151 ceph-mon[31870]: Deploying daemon osd.0 on smithi050 2024-04-15T21:05:48.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:48 smithi050 ceph-mon[30310]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:48.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:48 smithi174 ceph-mon[32022]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:48.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:48 smithi151 ceph-mon[31870]: pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:50.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:50 smithi151 ceph-mon[31870]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:50.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:50 smithi050 ceph-mon[30310]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:50 smithi174 ceph-mon[32022]: pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:50.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:50.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:52.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:52 smithi050 ceph-mon[30310]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:52.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:52.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:52.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:52.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:52.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:52.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:52.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:52 smithi151 ceph-mon[31870]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:52.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:52.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:52.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:52.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:52.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:52.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:52.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:52 smithi174 ceph-mon[32022]: pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:52.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:52.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:52.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:52.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:52.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:52.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:54.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:54 smithi151 ceph-mon[31870]: pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:54.519 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:54 smithi050 ceph-mon[30310]: pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:54.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:54 smithi174 ceph-mon[32022]: pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:54.827 INFO:teuthology.orchestra.run.smithi050.stdout:Created osd(s) 0 on host 'smithi050' 2024-04-15T21:05:55.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:55 smithi151 ceph-mon[31870]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-15T21:05:55.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:55 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:55.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:55 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:55.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:55 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:55.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:55 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:05:55.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:55 smithi151 ceph-mon[31870]: Adjusting osd_memory_target on smithi050 to 16069M 2024-04-15T21:05:55.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:55 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:55.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:55 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:55.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:55 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:55.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:55 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:55.481 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:55 smithi050 ceph-mon[30310]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-15T21:05:55.482 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:55 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:55.482 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:55 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:55.482 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:55 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:55.482 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:55 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:05:55.482 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:55 smithi050 ceph-mon[30310]: Adjusting osd_memory_target on smithi050 to 16069M 2024-04-15T21:05:55.482 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:55 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:55.482 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:55 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:55.482 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:55 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:55.482 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:55 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:55.510 DEBUG:teuthology.orchestra.run.smithi050:osd.0> sudo journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.0.service 2024-04-15T21:05:55.512 INFO:tasks.cephadm:Deploying osd.1 on smithi050 with /dev/vg_nvme/lv_3... 2024-04-15T21:05:55.512 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-15T21:05:55.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:55 smithi174 ceph-mon[32022]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-04-15T21:05:55.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:55 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:55.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:55 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:55.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:55 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:05:55.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:55 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:05:55.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:55 smithi174 ceph-mon[32022]: Adjusting osd_memory_target on smithi050 to 16069M 2024-04-15T21:05:55.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:55 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:55.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:55 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:05:55.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:55 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:05:55.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:55 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:05:55.794 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:05:56.441 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:56 smithi050 ceph-mon[30310]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:56.441 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:56 smithi050 ceph-mon[30310]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-15T21:05:56.441 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:56 smithi050 ceph-mon[30310]: osdmap e6: 1 total, 0 up, 1 in 2024-04-15T21:05:56.441 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:56 smithi050 ceph-mon[30310]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-04-15T21:05:56.441 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:56 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:56.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:56 smithi151 ceph-mon[31870]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:56.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:56 smithi151 ceph-mon[31870]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-15T21:05:56.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:56 smithi151 ceph-mon[31870]: osdmap e6: 1 total, 0 up, 1 in 2024-04-15T21:05:56.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:56 smithi151 ceph-mon[31870]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-04-15T21:05:56.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:56 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:56.546 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:56 smithi174 ceph-mon[32022]: pgmap v44: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:56.546 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:56 smithi174 ceph-mon[32022]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-04-15T21:05:56.546 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:56 smithi174 ceph-mon[32022]: osdmap e6: 1 total, 0 up, 1 in 2024-04-15T21:05:56.546 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:56 smithi174 ceph-mon[32022]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-04-15T21:05:56.546 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:56 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:56.839 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:05:56 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0[42618]: 2024-04-15T21:05:56.443+0000 7fb31de14700 -1 osd.0 0 waiting for initial osdmap 2024-04-15T21:05:56.839 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:05:56 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0[42618]: 2024-04-15T21:05:56.445+0000 7fb315bff700 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-15T21:05:57.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:57 smithi151 ceph-mon[31870]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-04-15T21:05:57.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:57 smithi151 ceph-mon[31870]: osdmap e7: 1 total, 0 up, 1 in 2024-04-15T21:05:57.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:57 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:57.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:57 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:57.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:57 smithi151 ceph-mon[31870]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' 2024-04-15T21:05:57.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:57 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:57.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:57 smithi050 ceph-mon[30310]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-04-15T21:05:57.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:57 smithi050 ceph-mon[30310]: osdmap e7: 1 total, 0 up, 1 in 2024-04-15T21:05:57.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:57 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:57.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:57 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:57.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:57 smithi050 ceph-mon[30310]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' 2024-04-15T21:05:57.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:57 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:57.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:57 smithi174 ceph-mon[32022]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-04-15T21:05:57.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:57 smithi174 ceph-mon[32022]: osdmap e7: 1 total, 0 up, 1 in 2024-04-15T21:05:57.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:57 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:57.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:57 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:57.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:57 smithi174 ceph-mon[32022]: from='osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033]' entity='osd.0' 2024-04-15T21:05:57.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:57 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:57.754 INFO:teuthology.orchestra.run.smithi050.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-15T21:05:57.754 INFO:teuthology.orchestra.run.smithi050.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-15T21:05:57.754 INFO:teuthology.orchestra.run.smithi050.stderr: stderr: 10+0 records in 2024-04-15T21:05:57.754 INFO:teuthology.orchestra.run.smithi050.stderr:10+0 records out 2024-04-15T21:05:57.754 INFO:teuthology.orchestra.run.smithi050.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.00961621 s, 1.1 GB/s 2024-04-15T21:05:57.754 INFO:teuthology.orchestra.run.smithi050.stderr:--> Zapping successful for: 2024-04-15T21:05:58.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:58 smithi050 ceph-mon[30310]: purged_snaps scrub starts 2024-04-15T21:05:58.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:58 smithi050 ceph-mon[30310]: purged_snaps scrub ok 2024-04-15T21:05:58.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:58 smithi050 ceph-mon[30310]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:58.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:58 smithi050 ceph-mon[30310]: osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033] boot 2024-04-15T21:05:58.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:58 smithi050 ceph-mon[30310]: osdmap e8: 1 total, 1 up, 1 in 2024-04-15T21:05:58.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:05:58 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:58.412 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi050:vg_nvme/lv_3 2024-04-15T21:05:58.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:58 smithi151 ceph-mon[31870]: purged_snaps scrub starts 2024-04-15T21:05:58.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:58 smithi151 ceph-mon[31870]: purged_snaps scrub ok 2024-04-15T21:05:58.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:58 smithi151 ceph-mon[31870]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:58.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:58 smithi151 ceph-mon[31870]: osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033] boot 2024-04-15T21:05:58.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:58 smithi151 ceph-mon[31870]: osdmap e8: 1 total, 1 up, 1 in 2024-04-15T21:05:58.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:05:58 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:58.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:58 smithi174 ceph-mon[32022]: purged_snaps scrub starts 2024-04-15T21:05:58.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:58 smithi174 ceph-mon[32022]: purged_snaps scrub ok 2024-04-15T21:05:58.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:58 smithi174 ceph-mon[32022]: pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-04-15T21:05:58.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:58 smithi174 ceph-mon[32022]: osd.0 [v2:172.21.15.50:6802/3974039033,v1:172.21.15.50:6803/3974039033] boot 2024-04-15T21:05:58.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:58 smithi174 ceph-mon[32022]: osdmap e8: 1 total, 1 up, 1 in 2024-04-15T21:05:58.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:05:58 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-04-15T21:05:58.662 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:06:00.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:00 smithi151 ceph-mon[31870]: pgmap v49: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:00.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:00 smithi151 ceph-mon[31870]: osdmap e9: 1 total, 1 up, 1 in 2024-04-15T21:06:00.506 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:00 smithi174 ceph-mon[32022]: pgmap v49: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:00.507 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:00 smithi174 ceph-mon[32022]: osdmap e9: 1 total, 1 up, 1 in 2024-04-15T21:06:00.588 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:00 smithi050 ceph-mon[30310]: pgmap v49: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:00.588 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:00 smithi050 ceph-mon[30310]: osdmap e9: 1 total, 1 up, 1 in 2024-04-15T21:06:01.449 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:01 smithi050 ceph-mon[30310]: from='client.14247 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:06:01.449 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:01 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:06:01.449 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:01 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:06:01.449 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:01 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:01.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:01 smithi151 ceph-mon[31870]: from='client.14247 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:06:01.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:01 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:06:01.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:01 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:06:01.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:01 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:01.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:01 smithi174 ceph-mon[32022]: from='client.14247 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi050:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:06:01.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:01 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:06:01.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:01 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:06:01.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:01 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:02.439 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:02 smithi050 ceph-mon[30310]: pgmap v51: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:02.474 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:02 smithi151 ceph-mon[31870]: pgmap v51: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:02.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:02 smithi174 ceph-mon[32022]: pgmap v51: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:03.588 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:03 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:03.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:03 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:03.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:03 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:03.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:03 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3288836084' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b804456e-3c8a-4fc7-8b79-acf61f1f6be6"}]: dispatch 2024-04-15T21:06:03.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:03 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3288836084' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b804456e-3c8a-4fc7-8b79-acf61f1f6be6"}]': finished 2024-04-15T21:06:03.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:03 smithi050 ceph-mon[30310]: osdmap e10: 2 total, 1 up, 2 in 2024-04-15T21:06:03.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:03 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:03.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:03 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:03.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:03 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:03.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:03 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:03.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:03 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/3288836084' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b804456e-3c8a-4fc7-8b79-acf61f1f6be6"}]: dispatch 2024-04-15T21:06:03.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:03 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/3288836084' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b804456e-3c8a-4fc7-8b79-acf61f1f6be6"}]': finished 2024-04-15T21:06:03.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:03 smithi174 ceph-mon[32022]: osdmap e10: 2 total, 1 up, 2 in 2024-04-15T21:06:03.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:03 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:03.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:03 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:03.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:03 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:03.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:03 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:03.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:03 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/3288836084' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "b804456e-3c8a-4fc7-8b79-acf61f1f6be6"}]: dispatch 2024-04-15T21:06:03.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:03 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/3288836084' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "b804456e-3c8a-4fc7-8b79-acf61f1f6be6"}]': finished 2024-04-15T21:06:03.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:03 smithi151 ceph-mon[31870]: osdmap e10: 2 total, 1 up, 2 in 2024-04-15T21:06:03.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:03 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:04.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:04 smithi050 ceph-mon[30310]: pgmap v52: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:04.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:04 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3445031466' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:06:04.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:04 smithi174 ceph-mon[32022]: pgmap v52: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:04.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:04 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/3445031466' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:06:04.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:04 smithi151 ceph-mon[31870]: pgmap v52: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:04.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:04 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/3445031466' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:06:06.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:06 smithi050 ceph-mon[30310]: pgmap v54: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:06.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:06 smithi174 ceph-mon[32022]: pgmap v54: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:06.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:06 smithi151 ceph-mon[31870]: pgmap v54: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:08.338 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:08 smithi050 ceph-mon[30310]: pgmap v55: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:08.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:08 smithi174 ceph-mon[32022]: pgmap v55: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:08.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:08 smithi151 ceph-mon[31870]: pgmap v55: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:09.720 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:09.720 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:09.720 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:09 smithi050 ceph-mon[30310]: Detected new or changed devices on smithi050 2024-04-15T21:06:09.720 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:09.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:09.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:09.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:09 smithi174 ceph-mon[32022]: Detected new or changed devices on smithi050 2024-04-15T21:06:09.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:09.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:09.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:09.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:09 smithi151 ceph-mon[31870]: Detected new or changed devices on smithi050 2024-04-15T21:06:09.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:10.724 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:10 smithi050 ceph-mon[30310]: pgmap v56: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:10.724 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:10 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T21:06:10.724 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:10 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:10.724 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:10 smithi050 ceph-mon[30310]: Deploying daemon osd.1 on smithi050 2024-04-15T21:06:10.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:10 smithi174 ceph-mon[32022]: pgmap v56: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:10.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:10 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T21:06:10.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:10 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:10.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:10 smithi174 ceph-mon[32022]: Deploying daemon osd.1 on smithi050 2024-04-15T21:06:10.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:10 smithi151 ceph-mon[31870]: pgmap v56: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:10.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:10 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T21:06:10.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:10 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:10.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:10 smithi151 ceph-mon[31870]: Deploying daemon osd.1 on smithi050 2024-04-15T21:06:11.976 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:11 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:11.976 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:11 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:11.976 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:11 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:12.016 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:11 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:12.016 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:11 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:12.016 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:11 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:12.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:11 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:12.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:11 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:12.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:11 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:12.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:12 smithi151 ceph-mon[31870]: pgmap v57: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:12.996 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:12 smithi050 ceph-mon[30310]: pgmap v57: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:13.144 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:12 smithi174 ceph-mon[32022]: pgmap v57: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:14.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:14 smithi050 ceph-mon[30310]: pgmap v58: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:14.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:14 smithi151 ceph-mon[31870]: pgmap v58: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:15.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:14 smithi174 ceph-mon[32022]: pgmap v58: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:16.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:16 smithi151 ceph-mon[31870]: pgmap v59: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:16.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:16 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:16.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:16 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:16.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:16 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:16.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:16 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:16.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:16 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:16.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:16 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:17.004 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:16 smithi050 ceph-mon[30310]: pgmap v59: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:17.004 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:17.004 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:17.004 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:17.005 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:17.005 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:17.005 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:17.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:16 smithi174 ceph-mon[32022]: pgmap v59: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:17.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:16 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:17.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:16 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:17.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:16 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:17.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:16 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:17.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:16 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:17.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:16 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:18.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:18 smithi050 ceph-mon[30310]: pgmap v60: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:18.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:18 smithi151 ceph-mon[31870]: pgmap v60: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:19.144 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:18 smithi174 ceph-mon[32022]: pgmap v60: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:19.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:19 smithi151 ceph-mon[31870]: from='osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-15T21:06:20.002 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:19 smithi050 ceph-mon[30310]: from='osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-15T21:06:20.055 INFO:teuthology.orchestra.run.smithi050.stdout:Created osd(s) 1 on host 'smithi050' 2024-04-15T21:06:20.057 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:19 smithi174 ceph-mon[32022]: from='osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-04-15T21:06:20.711 DEBUG:teuthology.orchestra.run.smithi050:osd.1> sudo journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.1.service 2024-04-15T21:06:20.714 INFO:tasks.cephadm:Deploying osd.2 on smithi151 with /dev/vg_nvme/lv_4... 2024-04-15T21:06:20.714 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-15T21:06:20.969 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.b/config 2024-04-15T21:06:20.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: pgmap v61: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:20.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: from='osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-15T21:06:20.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: osdmap e11: 2 total, 1 up, 2 in 2024-04-15T21:06:20.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: from='osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-04-15T21:06:20.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:20.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:20.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:20.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:06:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:06:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:20.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:21.041 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: pgmap v61: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:21.041 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: from='osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-15T21:06:21.041 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: osdmap e11: 2 total, 1 up, 2 in 2024-04-15T21:06:21.041 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: from='osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-04-15T21:06:21.041 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:21.041 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:21.041 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:21.041 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:21.041 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:06:21.041 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:06:21.041 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:21.041 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:21.041 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:21.042 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:21.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: pgmap v61: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: from='osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-04-15T21:06:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: osdmap e11: 2 total, 1 up, 2 in 2024-04-15T21:06:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: from='osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]: dispatch 2024-04-15T21:06:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:06:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:06:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:21.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:21 smithi151 ceph-mon[31870]: Adjusting osd_memory_target on smithi050 to 8034M 2024-04-15T21:06:21.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:21 smithi151 ceph-mon[31870]: from='osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-04-15T21:06:21.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:21 smithi151 ceph-mon[31870]: osdmap e12: 2 total, 1 up, 2 in 2024-04-15T21:06:21.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:21 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:21.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:21 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:22.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:21 smithi050 ceph-mon[30310]: Adjusting osd_memory_target on smithi050 to 8034M 2024-04-15T21:06:22.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:21 smithi050 ceph-mon[30310]: from='osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-04-15T21:06:22.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:21 smithi050 ceph-mon[30310]: osdmap e12: 2 total, 1 up, 2 in 2024-04-15T21:06:22.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:21 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:22.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:21 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:22.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:21 smithi174 ceph-mon[32022]: Adjusting osd_memory_target on smithi050 to 8034M 2024-04-15T21:06:22.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:21 smithi174 ceph-mon[32022]: from='osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi050", "root=default"]}]': finished 2024-04-15T21:06:22.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:21 smithi174 ceph-mon[32022]: osdmap e12: 2 total, 1 up, 2 in 2024-04-15T21:06:22.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:21 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:22.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:21 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:22.937 INFO:teuthology.orchestra.run.smithi151.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-15T21:06:22.937 INFO:teuthology.orchestra.run.smithi151.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-15T21:06:22.937 INFO:teuthology.orchestra.run.smithi151.stderr: stderr: 10+0 records in 2024-04-15T21:06:22.937 INFO:teuthology.orchestra.run.smithi151.stderr:10+0 records out 2024-04-15T21:06:22.937 INFO:teuthology.orchestra.run.smithi151.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0117217 s, 895 MB/s 2024-04-15T21:06:22.938 INFO:teuthology.orchestra.run.smithi151.stderr:--> Zapping successful for: 2024-04-15T21:06:22.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:22 smithi151 ceph-mon[31870]: purged_snaps scrub starts 2024-04-15T21:06:22.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:22 smithi151 ceph-mon[31870]: purged_snaps scrub ok 2024-04-15T21:06:22.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:22 smithi151 ceph-mon[31870]: pgmap v64: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:22.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:22.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:22 smithi151 ceph-mon[31870]: osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919] boot 2024-04-15T21:06:22.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:22 smithi151 ceph-mon[31870]: osdmap e13: 2 total, 2 up, 2 in 2024-04-15T21:06:22.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:22.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:22.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:22.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:23.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:22 smithi050 ceph-mon[30310]: purged_snaps scrub starts 2024-04-15T21:06:23.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:22 smithi050 ceph-mon[30310]: purged_snaps scrub ok 2024-04-15T21:06:23.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:22 smithi050 ceph-mon[30310]: pgmap v64: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:23.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:23.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:22 smithi050 ceph-mon[30310]: osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919] boot 2024-04-15T21:06:23.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:22 smithi050 ceph-mon[30310]: osdmap e13: 2 total, 2 up, 2 in 2024-04-15T21:06:23.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:23.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:23.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:23.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:23.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:22 smithi174 ceph-mon[32022]: purged_snaps scrub starts 2024-04-15T21:06:23.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:22 smithi174 ceph-mon[32022]: purged_snaps scrub ok 2024-04-15T21:06:23.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:22 smithi174 ceph-mon[32022]: pgmap v64: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-04-15T21:06:23.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:22 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:23.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:22 smithi174 ceph-mon[32022]: osd.1 [v2:172.21.15.50:6810/3439637919,v1:172.21.15.50:6811/3439637919] boot 2024-04-15T21:06:23.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:22 smithi174 ceph-mon[32022]: osdmap e13: 2 total, 2 up, 2 in 2024-04-15T21:06:23.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:22 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-04-15T21:06:23.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:22 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:23.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:22 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:23.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:22 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:23.556 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi151:vg_nvme/lv_4 2024-04-15T21:06:23.796 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.b/config 2024-04-15T21:06:23.905 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:23 smithi151 ceph-mon[31870]: osdmap e14: 2 total, 2 up, 2 in 2024-04-15T21:06:24.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:23 smithi050 ceph-mon[30310]: osdmap e14: 2 total, 2 up, 2 in 2024-04-15T21:06:24.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:23 smithi174 ceph-mon[32022]: osdmap e14: 2 total, 2 up, 2 in 2024-04-15T21:06:24.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:24 smithi151 ceph-mon[31870]: pgmap v67: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:25.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:24 smithi050 ceph-mon[30310]: pgmap v67: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:25.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:24 smithi174 ceph-mon[32022]: pgmap v67: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:26.047 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:25 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:06:26.047 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:25 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:06:26.047 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:25 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:26.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:25 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:06:26.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:25 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:06:26.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:25 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:26.097 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:25 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:06:26.097 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:25 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:06:26.097 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:25 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:27.035 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:26 smithi151 ceph-mon[31870]: pgmap v68: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:27.035 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:26 smithi151 ceph-mon[31870]: from='client.24146 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi151:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:06:27.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:26 smithi050 ceph-mon[30310]: pgmap v68: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:27.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:26 smithi050 ceph-mon[30310]: from='client.24146 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi151:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:06:27.144 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:26 smithi174 ceph-mon[32022]: pgmap v68: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:27.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:26 smithi174 ceph-mon[32022]: from='client.24146 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi151:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:06:28.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:28 smithi050 ceph-mon[30310]: pgmap v69: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:28.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:28 smithi050 ceph-mon[30310]: from='client.? 172.21.15.151:0/1840676126' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "dad747ec-cf84-4840-8c86-b3a67b24201d"}]: dispatch 2024-04-15T21:06:28.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:28 smithi050 ceph-mon[30310]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "dad747ec-cf84-4840-8c86-b3a67b24201d"}]: dispatch 2024-04-15T21:06:28.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:28 smithi050 ceph-mon[30310]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "dad747ec-cf84-4840-8c86-b3a67b24201d"}]': finished 2024-04-15T21:06:28.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:28 smithi050 ceph-mon[30310]: osdmap e15: 3 total, 2 up, 3 in 2024-04-15T21:06:28.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:28 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:28.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:28 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:28.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:28 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:28.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:28 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:28.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:28 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:28.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:28 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:28.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:28 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:28.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:28 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:29.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:28 smithi174 ceph-mon[32022]: pgmap v69: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:29.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:28 smithi174 ceph-mon[32022]: from='client.? 172.21.15.151:0/1840676126' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "dad747ec-cf84-4840-8c86-b3a67b24201d"}]: dispatch 2024-04-15T21:06:29.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:28 smithi174 ceph-mon[32022]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "dad747ec-cf84-4840-8c86-b3a67b24201d"}]: dispatch 2024-04-15T21:06:29.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:28 smithi174 ceph-mon[32022]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "dad747ec-cf84-4840-8c86-b3a67b24201d"}]': finished 2024-04-15T21:06:29.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:28 smithi174 ceph-mon[32022]: osdmap e15: 3 total, 2 up, 3 in 2024-04-15T21:06:29.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:28 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:29.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:28 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:29.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:28 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:29.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:28 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:29.147 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:28 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:29.147 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:28 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:29.147 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:28 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:29.147 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:28 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:29.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:28 smithi151 ceph-mon[31870]: pgmap v69: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:29.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:28 smithi151 ceph-mon[31870]: from='client.? 172.21.15.151:0/1840676126' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "dad747ec-cf84-4840-8c86-b3a67b24201d"}]: dispatch 2024-04-15T21:06:29.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:28 smithi151 ceph-mon[31870]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "dad747ec-cf84-4840-8c86-b3a67b24201d"}]: dispatch 2024-04-15T21:06:29.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:28 smithi151 ceph-mon[31870]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "dad747ec-cf84-4840-8c86-b3a67b24201d"}]': finished 2024-04-15T21:06:29.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:28 smithi151 ceph-mon[31870]: osdmap e15: 3 total, 2 up, 3 in 2024-04-15T21:06:29.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:28 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:29.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:28 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:29.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:28 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:29.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:28 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:29.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:28 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:29.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:28 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:29.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:28 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:29.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:28 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:29.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:29 smithi151 ceph-mon[31870]: Detected new or changed devices on smithi050 2024-04-15T21:06:29.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:29 smithi151 ceph-mon[31870]: pgmap v71: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:29.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:29 smithi151 ceph-mon[31870]: from='client.? 172.21.15.151:0/941998163' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:06:29.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:29 smithi151 ceph-mon[31870]: Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-15T21:06:30.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:29 smithi050 ceph-mon[30310]: Detected new or changed devices on smithi050 2024-04-15T21:06:30.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:29 smithi050 ceph-mon[30310]: pgmap v71: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:30.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:29 smithi050 ceph-mon[30310]: from='client.? 172.21.15.151:0/941998163' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:06:30.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:29 smithi050 ceph-mon[30310]: Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-15T21:06:30.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:29 smithi174 ceph-mon[32022]: Detected new or changed devices on smithi050 2024-04-15T21:06:30.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:29 smithi174 ceph-mon[32022]: pgmap v71: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:30.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:29 smithi174 ceph-mon[32022]: from='client.? 172.21.15.151:0/941998163' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:06:30.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:29 smithi174 ceph-mon[32022]: Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-15T21:06:31.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:31.087 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:31.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:31.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.088 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:31.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:31.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:31.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:31.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:31.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:31.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:31.961 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:31 smithi151 ceph-mon[31870]: pgmap v72: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:31.961 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:31 smithi151 ceph-mon[31870]: Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-15T21:06:31.961 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:31 smithi151 ceph-mon[31870]: Cluster is now healthy 2024-04-15T21:06:32.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:31 smithi050 ceph-mon[30310]: pgmap v72: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:32.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:31 smithi050 ceph-mon[30310]: Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-15T21:06:32.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:31 smithi050 ceph-mon[30310]: Cluster is now healthy 2024-04-15T21:06:32.144 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:31 smithi174 ceph-mon[32022]: pgmap v72: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:32.144 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:31 smithi174 ceph-mon[32022]: Health check cleared: CEPHADM_STRAY_DAEMON (was: 1 stray daemon(s) not managed by cephadm) 2024-04-15T21:06:32.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:31 smithi174 ceph-mon[32022]: Cluster is now healthy 2024-04-15T21:06:33.868 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:33 smithi151 ceph-mon[31870]: pgmap v73: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:33.946 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:33 smithi050 ceph-mon[30310]: pgmap v73: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:34.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:33 smithi174 ceph-mon[32022]: pgmap v73: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:35.854 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:35 smithi050 ceph-mon[30310]: pgmap v74: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:36.118 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:35 smithi151 ceph-mon[31870]: pgmap v74: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:36.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:35 smithi174 ceph-mon[32022]: pgmap v74: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:37.071 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:36 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T21:06:37.071 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:36 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:37.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:36 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T21:06:37.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:36 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:37.338 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:36 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T21:06:37.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:36 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:38.052 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:37 smithi151 ceph-mon[31870]: pgmap v75: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:38.052 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:37 smithi151 ceph-mon[31870]: Deploying daemon osd.2 on smithi151 2024-04-15T21:06:38.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:37 smithi174 ceph-mon[32022]: pgmap v75: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:38.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:37 smithi174 ceph-mon[32022]: Deploying daemon osd.2 on smithi151 2024-04-15T21:06:38.338 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:37 smithi050 ceph-mon[30310]: pgmap v75: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:38.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:37 smithi050 ceph-mon[30310]: Deploying daemon osd.2 on smithi151 2024-04-15T21:06:39.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:39 smithi151 ceph-mon[31870]: pgmap v76: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:40.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:39 smithi174 ceph-mon[32022]: pgmap v76: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:40.338 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:39 smithi050 ceph-mon[30310]: pgmap v76: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:41.888 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:41 smithi174 ceph-mon[32022]: pgmap v77: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:41.888 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:41 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:41.888 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:41 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:41.888 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:41 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:41.888 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:41 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:41.888 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:41 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:41.888 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:41 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:41.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:41 smithi151 ceph-mon[31870]: pgmap v77: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:41.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:41 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:41.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:41 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:41.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:41 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:41.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:41 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:41.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:41 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:41.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:41 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:42.141 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:41 smithi050 ceph-mon[30310]: pgmap v77: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:42.141 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:41 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:42.141 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:41 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:42.141 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:41 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:42.141 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:41 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:42.141 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:41 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:42.141 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:41 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:43.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:43 smithi151 ceph-mon[31870]: pgmap v78: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:43.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:43 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:43.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:43 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:43.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:43 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:43.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:43 smithi050 ceph-mon[30310]: pgmap v78: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:43.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:43 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:43.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:43 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:43.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:43 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:43.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:43 smithi174 ceph-mon[32022]: pgmap v78: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:43.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:43 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:43.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:43 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:43.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:43 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:44.563 INFO:teuthology.orchestra.run.smithi151.stdout:Created osd(s) 2 on host 'smithi151' 2024-04-15T21:06:45.169 DEBUG:teuthology.orchestra.run.smithi151:osd.2> sudo journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.2.service 2024-04-15T21:06:45.172 INFO:tasks.cephadm:Deploying osd.3 on smithi151 with /dev/vg_nvme/lv_3... 2024-04-15T21:06:45.173 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-15T21:06:45.450 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.b/config 2024-04-15T21:06:45.794 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:45 smithi151 ceph-mon[31870]: pgmap v79: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:45.795 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:45.795 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:45.795 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:45 smithi151 ceph-mon[31870]: from='osd.2 [v2:172.21.15.151:6800/564685781,v1:172.21.15.151:6801/564685781]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T21:06:45.795 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:45 smithi151 ceph-mon[31870]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T21:06:45.795 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:45.795 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:06:45.795 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:45 smithi151 ceph-mon[31870]: Adjusting osd_memory_target on smithi151 to 16064M 2024-04-15T21:06:45.795 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:45.795 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:45.795 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:45.795 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:45.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:45 smithi050 ceph-mon[30310]: pgmap v79: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:45.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:45.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:45.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:45 smithi050 ceph-mon[30310]: from='osd.2 [v2:172.21.15.151:6800/564685781,v1:172.21.15.151:6801/564685781]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T21:06:45.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:45 smithi050 ceph-mon[30310]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T21:06:45.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:45.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:06:45.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:45 smithi050 ceph-mon[30310]: Adjusting osd_memory_target on smithi151 to 16064M 2024-04-15T21:06:45.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:45.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:45.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:45.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:45.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:45 smithi174 ceph-mon[32022]: pgmap v79: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:45.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:45 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:45.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:45 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:45.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:45 smithi174 ceph-mon[32022]: from='osd.2 [v2:172.21.15.151:6800/564685781,v1:172.21.15.151:6801/564685781]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T21:06:45.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:45 smithi174 ceph-mon[32022]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-04-15T21:06:45.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:45 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:45.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:45 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:06:45.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:45 smithi174 ceph-mon[32022]: Adjusting osd_memory_target on smithi151 to 16064M 2024-04-15T21:06:45.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:45 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:45.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:45 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:45.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:45 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:45.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:45 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:46.663 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:46 smithi151 ceph-mon[31870]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-15T21:06:46.663 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:46 smithi151 ceph-mon[31870]: osdmap e16: 3 total, 2 up, 3 in 2024-04-15T21:06:46.663 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:46 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:46.663 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:46 smithi151 ceph-mon[31870]: from='osd.2 [v2:172.21.15.151:6800/564685781,v1:172.21.15.151:6801/564685781]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]: dispatch 2024-04-15T21:06:46.663 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:46 smithi151 ceph-mon[31870]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]: dispatch 2024-04-15T21:06:46.664 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:06:46 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2[37593]: 2024-04-15T21:06:46.550+0000 7f0bbc70d700 -1 osd.2 0 waiting for initial osdmap 2024-04-15T21:06:46.664 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:06:46 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2[37593]: 2024-04-15T21:06:46.552+0000 7f0bb8500700 -1 osd.2 17 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-15T21:06:46.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:46 smithi050 ceph-mon[30310]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-15T21:06:46.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:46 smithi050 ceph-mon[30310]: osdmap e16: 3 total, 2 up, 3 in 2024-04-15T21:06:46.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:46 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:46.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:46 smithi050 ceph-mon[30310]: from='osd.2 [v2:172.21.15.151:6800/564685781,v1:172.21.15.151:6801/564685781]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]: dispatch 2024-04-15T21:06:46.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:46 smithi050 ceph-mon[30310]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]: dispatch 2024-04-15T21:06:46.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:46 smithi174 ceph-mon[32022]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-04-15T21:06:46.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:46 smithi174 ceph-mon[32022]: osdmap e16: 3 total, 2 up, 3 in 2024-04-15T21:06:46.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:46 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:46.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:46 smithi174 ceph-mon[32022]: from='osd.2 [v2:172.21.15.151:6800/564685781,v1:172.21.15.151:6801/564685781]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]: dispatch 2024-04-15T21:06:46.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:46 smithi174 ceph-mon[32022]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]: dispatch 2024-04-15T21:06:47.246 INFO:teuthology.orchestra.run.smithi151.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-15T21:06:47.246 INFO:teuthology.orchestra.run.smithi151.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-15T21:06:47.246 INFO:teuthology.orchestra.run.smithi151.stderr: stderr: 10+0 records in 2024-04-15T21:06:47.246 INFO:teuthology.orchestra.run.smithi151.stderr:10+0 records out 2024-04-15T21:06:47.246 INFO:teuthology.orchestra.run.smithi151.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0127555 s, 822 MB/s 2024-04-15T21:06:47.246 INFO:teuthology.orchestra.run.smithi151.stderr:--> Zapping successful for: 2024-04-15T21:06:47.789 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:47 smithi151 ceph-mon[31870]: pgmap v81: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:47.789 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:47 smithi151 ceph-mon[31870]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-04-15T21:06:47.789 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:47 smithi151 ceph-mon[31870]: osdmap e17: 3 total, 2 up, 3 in 2024-04-15T21:06:47.789 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:47 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:47.789 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:47 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:47.813 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi151:vg_nvme/lv_3 2024-04-15T21:06:47.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:47 smithi050 ceph-mon[30310]: pgmap v81: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:47.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:47 smithi050 ceph-mon[30310]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-04-15T21:06:47.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:47 smithi050 ceph-mon[30310]: osdmap e17: 3 total, 2 up, 3 in 2024-04-15T21:06:47.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:47.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:47 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:47.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:47 smithi174 ceph-mon[32022]: pgmap v81: 0 pgs: ; 0 B data, 57 MiB used, 179 GiB / 179 GiB avail 2024-04-15T21:06:47.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:47 smithi174 ceph-mon[32022]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-04-15T21:06:47.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:47 smithi174 ceph-mon[32022]: osdmap e17: 3 total, 2 up, 3 in 2024-04-15T21:06:47.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:47 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:47.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:47 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:48.052 INFO:teuthology.orchestra.run.smithi151.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.b/config 2024-04-15T21:06:48.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:48 smithi151 ceph-mon[31870]: purged_snaps scrub starts 2024-04-15T21:06:48.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:48 smithi151 ceph-mon[31870]: purged_snaps scrub ok 2024-04-15T21:06:48.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:48 smithi151 ceph-mon[31870]: osd.2 [v2:172.21.15.151:6800/564685781,v1:172.21.15.151:6801/564685781] boot 2024-04-15T21:06:48.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:48 smithi151 ceph-mon[31870]: osdmap e18: 3 total, 3 up, 3 in 2024-04-15T21:06:48.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:48 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:48.827 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:48 smithi050 ceph-mon[30310]: purged_snaps scrub starts 2024-04-15T21:06:48.827 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:48 smithi050 ceph-mon[30310]: purged_snaps scrub ok 2024-04-15T21:06:48.827 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:48 smithi050 ceph-mon[30310]: osd.2 [v2:172.21.15.151:6800/564685781,v1:172.21.15.151:6801/564685781] boot 2024-04-15T21:06:48.827 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:48 smithi050 ceph-mon[30310]: osdmap e18: 3 total, 3 up, 3 in 2024-04-15T21:06:48.827 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:48 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:48.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:48 smithi174 ceph-mon[32022]: purged_snaps scrub starts 2024-04-15T21:06:48.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:48 smithi174 ceph-mon[32022]: purged_snaps scrub ok 2024-04-15T21:06:48.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:48 smithi174 ceph-mon[32022]: osd.2 [v2:172.21.15.151:6800/564685781,v1:172.21.15.151:6801/564685781] boot 2024-04-15T21:06:48.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:48 smithi174 ceph-mon[32022]: osdmap e18: 3 total, 3 up, 3 in 2024-04-15T21:06:48.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:48 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-04-15T21:06:49.803 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:49 smithi151 ceph-mon[31870]: pgmap v84: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:49.803 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:49 smithi151 ceph-mon[31870]: osdmap e19: 3 total, 3 up, 3 in 2024-04-15T21:06:49.803 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:49 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:49.803 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:49 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:49.803 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:49 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:49.803 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:49 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T21:06:49.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:49 smithi050 ceph-mon[30310]: pgmap v84: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:49.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:49 smithi050 ceph-mon[30310]: osdmap e19: 3 total, 3 up, 3 in 2024-04-15T21:06:49.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:49 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:49.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:49 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:49.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:49 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:49.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:49 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T21:06:49.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:49 smithi174 ceph-mon[32022]: pgmap v84: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:49.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:49 smithi174 ceph-mon[32022]: osdmap e19: 3 total, 3 up, 3 in 2024-04-15T21:06:49.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:49 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:49.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:49 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:49.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:49 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:49.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:49 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T21:06:50.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:50 smithi151 ceph-mon[31870]: from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi151:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:06:50.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:06:50.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:06:50.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:50.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-04-15T21:06:50.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:50 smithi151 ceph-mon[31870]: osdmap e20: 3 total, 3 up, 3 in 2024-04-15T21:06:50.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-15T21:06:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:50 smithi050 ceph-mon[30310]: from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi151:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:06:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:06:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:06:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-04-15T21:06:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:50 smithi050 ceph-mon[30310]: osdmap e20: 3 total, 3 up, 3 in 2024-04-15T21:06:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-15T21:06:50.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:50 smithi174 ceph-mon[32022]: from='client.24173 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi151:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:06:50.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:06:50.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:06:50.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:50.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-04-15T21:06:50.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:50 smithi174 ceph-mon[32022]: osdmap e20: 3 total, 3 up, 3 in 2024-04-15T21:06:50.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2024-04-15T21:06:51.789 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39430]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-15T21:06:51.789 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39430]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T21:06:51.790 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39430]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T21:06:51.790 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39430]: pam_unix(sudo:session): session closed for user root 2024-04-15T21:06:51.790 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39433]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-15T21:06:51.790 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39433]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T21:06:51.790 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39433]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T21:06:51.790 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39433]: pam_unix(sudo:session): session closed for user root 2024-04-15T21:06:51.790 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: pgmap v86: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:51.790 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.790 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.790 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.790 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:51.791 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:51.791 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:51.791 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.791 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-15T21:06:51.791 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: osdmap e21: 3 total, 3 up, 3 in 2024-04-15T21:06:51.791 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.791 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.791 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.791 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:51.791 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:51.791 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:51.792 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.802 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48189]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-15T21:06:51.803 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48189]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T21:06:51.803 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48189]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T21:06:51.806 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48189]: pam_unix(sudo:session): session closed for user root 2024-04-15T21:06:51.806 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48192]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-15T21:06:51.806 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48192]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T21:06:51.806 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48192]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T21:06:51.806 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48192]: pam_unix(sudo:session): session closed for user root 2024-04-15T21:06:51.807 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: pgmap v86: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:51.807 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.807 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.807 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.807 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:51.807 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:51.807 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:51.807 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.807 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-15T21:06:51.807 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: osdmap e21: 3 total, 3 up, 3 in 2024-04-15T21:06:51.807 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.808 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.808 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.808 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:51.808 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:51.808 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:51.808 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.808 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48201]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-15T21:06:51.808 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48201]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T21:06:51.808 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48201]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T21:06:51.808 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48201]: pam_unix(sudo:session): session closed for user root 2024-04-15T21:06:51.808 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48204]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-15T21:06:51.808 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48195]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-15T21:06:51.809 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48195]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T21:06:51.809 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48195]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T21:06:51.809 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48195]: pam_unix(sudo:session): session closed for user root 2024-04-15T21:06:51.809 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48198]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-15T21:06:51.809 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48198]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T21:06:51.809 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48198]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T21:06:51.809 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48198]: pam_unix(sudo:session): session closed for user root 2024-04-15T21:06:51.820 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: pgmap v86: 0 pgs: ; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:51.820 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.820 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.820 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.821 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:51.821 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:51.821 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:51.821 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.821 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-04-15T21:06:51.821 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: osdmap e21: 3 total, 3 up, 3 in 2024-04-15T21:06:51.821 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.821 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.821 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:51.821 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:06:51.821 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:06:51.821 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:06:51.821 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:52.076 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39457]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-15T21:06:52.076 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39457]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T21:06:52.076 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39457]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T21:06:52.076 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39457]: pam_unix(sudo:session): session closed for user root 2024-04-15T21:06:52.077 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39460]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-15T21:06:52.077 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39460]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T21:06:52.077 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39460]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T21:06:52.077 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:51 smithi151 sudo[39460]: pam_unix(sudo:session): session closed for user root 2024-04-15T21:06:52.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48204]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T21:06:52.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48204]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T21:06:52.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:51 smithi050 sudo[48204]: pam_unix(sudo:session): session closed for user root 2024-04-15T21:06:52.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 sudo[35582]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2024-04-15T21:06:52.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 sudo[35582]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T21:06:52.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 sudo[35582]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T21:06:52.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 sudo[35582]: pam_unix(sudo:session): session closed for user root 2024-04-15T21:06:52.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 sudo[35585]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme intel smart-log-add --json /dev/nvme0n1 2024-04-15T21:06:52.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 sudo[35585]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2024-04-15T21:06:52.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 sudo[35585]: pam_unix(sudo:session): session opened for user root by (uid=167) 2024-04-15T21:06:52.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:51 smithi174 sudo[35585]: pam_unix(sudo:session): session closed for user root 2024-04-15T21:06:52.959 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: Detected new or changed devices on smithi151 2024-04-15T21:06:52.959 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: pgmap v88: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: pgmap v90: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:06:52.960 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:52.961 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:06:52.961 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:06:52.961 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:06:52.961 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:06:52.961 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:06:52.961 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:52 smithi151 ceph-mon[31870]: osdmap e22: 3 total, 3 up, 3 in 2024-04-15T21:06:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: Detected new or changed devices on smithi151 2024-04-15T21:06:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: pgmap v88: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: pgmap v90: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:06:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:06:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:06:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:06:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:06:53.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:06:53.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:06:53.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:06:53.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:06:53.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:06:53.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:53.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:06:53.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:06:53.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:06:53.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:06:53.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:06:53.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:52 smithi050 ceph-mon[30310]: osdmap e22: 3 total, 3 up, 3 in 2024-04-15T21:06:53.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: Detected new or changed devices on smithi151 2024-04-15T21:06:53.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: pgmap v88: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:53.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: pgmap v90: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:53.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:53.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:53.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:06:53.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:06:53.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:06:53.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:06:53.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:06:53.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:06:53.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:06:53.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:06:53.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:06:53.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:06:53.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:06:53.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-04-15T21:06:53.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:06:53.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:06:53.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2024-04-15T21:06:53.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-04-15T21:06:53.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:52 smithi174 ceph-mon[32022]: osdmap e22: 3 total, 3 up, 3 in 2024-04-15T21:06:53.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:53 smithi151 ceph-mon[31870]: from='client.? 172.21.15.151:0/3320142300' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7c03db05-e50d-41b3-acd1-64e380b6cd25"}]: dispatch 2024-04-15T21:06:53.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:53 smithi151 ceph-mon[31870]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7c03db05-e50d-41b3-acd1-64e380b6cd25"}]: dispatch 2024-04-15T21:06:53.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:53 smithi151 ceph-mon[31870]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7c03db05-e50d-41b3-acd1-64e380b6cd25"}]': finished 2024-04-15T21:06:53.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:53 smithi151 ceph-mon[31870]: osdmap e23: 4 total, 3 up, 4 in 2024-04-15T21:06:53.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:53 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:06:54.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:53 smithi050 ceph-mon[30310]: from='client.? 172.21.15.151:0/3320142300' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7c03db05-e50d-41b3-acd1-64e380b6cd25"}]: dispatch 2024-04-15T21:06:54.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:53 smithi050 ceph-mon[30310]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7c03db05-e50d-41b3-acd1-64e380b6cd25"}]: dispatch 2024-04-15T21:06:54.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:53 smithi050 ceph-mon[30310]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7c03db05-e50d-41b3-acd1-64e380b6cd25"}]': finished 2024-04-15T21:06:54.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:53 smithi050 ceph-mon[30310]: osdmap e23: 4 total, 3 up, 4 in 2024-04-15T21:06:54.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:53 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:06:54.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:53 smithi174 ceph-mon[32022]: from='client.? 172.21.15.151:0/3320142300' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7c03db05-e50d-41b3-acd1-64e380b6cd25"}]: dispatch 2024-04-15T21:06:54.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:53 smithi174 ceph-mon[32022]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7c03db05-e50d-41b3-acd1-64e380b6cd25"}]: dispatch 2024-04-15T21:06:54.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:53 smithi174 ceph-mon[32022]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7c03db05-e50d-41b3-acd1-64e380b6cd25"}]': finished 2024-04-15T21:06:54.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:53 smithi174 ceph-mon[32022]: osdmap e23: 4 total, 3 up, 4 in 2024-04-15T21:06:54.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:53 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:06:54.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:54 smithi050 ceph-mon[30310]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:54.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:54 smithi050 ceph-mon[30310]: from='client.? 172.21.15.151:0/4020569267' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:06:54.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:54 smithi050 ceph-mon[30310]: mgrmap e15: a(active, since 2m), standbys: b 2024-04-15T21:06:54.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:54 smithi151 ceph-mon[31870]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:54.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:54 smithi151 ceph-mon[31870]: from='client.? 172.21.15.151:0/4020569267' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:06:54.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:54 smithi151 ceph-mon[31870]: mgrmap e15: a(active, since 2m), standbys: b 2024-04-15T21:06:55.144 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:54 smithi174 ceph-mon[32022]: pgmap v93: 1 pgs: 1 active+clean; 577 KiB data, 86 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:55.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:54 smithi174 ceph-mon[32022]: from='client.? 172.21.15.151:0/4020569267' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:06:55.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:54 smithi174 ceph-mon[32022]: mgrmap e15: a(active, since 2m), standbys: b 2024-04-15T21:06:56.824 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:56 smithi151 ceph-mon[31870]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:56.947 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:56 smithi174 ceph-mon[32022]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:57.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:56 smithi050 ceph-mon[30310]: pgmap v94: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:58.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:06:58 smithi151 ceph-mon[31870]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:59.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:06:58 smithi050 ceph-mon[30310]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:06:59.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:06:58 smithi174 ceph-mon[32022]: pgmap v95: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:00.884 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:00 smithi151 ceph-mon[31870]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:00.884 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:00 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-15T21:07:00.884 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:00 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:01.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:00 smithi050 ceph-mon[30310]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:01.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:00 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-15T21:07:01.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:00 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:01.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:00 smithi174 ceph-mon[32022]: pgmap v96: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:01.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:00 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-15T21:07:01.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:00 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:01.785 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:01 smithi151 ceph-mon[31870]: Deploying daemon osd.3 on smithi151 2024-04-15T21:07:01.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:01 smithi050 ceph-mon[30310]: Deploying daemon osd.3 on smithi151 2024-04-15T21:07:01.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:01 smithi174 ceph-mon[32022]: Deploying daemon osd.3 on smithi151 2024-04-15T21:07:02.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:02 smithi151 ceph-mon[31870]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:02.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:02 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:02.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:02 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:02.786 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:02 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:02.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:02 smithi174 ceph-mon[32022]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:02.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:02 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:02.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:02 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:02.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:02 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:03.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:02 smithi050 ceph-mon[30310]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:03.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:02 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:03.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:02 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:03.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:02 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:04.794 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:04 smithi151 ceph-mon[31870]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:05.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:04 smithi050 ceph-mon[30310]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:05.144 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:04 smithi174 ceph-mon[32022]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:06.588 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:06 smithi050 ceph-mon[30310]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:06.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:06 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:06.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:06 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:06.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:06 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:06.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:06 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:06.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:06 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:06.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:06 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:06.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:06 smithi174 ceph-mon[32022]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:06.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:06 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:06.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:06 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:06.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:06 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:06.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:06 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:06.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:06 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:06.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:06 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:06.661 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:06 smithi151 ceph-mon[31870]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:06.661 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:06 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:06.661 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:06 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:06.661 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:06 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:06.661 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:06 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:06.661 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:06 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:06.661 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:06 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:08.435 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:08 smithi151 ceph-mon[31870]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:08.501 INFO:teuthology.orchestra.run.smithi151.stdout:Created osd(s) 3 on host 'smithi151' 2024-04-15T21:07:08.588 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:08 smithi050 ceph-mon[30310]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:08.644 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:08 smithi174 ceph-mon[32022]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:09.049 DEBUG:teuthology.orchestra.run.smithi151:osd.3> sudo journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.3.service 2024-04-15T21:07:09.052 INFO:tasks.cephadm:Deploying osd.4 on smithi174 with /dev/vg_nvme/lv_4... 2024-04-15T21:07:09.052 DEBUG:teuthology.orchestra.run.smithi174:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_4 2024-04-15T21:07:09.302 INFO:teuthology.orchestra.run.smithi174.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T21:07:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='osd.3 [v2:172.21.15.151:6808/2937719624,v1:172.21.15.151:6809/2937719624]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-15T21:07:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-15T21:07:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: Adjusting osd_memory_target on smithi151 to 8032M 2024-04-15T21:07:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:09.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:09 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='osd.3 [v2:172.21.15.151:6808/2937719624,v1:172.21.15.151:6809/2937719624]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-15T21:07:09.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-15T21:07:09.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:09.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: Adjusting osd_memory_target on smithi151 to 8032M 2024-04-15T21:07:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:09 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='osd.3 [v2:172.21.15.151:6808/2937719624,v1:172.21.15.151:6809/2937719624]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-15T21:07:09.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-04-15T21:07:09.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:09.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:09.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:09.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: Adjusting osd_memory_target on smithi151 to 8032M 2024-04-15T21:07:09.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:09.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:09.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:09.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:09 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:10.429 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:10 smithi174 ceph-mon[32022]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:10.429 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:10 smithi174 ceph-mon[32022]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-15T21:07:10.429 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:10 smithi174 ceph-mon[32022]: osdmap e24: 4 total, 3 up, 4 in 2024-04-15T21:07:10.429 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:10 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:07:10.429 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:10 smithi174 ceph-mon[32022]: from='osd.3 [v2:172.21.15.151:6808/2937719624,v1:172.21.15.151:6809/2937719624]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]: dispatch 2024-04-15T21:07:10.429 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:10 smithi174 ceph-mon[32022]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]: dispatch 2024-04-15T21:07:10.588 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:10 smithi050 ceph-mon[30310]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:10.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:10 smithi050 ceph-mon[30310]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-15T21:07:10.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:10 smithi050 ceph-mon[30310]: osdmap e24: 4 total, 3 up, 4 in 2024-04-15T21:07:10.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:10 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:07:10.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:10 smithi050 ceph-mon[30310]: from='osd.3 [v2:172.21.15.151:6808/2937719624,v1:172.21.15.151:6809/2937719624]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]: dispatch 2024-04-15T21:07:10.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:10 smithi050 ceph-mon[30310]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]: dispatch 2024-04-15T21:07:10.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:10 smithi151 ceph-mon[31870]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:10.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:10 smithi151 ceph-mon[31870]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-04-15T21:07:10.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:10 smithi151 ceph-mon[31870]: osdmap e24: 4 total, 3 up, 4 in 2024-04-15T21:07:10.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:10 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:07:10.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:10 smithi151 ceph-mon[31870]: from='osd.3 [v2:172.21.15.151:6808/2937719624,v1:172.21.15.151:6809/2937719624]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]: dispatch 2024-04-15T21:07:10.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:10 smithi151 ceph-mon[31870]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]: dispatch 2024-04-15T21:07:11.083 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:07:10 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3[41518]: 2024-04-15T21:07:10.796+0000 7f7a249f8700 -1 osd.3 0 waiting for initial osdmap 2024-04-15T21:07:11.083 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:07:10 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3[41518]: 2024-04-15T21:07:10.799+0000 7f7a1c7e3700 -1 osd.3 25 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-15T21:07:11.271 INFO:teuthology.orchestra.run.smithi174.stderr:--> Zapping: /dev/vg_nvme/lv_4 2024-04-15T21:07:11.271 INFO:teuthology.orchestra.run.smithi174.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_4 bs=1M count=10 conv=fsync 2024-04-15T21:07:11.271 INFO:teuthology.orchestra.run.smithi174.stderr: stderr: 10+0 records in 2024-04-15T21:07:11.271 INFO:teuthology.orchestra.run.smithi174.stderr:10+0 records out 2024-04-15T21:07:11.271 INFO:teuthology.orchestra.run.smithi174.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0118719 s, 883 MB/s 2024-04-15T21:07:11.271 INFO:teuthology.orchestra.run.smithi174.stderr:--> Zapping successful for: 2024-04-15T21:07:11.585 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-04-15T21:07:11.585 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: osdmap e25: 4 total, 3 up, 4 in 2024-04-15T21:07:11.585 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:07:11.585 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:07:11.585 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: from='osd.3 ' entity='osd.3' 2024-04-15T21:07:11.585 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:11.585 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:11.585 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:11.585 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:11.585 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:11.585 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:11.585 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:11.586 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: osd.3 [v2:172.21.15.151:6808/2937719624,v1:172.21.15.151:6809/2937719624] boot 2024-04-15T21:07:11.586 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: osdmap e26: 4 total, 4 up, 4 in 2024-04-15T21:07:11.586 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:11 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:07:11.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-04-15T21:07:11.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: osdmap e25: 4 total, 3 up, 4 in 2024-04-15T21:07:11.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:07:11.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:07:11.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: from='osd.3 ' entity='osd.3' 2024-04-15T21:07:11.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:11.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:11.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:11.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:11.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:11.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:11.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:11.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: osd.3 [v2:172.21.15.151:6808/2937719624,v1:172.21.15.151:6809/2937719624] boot 2024-04-15T21:07:11.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: osdmap e26: 4 total, 4 up, 4 in 2024-04-15T21:07:11.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:11 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:07:11.753 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi151", "root=default"]}]': finished 2024-04-15T21:07:11.753 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: osdmap e25: 4 total, 3 up, 4 in 2024-04-15T21:07:11.753 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:07:11.753 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:07:11.753 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: from='osd.3 ' entity='osd.3' 2024-04-15T21:07:11.753 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:11.753 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:11.753 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:11.753 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:11.754 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:11.754 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:11.754 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:11.754 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: osd.3 [v2:172.21.15.151:6808/2937719624,v1:172.21.15.151:6809/2937719624] boot 2024-04-15T21:07:11.754 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: osdmap e26: 4 total, 4 up, 4 in 2024-04-15T21:07:11.754 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:11 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-04-15T21:07:11.920 DEBUG:teuthology.orchestra.run.smithi174:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi174:vg_nvme/lv_4 2024-04-15T21:07:12.158 INFO:teuthology.orchestra.run.smithi174.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T21:07:12.537 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:12 smithi174 ceph-mon[32022]: purged_snaps scrub starts 2024-04-15T21:07:12.538 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:12 smithi174 ceph-mon[32022]: purged_snaps scrub ok 2024-04-15T21:07:12.538 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:12 smithi174 ceph-mon[32022]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:12.538 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:12 smithi174 ceph-mon[32022]: Detected new or changed devices on smithi151 2024-04-15T21:07:12.538 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:12 smithi174 ceph-mon[32022]: osdmap e27: 4 total, 4 up, 4 in 2024-04-15T21:07:12.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:12 smithi151 ceph-mon[31870]: purged_snaps scrub starts 2024-04-15T21:07:12.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:12 smithi151 ceph-mon[31870]: purged_snaps scrub ok 2024-04-15T21:07:12.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:12 smithi151 ceph-mon[31870]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:12.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:12 smithi151 ceph-mon[31870]: Detected new or changed devices on smithi151 2024-04-15T21:07:12.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:12 smithi151 ceph-mon[31870]: osdmap e27: 4 total, 4 up, 4 in 2024-04-15T21:07:12.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:12 smithi050 ceph-mon[30310]: purged_snaps scrub starts 2024-04-15T21:07:12.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:12 smithi050 ceph-mon[30310]: purged_snaps scrub ok 2024-04-15T21:07:12.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:12 smithi050 ceph-mon[30310]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 87 MiB used, 268 GiB / 268 GiB avail 2024-04-15T21:07:12.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:12 smithi050 ceph-mon[30310]: Detected new or changed devices on smithi151 2024-04-15T21:07:12.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:12 smithi050 ceph-mon[30310]: osdmap e27: 4 total, 4 up, 4 in 2024-04-15T21:07:13.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:13 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:13.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:13 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:13.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:13 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:13.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:13 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:13.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:13 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:13.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:13 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:13.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:13 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:13.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:13 smithi174 ceph-mon[32022]: osdmap e28: 4 total, 4 up, 4 in 2024-04-15T21:07:13.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:13.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:13 smithi151 ceph-mon[31870]: osdmap e28: 4 total, 4 up, 4 in 2024-04-15T21:07:13.743 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:13 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:13.744 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:13 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:13.744 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:13 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:13.744 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:13 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:13.744 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:13 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:13.744 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:13 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:13.744 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:13 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:13.744 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:13 smithi050 ceph-mon[30310]: osdmap e28: 4 total, 4 up, 4 in 2024-04-15T21:07:14.680 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:14 smithi174 ceph-mon[32022]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 225 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:14.681 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:14 smithi174 ceph-mon[32022]: from='client.24175 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi174:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:07:14.681 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:14 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:07:14.681 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:14 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:07:14.681 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:14 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:14.681 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:14 smithi174 ceph-mon[32022]: osdmap e29: 4 total, 4 up, 4 in 2024-04-15T21:07:14.712 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:14 smithi050 ceph-mon[30310]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 225 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:14.712 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:14 smithi050 ceph-mon[30310]: from='client.24175 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi174:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:07:14.712 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:14 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:07:14.712 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:14 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:07:14.712 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:14 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:14.712 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:14 smithi050 ceph-mon[30310]: osdmap e29: 4 total, 4 up, 4 in 2024-04-15T21:07:14.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:14 smithi151 ceph-mon[31870]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 225 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:14.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:14 smithi151 ceph-mon[31870]: from='client.24175 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi174:vg_nvme/lv_4", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:07:14.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:14 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:07:14.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:14 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:07:14.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:14 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:14.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:14 smithi151 ceph-mon[31870]: osdmap e29: 4 total, 4 up, 4 in 2024-04-15T21:07:16.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:16 smithi151 ceph-mon[31870]: pgmap v110: 1 pgs: 1 remapped+peering; 577 KiB data, 224 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:16.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:16 smithi151 ceph-mon[31870]: osdmap e30: 4 total, 4 up, 4 in 2024-04-15T21:07:16.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:16 smithi174 ceph-mon[32022]: pgmap v110: 1 pgs: 1 remapped+peering; 577 KiB data, 224 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:16.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:16 smithi174 ceph-mon[32022]: osdmap e30: 4 total, 4 up, 4 in 2024-04-15T21:07:16.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:16 smithi050 ceph-mon[30310]: pgmap v110: 1 pgs: 1 remapped+peering; 577 KiB data, 224 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:16.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:16 smithi050 ceph-mon[30310]: osdmap e30: 4 total, 4 up, 4 in 2024-04-15T21:07:17.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:17 smithi151 ceph-mon[31870]: from='client.? 172.21.15.174:0/2920900038' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3e5cee99-61a3-4136-b1fe-e1739f2579fc"}]: dispatch 2024-04-15T21:07:17.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:17 smithi151 ceph-mon[31870]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3e5cee99-61a3-4136-b1fe-e1739f2579fc"}]: dispatch 2024-04-15T21:07:17.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:17 smithi151 ceph-mon[31870]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3e5cee99-61a3-4136-b1fe-e1739f2579fc"}]': finished 2024-04-15T21:07:17.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:17 smithi151 ceph-mon[31870]: osdmap e31: 5 total, 4 up, 5 in 2024-04-15T21:07:17.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:17 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:17.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:17 smithi151 ceph-mon[31870]: from='client.? 172.21.15.174:0/1067413686' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:07:17.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:17 smithi174 ceph-mon[32022]: from='client.? 172.21.15.174:0/2920900038' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3e5cee99-61a3-4136-b1fe-e1739f2579fc"}]: dispatch 2024-04-15T21:07:17.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:17 smithi174 ceph-mon[32022]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3e5cee99-61a3-4136-b1fe-e1739f2579fc"}]: dispatch 2024-04-15T21:07:17.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:17 smithi174 ceph-mon[32022]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3e5cee99-61a3-4136-b1fe-e1739f2579fc"}]': finished 2024-04-15T21:07:17.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:17 smithi174 ceph-mon[32022]: osdmap e31: 5 total, 4 up, 5 in 2024-04-15T21:07:17.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:17 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:17.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:17 smithi174 ceph-mon[32022]: from='client.? 172.21.15.174:0/1067413686' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:07:17.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:17 smithi050 ceph-mon[30310]: from='client.? 172.21.15.174:0/2920900038' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3e5cee99-61a3-4136-b1fe-e1739f2579fc"}]: dispatch 2024-04-15T21:07:17.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:17 smithi050 ceph-mon[30310]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3e5cee99-61a3-4136-b1fe-e1739f2579fc"}]: dispatch 2024-04-15T21:07:17.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:17 smithi050 ceph-mon[30310]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3e5cee99-61a3-4136-b1fe-e1739f2579fc"}]': finished 2024-04-15T21:07:17.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:17 smithi050 ceph-mon[30310]: osdmap e31: 5 total, 4 up, 5 in 2024-04-15T21:07:17.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:17 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:17.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:17 smithi050 ceph-mon[30310]: from='client.? 172.21.15.174:0/1067413686' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:07:18.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:18 smithi050 ceph-mon[30310]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-15T21:07:18.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:18 smithi174 ceph-mon[32022]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-15T21:07:18.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:18 smithi151 ceph-mon[31870]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-04-15T21:07:20.819 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:20 smithi174 ceph-mon[32022]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-04-15T21:07:20.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:20 smithi050 ceph-mon[30310]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-04-15T21:07:20.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:20 smithi151 ceph-mon[31870]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-04-15T21:07:22.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:22 smithi174 ceph-mon[32022]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-04-15T21:07:22.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:22 smithi050 ceph-mon[30310]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-04-15T21:07:22.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:22 smithi151 ceph-mon[31870]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-04-15T21:07:23.903 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:23 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:23.904 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:23 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:23.904 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:23 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:23.904 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:23 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-15T21:07:23.904 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:23 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:24.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:23 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:24.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:23 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:24.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:23 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:24.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:23 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-15T21:07:24.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:23 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:24.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:23 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:24.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:23 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:24.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:23 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:24.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:23 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-04-15T21:07:24.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:23 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:25.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:24 smithi050 ceph-mon[30310]: Deploying daemon osd.4 on smithi174 2024-04-15T21:07:25.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:24 smithi050 ceph-mon[30310]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T21:07:25.117 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:24 smithi174 ceph-mon[32022]: Deploying daemon osd.4 on smithi174 2024-04-15T21:07:25.117 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:24 smithi174 ceph-mon[32022]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T21:07:25.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:24 smithi151 ceph-mon[31870]: Deploying daemon osd.4 on smithi174 2024-04-15T21:07:25.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:24 smithi151 ceph-mon[31870]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T21:07:26.865 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:26 smithi174 ceph-mon[32022]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-04-15T21:07:27.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:26 smithi050 ceph-mon[30310]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-04-15T21:07:27.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:26 smithi151 ceph-mon[31870]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-04-15T21:07:29.088 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:28 smithi050 ceph-mon[30310]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:29.109 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:28 smithi174 ceph-mon[32022]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:29.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:28 smithi151 ceph-mon[31870]: pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:30.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:30 smithi151 ceph-mon[31870]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:30.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:30.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:30.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:30.500 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:30 smithi050 ceph-mon[30310]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:30.501 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:30.501 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:30.501 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:30.644 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:30 smithi174 ceph-mon[32022]: pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:30.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:30.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:30.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:31.464 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:31 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:31.465 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:31 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:31.465 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:31 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:31.465 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:31 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:31.465 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:31 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:31.465 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:31 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:31.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:31 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:31.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:31 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:31.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:31 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:31.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:31 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:31.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:31 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:31.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:31 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:31.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:31 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:31.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:31 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:31.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:31 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:31.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:31 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:31.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:31 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:31.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:31 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:32.395 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:32 smithi174 ceph-mon[32022]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:32.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:32 smithi050 ceph-mon[30310]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:32.620 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:32 smithi151 ceph-mon[31870]: pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:33.482 INFO:teuthology.orchestra.run.smithi174.stdout:Created osd(s) 4 on host 'smithi174' 2024-04-15T21:07:33.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:33 smithi050 ceph-mon[30310]: from='osd.4 [v2:172.21.15.174:6800/2214385103,v1:172.21.15.174:6801/2214385103]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-15T21:07:33.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:33 smithi050 ceph-mon[30310]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-15T21:07:33.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.844 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.844 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.844 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.844 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.844 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.844 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.844 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:33 smithi174 ceph-mon[32022]: from='osd.4 [v2:172.21.15.174:6800/2214385103,v1:172.21.15.174:6801/2214385103]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-15T21:07:33.844 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:33 smithi174 ceph-mon[32022]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-15T21:07:33.844 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.844 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:33 smithi151 ceph-mon[31870]: from='osd.4 [v2:172.21.15.174:6800/2214385103,v1:172.21.15.174:6801/2214385103]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-15T21:07:33.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:33 smithi151 ceph-mon[31870]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-04-15T21:07:33.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:33.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:34.174 DEBUG:teuthology.orchestra.run.smithi174:osd.4> sudo journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.4.service 2024-04-15T21:07:34.177 INFO:tasks.cephadm:Deploying osd.5 on smithi174 with /dev/vg_nvme/lv_3... 2024-04-15T21:07:34.177 DEBUG:teuthology.orchestra.run.smithi174:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph-volume lvm zap /dev/vg_nvme/lv_3 2024-04-15T21:07:34.455 INFO:teuthology.orchestra.run.smithi174.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T21:07:34.747 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:34 smithi174 ceph-mon[32022]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:34.748 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:34 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:34.748 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:34 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:34.748 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:34 smithi174 ceph-mon[32022]: Adjusting osd_memory_target on smithi174 to 20160M 2024-04-15T21:07:34.748 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:34 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:34.748 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:34 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:34.748 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:34 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:34.748 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:34 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:34.748 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:34 smithi174 ceph-mon[32022]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-15T21:07:34.748 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:34 smithi174 ceph-mon[32022]: osdmap e32: 5 total, 4 up, 5 in 2024-04-15T21:07:34.748 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:34 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:34.749 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:34 smithi174 ceph-mon[32022]: from='osd.4 [v2:172.21.15.174:6800/2214385103,v1:172.21.15.174:6801/2214385103]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]: dispatch 2024-04-15T21:07:34.749 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:34 smithi174 ceph-mon[32022]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]: dispatch 2024-04-15T21:07:34.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:34 smithi050 ceph-mon[30310]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:34.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:34.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:34.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:34 smithi050 ceph-mon[30310]: Adjusting osd_memory_target on smithi174 to 20160M 2024-04-15T21:07:34.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:34.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:34.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:34.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:34.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:34 smithi050 ceph-mon[30310]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-15T21:07:34.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:34 smithi050 ceph-mon[30310]: osdmap e32: 5 total, 4 up, 5 in 2024-04-15T21:07:34.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:34.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:34 smithi050 ceph-mon[30310]: from='osd.4 [v2:172.21.15.174:6800/2214385103,v1:172.21.15.174:6801/2214385103]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]: dispatch 2024-04-15T21:07:34.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:34 smithi050 ceph-mon[30310]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]: dispatch 2024-04-15T21:07:34.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:34 smithi151 ceph-mon[31870]: pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:34.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:34.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:34.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:34 smithi151 ceph-mon[31870]: Adjusting osd_memory_target on smithi174 to 20160M 2024-04-15T21:07:34.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:34.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:34.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:34.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:34.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:34 smithi151 ceph-mon[31870]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-04-15T21:07:34.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:34 smithi151 ceph-mon[31870]: osdmap e32: 5 total, 4 up, 5 in 2024-04-15T21:07:34.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:34.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:34 smithi151 ceph-mon[31870]: from='osd.4 [v2:172.21.15.174:6800/2214385103,v1:172.21.15.174:6801/2214385103]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]: dispatch 2024-04-15T21:07:34.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:34 smithi151 ceph-mon[31870]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]: dispatch 2024-04-15T21:07:35.145 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:07:35 smithi174 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4[38702]: 2024-04-15T21:07:35.074+0000 7f30b738d700 -1 osd.4 0 waiting for initial osdmap 2024-04-15T21:07:35.145 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:07:35 smithi174 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4[38702]: 2024-04-15T21:07:35.080+0000 7f30af178700 -1 osd.4 33 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-15T21:07:35.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:35 smithi174 ceph-mon[32022]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]': finished 2024-04-15T21:07:35.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:35 smithi174 ceph-mon[32022]: osdmap e33: 5 total, 4 up, 5 in 2024-04-15T21:07:35.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:35 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:35.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:35 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:35.894 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:35 smithi174 ceph-mon[32022]: from='osd.4 ' entity='osd.4' 2024-04-15T21:07:35.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:35 smithi151 ceph-mon[31870]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]': finished 2024-04-15T21:07:35.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:35 smithi151 ceph-mon[31870]: osdmap e33: 5 total, 4 up, 5 in 2024-04-15T21:07:35.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:35 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:35.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:35 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:35.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:35 smithi151 ceph-mon[31870]: from='osd.4 ' entity='osd.4' 2024-04-15T21:07:36.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:35 smithi050 ceph-mon[30310]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]': finished 2024-04-15T21:07:36.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:35 smithi050 ceph-mon[30310]: osdmap e33: 5 total, 4 up, 5 in 2024-04-15T21:07:36.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:35 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:36.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:35 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:36.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:35 smithi050 ceph-mon[30310]: from='osd.4 ' entity='osd.4' 2024-04-15T21:07:36.483 INFO:teuthology.orchestra.run.smithi174.stderr:--> Zapping: /dev/vg_nvme/lv_3 2024-04-15T21:07:36.483 INFO:teuthology.orchestra.run.smithi174.stderr:Running command: /usr/bin/dd if=/dev/zero of=/dev/vg_nvme/lv_3 bs=1M count=10 conv=fsync 2024-04-15T21:07:36.483 INFO:teuthology.orchestra.run.smithi174.stderr: stderr: 10+0 records in 2024-04-15T21:07:36.483 INFO:teuthology.orchestra.run.smithi174.stderr:10+0 records out 2024-04-15T21:07:36.483 INFO:teuthology.orchestra.run.smithi174.stderr: stderr: 10485760 bytes (10 MB, 10 MiB) copied, 0.0124302 s, 844 MB/s 2024-04-15T21:07:36.483 INFO:teuthology.orchestra.run.smithi174.stderr:--> Zapping successful for: 2024-04-15T21:07:36.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:36 smithi151 ceph-mon[31870]: purged_snaps scrub starts 2024-04-15T21:07:36.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:36 smithi151 ceph-mon[31870]: purged_snaps scrub ok 2024-04-15T21:07:36.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:36 smithi151 ceph-mon[31870]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:36.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:36 smithi151 ceph-mon[31870]: osd.4 [v2:172.21.15.174:6800/2214385103,v1:172.21.15.174:6801/2214385103] boot 2024-04-15T21:07:36.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:36 smithi151 ceph-mon[31870]: osdmap e34: 5 total, 5 up, 5 in 2024-04-15T21:07:36.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:36 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:36.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:36 smithi151 ceph-mon[31870]: osdmap e35: 5 total, 5 up, 5 in 2024-04-15T21:07:36.805 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:36 smithi174 ceph-mon[32022]: purged_snaps scrub starts 2024-04-15T21:07:36.805 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:36 smithi174 ceph-mon[32022]: purged_snaps scrub ok 2024-04-15T21:07:36.805 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:36 smithi174 ceph-mon[32022]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:36.805 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:36 smithi174 ceph-mon[32022]: osd.4 [v2:172.21.15.174:6800/2214385103,v1:172.21.15.174:6801/2214385103] boot 2024-04-15T21:07:36.805 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:36 smithi174 ceph-mon[32022]: osdmap e34: 5 total, 5 up, 5 in 2024-04-15T21:07:36.805 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:36 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:36.806 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:36 smithi174 ceph-mon[32022]: osdmap e35: 5 total, 5 up, 5 in 2024-04-15T21:07:37.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:36 smithi050 ceph-mon[30310]: purged_snaps scrub starts 2024-04-15T21:07:37.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:36 smithi050 ceph-mon[30310]: purged_snaps scrub ok 2024-04-15T21:07:37.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:36 smithi050 ceph-mon[30310]: pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 112 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:07:37.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:36 smithi050 ceph-mon[30310]: osd.4 [v2:172.21.15.174:6800/2214385103,v1:172.21.15.174:6801/2214385103] boot 2024-04-15T21:07:37.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:36 smithi050 ceph-mon[30310]: osdmap e34: 5 total, 5 up, 5 in 2024-04-15T21:07:37.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:36 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-04-15T21:07:37.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:36 smithi050 ceph-mon[30310]: osdmap e35: 5 total, 5 up, 5 in 2024-04-15T21:07:37.127 DEBUG:teuthology.orchestra.run.smithi174:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph orch daemon add osd smithi174:vg_nvme/lv_3 2024-04-15T21:07:37.369 INFO:teuthology.orchestra.run.smithi174.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.c/config 2024-04-15T21:07:38.494 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:38 smithi174 ceph-mon[32022]: pgmap v127: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:38.494 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:38 smithi174 ceph-mon[32022]: osdmap e36: 5 total, 5 up, 5 in 2024-04-15T21:07:38.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:38 smithi151 ceph-mon[31870]: pgmap v127: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:38.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:38 smithi151 ceph-mon[31870]: osdmap e36: 5 total, 5 up, 5 in 2024-04-15T21:07:38.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:38 smithi050 ceph-mon[30310]: pgmap v127: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:38.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:38 smithi050 ceph-mon[30310]: osdmap e36: 5 total, 5 up, 5 in 2024-04-15T21:07:39.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:39 smithi174 ceph-mon[32022]: osdmap e37: 5 total, 5 up, 5 in 2024-04-15T21:07:39.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:39 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:07:39.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:39 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:07:39.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:39 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:39.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:39 smithi151 ceph-mon[31870]: osdmap e37: 5 total, 5 up, 5 in 2024-04-15T21:07:39.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:39 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:07:39.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:39 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:07:39.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:39 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:39.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:39 smithi050 ceph-mon[30310]: osdmap e37: 5 total, 5 up, 5 in 2024-04-15T21:07:39.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:39 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-04-15T21:07:39.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:39 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-04-15T21:07:39.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:39 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:40.636 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:40 smithi174 ceph-mon[32022]: pgmap v130: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:40.636 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:40 smithi174 ceph-mon[32022]: from='client.24202 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi174:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:07:40.636 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:40 smithi174 ceph-mon[32022]: osdmap e38: 5 total, 5 up, 5 in 2024-04-15T21:07:40.636 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:40 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:40.636 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:40 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:40.637 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:40 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:40.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:40 smithi151 ceph-mon[31870]: pgmap v130: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:40.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:40 smithi151 ceph-mon[31870]: from='client.24202 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi174:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:07:40.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:40 smithi151 ceph-mon[31870]: osdmap e38: 5 total, 5 up, 5 in 2024-04-15T21:07:40.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:40 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:40.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:40 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:40.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:40 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:40.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:40 smithi050 ceph-mon[30310]: pgmap v130: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:40.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:40 smithi050 ceph-mon[30310]: from='client.24202 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "smithi174:vg_nvme/lv_3", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:07:40.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:40 smithi050 ceph-mon[30310]: osdmap e38: 5 total, 5 up, 5 in 2024-04-15T21:07:40.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:40 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:40.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:40 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:40.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:40 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:41.574 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:41 smithi174 ceph-mon[32022]: Detected new or changed devices on smithi174 2024-04-15T21:07:41.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:41 smithi151 ceph-mon[31870]: Detected new or changed devices on smithi174 2024-04-15T21:07:41.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:41 smithi050 ceph-mon[30310]: Detected new or changed devices on smithi174 2024-04-15T21:07:42.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:42 smithi151 ceph-mon[31870]: pgmap v132: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:42.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:42 smithi174 ceph-mon[32022]: pgmap v132: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:42.740 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:42 smithi050 ceph-mon[30310]: pgmap v132: 1 pgs: 1 remapped+peering; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:43.488 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:43 smithi174 ceph-mon[32022]: from='client.? 172.21.15.174:0/2464204142' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "38016023-9f93-4d2a-8067-772339932fc9"}]: dispatch 2024-04-15T21:07:43.488 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:43 smithi174 ceph-mon[32022]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "38016023-9f93-4d2a-8067-772339932fc9"}]: dispatch 2024-04-15T21:07:43.488 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:43 smithi174 ceph-mon[32022]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "38016023-9f93-4d2a-8067-772339932fc9"}]': finished 2024-04-15T21:07:43.488 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:43 smithi174 ceph-mon[32022]: osdmap e39: 6 total, 5 up, 6 in 2024-04-15T21:07:43.488 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:43 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:07:43.488 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:43 smithi174 ceph-mon[32022]: from='client.? 172.21.15.174:0/3218387578' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:07:43.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:43 smithi151 ceph-mon[31870]: from='client.? 172.21.15.174:0/2464204142' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "38016023-9f93-4d2a-8067-772339932fc9"}]: dispatch 2024-04-15T21:07:43.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:43 smithi151 ceph-mon[31870]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "38016023-9f93-4d2a-8067-772339932fc9"}]: dispatch 2024-04-15T21:07:43.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:43 smithi151 ceph-mon[31870]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "38016023-9f93-4d2a-8067-772339932fc9"}]': finished 2024-04-15T21:07:43.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:43 smithi151 ceph-mon[31870]: osdmap e39: 6 total, 5 up, 6 in 2024-04-15T21:07:43.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:43 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:07:43.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:43 smithi151 ceph-mon[31870]: from='client.? 172.21.15.174:0/3218387578' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:07:43.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:43 smithi050 ceph-mon[30310]: from='client.? 172.21.15.174:0/2464204142' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "38016023-9f93-4d2a-8067-772339932fc9"}]: dispatch 2024-04-15T21:07:43.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:43 smithi050 ceph-mon[30310]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "38016023-9f93-4d2a-8067-772339932fc9"}]: dispatch 2024-04-15T21:07:43.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:43 smithi050 ceph-mon[30310]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "38016023-9f93-4d2a-8067-772339932fc9"}]': finished 2024-04-15T21:07:43.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:43 smithi050 ceph-mon[30310]: osdmap e39: 6 total, 5 up, 6 in 2024-04-15T21:07:43.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:43 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:07:43.762 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:43 smithi050 ceph-mon[30310]: from='client.? 172.21.15.174:0/3218387578' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-04-15T21:07:44.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:44 smithi174 ceph-mon[32022]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-04-15T21:07:44.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:44 smithi151 ceph-mon[31870]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-04-15T21:07:44.838 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:44 smithi050 ceph-mon[30310]: pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-04-15T21:07:46.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:46 smithi151 ceph-mon[31870]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-04-15T21:07:46.742 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:46 smithi174 ceph-mon[32022]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-04-15T21:07:46.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:46 smithi050 ceph-mon[30310]: pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 85 KiB/s, 0 objects/s recovering 2024-04-15T21:07:48.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:48 smithi050 ceph-mon[30310]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T21:07:48.602 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:48 smithi174 ceph-mon[32022]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T21:07:48.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:48 smithi151 ceph-mon[31870]: pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T21:07:50.606 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:50 smithi174 ceph-mon[32022]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-04-15T21:07:50.607 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:50.607 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:50.607 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:50.607 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-15T21:07:50.607 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:50.607 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:50 smithi174 ceph-mon[32022]: Deploying daemon osd.5 on smithi174 2024-04-15T21:07:50.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:50 smithi151 ceph-mon[31870]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-04-15T21:07:50.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:50.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:50.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:50.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-15T21:07:50.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:50.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:50 smithi151 ceph-mon[31870]: Deploying daemon osd.5 on smithi174 2024-04-15T21:07:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:50 smithi050 ceph-mon[30310]: pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-04-15T21:07:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-04-15T21:07:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:50.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:50 smithi050 ceph-mon[30310]: Deploying daemon osd.5 on smithi174 2024-04-15T21:07:52.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:52 smithi050 ceph-mon[30310]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-15T21:07:52.589 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:52 smithi174 ceph-mon[32022]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-15T21:07:52.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:52 smithi151 ceph-mon[31870]: pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail; 58 KiB/s, 0 objects/s recovering 2024-04-15T21:07:53.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:53 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:53.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:53 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:53.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:53 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:54.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:53 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:54.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:53 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:54.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:53 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:54.227 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:53 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:54.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:53 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:54.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:53 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:54.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:54 smithi174 ceph-mon[32022]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:55.075 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:54 smithi050 ceph-mon[30310]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:55.083 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:54 smithi151 ceph-mon[31870]: pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:56.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:56 smithi151 ceph-mon[31870]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:56.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:56 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:56.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:56 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:56.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:56 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:56.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:56 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:56.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:56 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:56.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:56 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:56.532 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:56 smithi174 ceph-mon[32022]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:56.532 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:56 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:56.532 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:56 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:56.532 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:56 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:56.532 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:56 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:56.532 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:56 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:56.532 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:56 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:56.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:56 smithi050 ceph-mon[30310]: pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:56.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:56 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:56.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:56 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:56.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:56 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:56.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:56 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:56.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:56 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:56.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:56 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:58.225 INFO:teuthology.orchestra.run.smithi174.stdout:Created osd(s) 5 on host 'smithi174' 2024-04-15T21:07:58.459 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:58 smithi174 ceph-mon[32022]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:58.459 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:58 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:58.459 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:58 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:58.459 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:58 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:58.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:58 smithi151 ceph-mon[31870]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:58.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:58 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:58.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:58 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:58.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:58 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:58.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:58 smithi050 ceph-mon[30310]: pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:07:58.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:58 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:58.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:58 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:58.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:58 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:07:58.886 DEBUG:teuthology.orchestra.run.smithi174:osd.5> sudo journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.5.service 2024-04-15T21:07:58.888 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2024-04-15T21:07:58.888 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph osd stat -f json 2024-04-15T21:07:59.150 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:07:59.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:59 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:59.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:59 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:59.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:59 smithi151 ceph-mon[31870]: Adjusting osd_memory_target on smithi174 to 10080M 2024-04-15T21:07:59.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:59 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:59.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:59 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:59.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:59 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:59.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:59 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:59.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:59 smithi151 ceph-mon[31870]: from='osd.5 [v2:172.21.15.174:6808/3188083469,v1:172.21.15.174:6809/3188083469]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-15T21:07:59.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:07:59 smithi151 ceph-mon[31870]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-15T21:07:59.530 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:59 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:59.530 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:59 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:59.530 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:59 smithi050 ceph-mon[30310]: Adjusting osd_memory_target on smithi174 to 10080M 2024-04-15T21:07:59.530 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:59 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:59.530 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:59 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:59.530 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:59 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:59.531 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:59 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:59.531 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:59 smithi050 ceph-mon[30310]: from='osd.5 [v2:172.21.15.174:6808/3188083469,v1:172.21.15.174:6809/3188083469]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-15T21:07:59.531 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:07:59 smithi050 ceph-mon[30310]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-15T21:07:59.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:59 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:59.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:59 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-04-15T21:07:59.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:59 smithi174 ceph-mon[32022]: Adjusting osd_memory_target on smithi174 to 10080M 2024-04-15T21:07:59.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:59 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:59.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:59 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:07:59.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:59 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:07:59.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:59 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:07:59.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:59 smithi174 ceph-mon[32022]: from='osd.5 [v2:172.21.15.174:6808/3188083469,v1:172.21.15.174:6809/3188083469]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-15T21:07:59.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:07:59 smithi174 ceph-mon[32022]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-04-15T21:08:00.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:00 smithi050 ceph-mon[30310]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:08:00.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:00 smithi050 ceph-mon[30310]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-15T21:08:00.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:00 smithi050 ceph-mon[30310]: osdmap e40: 6 total, 5 up, 6 in 2024-04-15T21:08:00.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:00 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:00.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:00 smithi050 ceph-mon[30310]: from='osd.5 [v2:172.21.15.174:6808/3188083469,v1:172.21.15.174:6809/3188083469]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]: dispatch 2024-04-15T21:08:00.339 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:00 smithi050 ceph-mon[30310]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]: dispatch 2024-04-15T21:08:00.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:00 smithi151 ceph-mon[31870]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:08:00.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:00 smithi151 ceph-mon[31870]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-15T21:08:00.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:00 smithi151 ceph-mon[31870]: osdmap e40: 6 total, 5 up, 6 in 2024-04-15T21:08:00.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:00 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:00.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:00 smithi151 ceph-mon[31870]: from='osd.5 [v2:172.21.15.174:6808/3188083469,v1:172.21.15.174:6809/3188083469]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]: dispatch 2024-04-15T21:08:00.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:00 smithi151 ceph-mon[31870]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]: dispatch 2024-04-15T21:08:00.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:00 smithi174 ceph-mon[32022]: pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:08:00.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:00 smithi174 ceph-mon[32022]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-04-15T21:08:00.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:00 smithi174 ceph-mon[32022]: osdmap e40: 6 total, 5 up, 6 in 2024-04-15T21:08:00.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:00 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:00.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:00 smithi174 ceph-mon[32022]: from='osd.5 [v2:172.21.15.174:6808/3188083469,v1:172.21.15.174:6809/3188083469]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]: dispatch 2024-04-15T21:08:00.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:00 smithi174 ceph-mon[32022]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]: dispatch 2024-04-15T21:08:00.646 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:08:00 smithi174 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5[42444]: 2024-04-15T21:08:00.235+0000 7f7c09eeb700 -1 osd.5 0 waiting for initial osdmap 2024-04-15T21:08:00.646 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:08:00 smithi174 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5[42444]: 2024-04-15T21:08:00.240+0000 7f7c05cde700 -1 osd.5 41 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2024-04-15T21:08:00.951 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:08:01.477 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:01 smithi151 ceph-mon[31870]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]': finished 2024-04-15T21:08:01.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:01 smithi151 ceph-mon[31870]: osdmap e41: 6 total, 5 up, 6 in 2024-04-15T21:08:01.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:01 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:01.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:01 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:01.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:01 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:01.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:01 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:01.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:01 smithi151 ceph-mon[31870]: Detected new or changed devices on smithi174 2024-04-15T21:08:01.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:01 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:01.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:01 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:08:01.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:01 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:08:01.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:01 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:08:01.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:01 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:01.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:01 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/116325468' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-15T21:08:01.507 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:01 smithi050 ceph-mon[30310]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]': finished 2024-04-15T21:08:01.507 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:01 smithi050 ceph-mon[30310]: osdmap e41: 6 total, 5 up, 6 in 2024-04-15T21:08:01.507 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:01 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:01.507 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:01 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:01.508 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:01 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:01.508 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:01 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:01.508 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:01 smithi050 ceph-mon[30310]: Detected new or changed devices on smithi174 2024-04-15T21:08:01.508 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:01 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:01.508 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:01 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:08:01.508 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:01 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:08:01.508 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:01 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:08:01.508 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:01 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:01.508 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:01 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/116325468' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-15T21:08:01.535 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":41,"num_osds":6,"num_up_osds":5,"osd_up_since":1713215255,"num_in_osds":6,"osd_in_since":1713215262,"num_remapped_pgs":0} 2024-04-15T21:08:01.561 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:01 smithi174 ceph-mon[32022]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi174", "root=default"]}]': finished 2024-04-15T21:08:01.562 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:01 smithi174 ceph-mon[32022]: osdmap e41: 6 total, 5 up, 6 in 2024-04-15T21:08:01.562 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:01 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:01.562 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:01 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:01.562 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:01 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:01.562 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:01 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:01.562 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:01 smithi174 ceph-mon[32022]: Detected new or changed devices on smithi174 2024-04-15T21:08:01.562 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:01 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:01.562 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:01 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:08:01.562 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:01 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:08:01.562 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:01 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:08:01.562 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:01 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:01.562 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:01 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/116325468' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-15T21:08:02.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: purged_snaps scrub starts 2024-04-15T21:08:02.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: purged_snaps scrub ok 2024-04-15T21:08:02.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:08:02.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:02.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: osd.5 [v2:172.21.15.174:6808/3188083469,v1:172.21.15.174:6809/3188083469] boot 2024-04-15T21:08:02.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: osdmap e42: 6 total, 6 up, 6 in 2024-04-15T21:08:02.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:02.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: osdmap e43: 6 total, 6 up, 6 in 2024-04-15T21:08:02.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:02.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:02.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:02.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:08:02.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:08:02.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:08:02.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:02 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:02.537 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph osd stat -f json 2024-04-15T21:08:02.568 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: purged_snaps scrub starts 2024-04-15T21:08:02.569 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: purged_snaps scrub ok 2024-04-15T21:08:02.569 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:08:02.569 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:02.569 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: osd.5 [v2:172.21.15.174:6808/3188083469,v1:172.21.15.174:6809/3188083469] boot 2024-04-15T21:08:02.569 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: osdmap e42: 6 total, 6 up, 6 in 2024-04-15T21:08:02.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:02.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: osdmap e43: 6 total, 6 up, 6 in 2024-04-15T21:08:02.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:02.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:02.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:02.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:08:02.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:08:02.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:08:02.570 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:02 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:02.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: purged_snaps scrub starts 2024-04-15T21:08:02.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: purged_snaps scrub ok 2024-04-15T21:08:02.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 139 MiB used, 447 GiB / 447 GiB avail 2024-04-15T21:08:02.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:02.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: osd.5 [v2:172.21.15.174:6808/3188083469,v1:172.21.15.174:6809/3188083469] boot 2024-04-15T21:08:02.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: osdmap e42: 6 total, 6 up, 6 in 2024-04-15T21:08:02.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-04-15T21:08:02.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: osdmap e43: 6 total, 6 up, 6 in 2024-04-15T21:08:02.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:02.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:02.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:02.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:08:02.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:08:02.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:08:02.647 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:02 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:02.794 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:03.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:03 smithi050 ceph-mon[30310]: osdmap e44: 6 total, 6 up, 6 in 2024-04-15T21:08:03.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:03 smithi174 ceph-mon[32022]: osdmap e44: 6 total, 6 up, 6 in 2024-04-15T21:08:03.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:03 smithi151 ceph-mon[31870]: osdmap e44: 6 total, 6 up, 6 in 2024-04-15T21:08:04.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:04 smithi050 ceph-mon[30310]: pgmap v149: 1 pgs: 1 remapped+peering; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:04.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:04 smithi050 ceph-mon[30310]: osdmap e45: 6 total, 6 up, 6 in 2024-04-15T21:08:04.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:04 smithi174 ceph-mon[32022]: pgmap v149: 1 pgs: 1 remapped+peering; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:04.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:04 smithi174 ceph-mon[32022]: osdmap e45: 6 total, 6 up, 6 in 2024-04-15T21:08:04.704 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:08:04.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:04 smithi151 ceph-mon[31870]: pgmap v149: 1 pgs: 1 remapped+peering; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:04.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:04 smithi151 ceph-mon[31870]: osdmap e45: 6 total, 6 up, 6 in 2024-04-15T21:08:05.413 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":46,"num_osds":6,"num_up_osds":6,"osd_up_since":1713215281,"num_in_osds":6,"osd_in_since":1713215262,"num_remapped_pgs":0} 2024-04-15T21:08:05.414 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph osd dump --format=json 2024-04-15T21:08:05.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:05 smithi174 ceph-mon[32022]: osdmap e46: 6 total, 6 up, 6 in 2024-04-15T21:08:05.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:05 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/2966510734' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-15T21:08:05.707 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:05.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:05 smithi151 ceph-mon[31870]: osdmap e46: 6 total, 6 up, 6 in 2024-04-15T21:08:05.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:05 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/2966510734' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-15T21:08:05.814 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:05 smithi050 ceph-mon[30310]: osdmap e46: 6 total, 6 up, 6 in 2024-04-15T21:08:05.814 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:05 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/2966510734' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-04-15T21:08:06.645 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:06 smithi174 ceph-mon[32022]: pgmap v152: 1 pgs: 1 remapped+peering; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:06.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:06 smithi151 ceph-mon[31870]: pgmap v152: 1 pgs: 1 remapped+peering; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:06.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:06 smithi050 ceph-mon[30310]: pgmap v152: 1 pgs: 1 remapped+peering; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:07.563 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:08:07.563 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":46,"fsid":"650ea436-fb6b-11ee-bc8f-c7b262605968","created":"2024-04-15T21:03:21.091845+0000","modified":"2024-04-15T21:08:04.362161+0000","last_up_change":"2024-04-15T21:08:01.232613+0000","last_in_change":"2024-04-15T21:07:42.401353+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-15T21:06:49.024962+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"22","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"399c1ba1-fe0a-420d-9aa3-dc6d244f66dc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":3974039033},{"type":"v1","addr":"172.21.15.50:6803","nonce":3974039033}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":3974039033},{"type":"v1","addr":"172.21.15.50:6805","nonce":3974039033}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6808","nonce":3974039033},{"type":"v1","addr":"172.21.15.50:6809","nonce":3974039033}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":3974039033},{"type":"v1","addr":"172.21.15.50:6807","nonce":3974039033}]},"public_addr":"172.21.15.50:6803/3974039033","cluster_addr":"172.21.15.50:6805/3974039033","heartbeat_back_addr":"172.21.15.50:6809/3974039033","heartbeat_front_addr":"172.21.15.50:6807/3974039033","state":["exists","up"]},{"osd":1,"uuid":"b804456e-3c8a-4fc7-8b79-acf61f1f6be6","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.50:6810","nonce":3439637919},{"type":"v1","addr":"172.21.15.50:6811","nonce":3439637919}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":3439637919},{"type":"v1","addr":"172.21.15.50:6813","nonce":3439637919}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6816","nonce":3439637919},{"type":"v1","addr":"172.21.15.50:6817","nonce":3439637919}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":3439637919},{"type":"v1","addr":"172.21.15.50:6815","nonce":3439637919}]},"public_addr":"172.21.15.50:6811/3439637919","cluster_addr":"172.21.15.50:6813/3439637919","heartbeat_back_addr":"172.21.15.50:6817/3439637919","heartbeat_front_addr":"172.21.15.50:6815/3439637919","state":["exists","up"]},{"osd":2,"uuid":"dad747ec-cf84-4840-8c86-b3a67b24201d","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.151:6800","nonce":564685781},{"type":"v1","addr":"172.21.15.151:6801","nonce":564685781}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6802","nonce":564685781},{"type":"v1","addr":"172.21.15.151:6803","nonce":564685781}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6806","nonce":564685781},{"type":"v1","addr":"172.21.15.151:6807","nonce":564685781}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6804","nonce":564685781},{"type":"v1","addr":"172.21.15.151:6805","nonce":564685781}]},"public_addr":"172.21.15.151:6801/564685781","cluster_addr":"172.21.15.151:6803/564685781","heartbeat_back_addr":"172.21.15.151:6807/564685781","heartbeat_front_addr":"172.21.15.151:6805/564685781","state":["exists","up"]},{"osd":3,"uuid":"7c03db05-e50d-41b3-acd1-64e380b6cd25","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6808","nonce":2937719624},{"type":"v1","addr":"172.21.15.151:6809","nonce":2937719624}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6810","nonce":2937719624},{"type":"v1","addr":"172.21.15.151:6811","nonce":2937719624}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6814","nonce":2937719624},{"type":"v1","addr":"172.21.15.151:6815","nonce":2937719624}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6812","nonce":2937719624},{"type":"v1","addr":"172.21.15.151:6813","nonce":2937719624}]},"public_addr":"172.21.15.151:6809/2937719624","cluster_addr":"172.21.15.151:6811/2937719624","heartbeat_back_addr":"172.21.15.151:6815/2937719624","heartbeat_front_addr":"172.21.15.151:6813/2937719624","state":["exists","up"]},{"osd":4,"uuid":"3e5cee99-61a3-4136-b1fe-e1739f2579fc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6800","nonce":2214385103},{"type":"v1","addr":"172.21.15.174:6801","nonce":2214385103}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6802","nonce":2214385103},{"type":"v1","addr":"172.21.15.174:6803","nonce":2214385103}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6806","nonce":2214385103},{"type":"v1","addr":"172.21.15.174:6807","nonce":2214385103}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6804","nonce":2214385103},{"type":"v1","addr":"172.21.15.174:6805","nonce":2214385103}]},"public_addr":"172.21.15.174:6801/2214385103","cluster_addr":"172.21.15.174:6803/2214385103","heartbeat_back_addr":"172.21.15.174:6807/2214385103","heartbeat_front_addr":"172.21.15.174:6805/2214385103","state":["exists","up"]},{"osd":5,"uuid":"38016023-9f93-4d2a-8067-772339932fc9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6808","nonce":3188083469},{"type":"v1","addr":"172.21.15.174:6809","nonce":3188083469}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6810","nonce":3188083469},{"type":"v1","addr":"172.21.15.174:6811","nonce":3188083469}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6814","nonce":3188083469},{"type":"v1","addr":"172.21.15.174:6815","nonce":3188083469}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6812","nonce":3188083469},{"type":"v1","addr":"172.21.15.174:6813","nonce":3188083469}]},"public_addr":"172.21.15.174:6809/3188083469","cluster_addr":"172.21.15.174:6811/3188083469","heartbeat_back_addr":"172.21.15.174:6815/3188083469","heartbeat_front_addr":"172.21.15.174:6813/3188083469","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:05:55.241590+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:06:20.319811+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:06:45.577516+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:07:09.439805+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:07:34.490775+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:07:59.321028+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.50:6801/1616499280":"2024-04-16T21:04:16.937682+0000","172.21.15.50:6800/1616499280":"2024-04-16T21:04:16.937682+0000","172.21.15.50:0/2699688006":"2024-04-16T21:04:16.937682+0000","172.21.15.50:6801/2331411735":"2024-04-16T21:03:48.520783+0000","172.21.15.50:0/1760312914":"2024-04-16T21:04:16.937682+0000","172.21.15.50:0/1022985751":"2024-04-16T21:03:48.520783+0000","172.21.15.50:0/378699040":"2024-04-16T21:03:48.520783+0000","172.21.15.50:6800/2331411735":"2024-04-16T21:03:48.520783+0000","172.21.15.50:0/2795528791":"2024-04-16T21:03:48.520783+0000","172.21.15.50:0/1829807878":"2024-04-16T21:04:16.937682+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-04-15T21:08:08.224 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-04-15T21:06:49.024962+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '22', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 6, 'score_stable': 6, 'optimal_score': 0.5, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-04-15T21:08:08.225 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph osd pool get .mgr pg_num 2024-04-15T21:08:08.486 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:08.587 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:08 smithi050 ceph-mon[30310]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-04-15T21:08:08.587 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:08 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/761095162' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:08:08.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:08 smithi174 ceph-mon[32022]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-04-15T21:08:08.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:08 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/761095162' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:08:08.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:08 smithi151 ceph-mon[31870]: pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 166 MiB used, 536 GiB / 536 GiB avail; 99 KiB/s, 0 objects/s recovering 2024-04-15T21:08:08.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:08 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/761095162' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:08:10.238 INFO:teuthology.orchestra.run.smithi050.stdout:pg_num: 1 2024-04-15T21:08:10.574 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:10 smithi050 ceph-mon[30310]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-04-15T21:08:10.574 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:10 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:10.574 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:10 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:10.574 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:10 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:10.574 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:10 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/4183215694' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-15T21:08:10.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:10 smithi151 ceph-mon[31870]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-04-15T21:08:10.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:10 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:10.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:10 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:10.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:10 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:10.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:10 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/4183215694' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-15T21:08:10.856 INFO:tasks.cephadm:Setting up client nodes... 2024-04-15T21:08:10.856 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-04-15T21:08:10.856 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-04-15T21:08:10.856 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph mgr dump --format=json 2024-04-15T21:08:10.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:10 smithi174 ceph-mon[32022]: pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 84 KiB/s, 0 objects/s recovering 2024-04-15T21:08:10.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:10 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:10.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:10 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:10.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:10 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:10.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:10 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/4183215694' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2024-04-15T21:08:11.103 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:12.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:12 smithi050 ceph-mon[30310]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T21:08:12.727 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:12 smithi151 ceph-mon[31870]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T21:08:12.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:12 smithi174 ceph-mon[32022]: pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T21:08:13.203 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:08:14.126 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:13 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:14.127 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:13 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:14.127 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:13 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:14.127 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:13 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/932553256' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-15T21:08:14.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:13 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:14.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:13 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:14.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:13 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:14.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:13 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/932553256' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-15T21:08:14.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:14.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:14.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:14.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:13 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/932553256' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-04-15T21:08:14.873 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":15,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6800","nonce":461812659},{"type":"v1","addr":"172.21.15.50:6801","nonce":461812659}]},"active_addr":"172.21.15.50:6801/461812659","active_change":"2024-04-15T21:04:16.937789+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":24107,"name":"b","mgr_features":4540701547738038271,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.1","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:9.4.12","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.5.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.1","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.43.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:2.4.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.50: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.50:0","nonce":3226370216}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.50:0","nonce":1112262415}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.50:0","nonce":4239262952}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.50:0","nonce":412719057}]}]} 2024-04-15T21:08:14.878 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-04-15T21:08:14.878 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-04-15T21:08:14.881 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph osd dump --format=json 2024-04-15T21:08:15.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:14 smithi174 ceph-mon[32022]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-04-15T21:08:15.168 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:14 smithi050 ceph-mon[30310]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-04-15T21:08:15.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:14 smithi151 ceph-mon[31870]: pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 59 KiB/s, 0 objects/s recovering 2024-04-15T21:08:15.564 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:16.950 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:16 smithi050 ceph-mon[30310]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-04-15T21:08:17.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:16 smithi174 ceph-mon[32022]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-04-15T21:08:17.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:16 smithi151 ceph-mon[31870]: pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 53 KiB/s, 0 objects/s recovering 2024-04-15T21:08:17.426 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:08:17.426 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":46,"fsid":"650ea436-fb6b-11ee-bc8f-c7b262605968","created":"2024-04-15T21:03:21.091845+0000","modified":"2024-04-15T21:08:04.362161+0000","last_up_change":"2024-04-15T21:08:01.232613+0000","last_in_change":"2024-04-15T21:07:42.401353+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-15T21:06:49.024962+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"22","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"399c1ba1-fe0a-420d-9aa3-dc6d244f66dc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":3974039033},{"type":"v1","addr":"172.21.15.50:6803","nonce":3974039033}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":3974039033},{"type":"v1","addr":"172.21.15.50:6805","nonce":3974039033}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6808","nonce":3974039033},{"type":"v1","addr":"172.21.15.50:6809","nonce":3974039033}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":3974039033},{"type":"v1","addr":"172.21.15.50:6807","nonce":3974039033}]},"public_addr":"172.21.15.50:6803/3974039033","cluster_addr":"172.21.15.50:6805/3974039033","heartbeat_back_addr":"172.21.15.50:6809/3974039033","heartbeat_front_addr":"172.21.15.50:6807/3974039033","state":["exists","up"]},{"osd":1,"uuid":"b804456e-3c8a-4fc7-8b79-acf61f1f6be6","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.50:6810","nonce":3439637919},{"type":"v1","addr":"172.21.15.50:6811","nonce":3439637919}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":3439637919},{"type":"v1","addr":"172.21.15.50:6813","nonce":3439637919}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6816","nonce":3439637919},{"type":"v1","addr":"172.21.15.50:6817","nonce":3439637919}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":3439637919},{"type":"v1","addr":"172.21.15.50:6815","nonce":3439637919}]},"public_addr":"172.21.15.50:6811/3439637919","cluster_addr":"172.21.15.50:6813/3439637919","heartbeat_back_addr":"172.21.15.50:6817/3439637919","heartbeat_front_addr":"172.21.15.50:6815/3439637919","state":["exists","up"]},{"osd":2,"uuid":"dad747ec-cf84-4840-8c86-b3a67b24201d","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.151:6800","nonce":564685781},{"type":"v1","addr":"172.21.15.151:6801","nonce":564685781}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6802","nonce":564685781},{"type":"v1","addr":"172.21.15.151:6803","nonce":564685781}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6806","nonce":564685781},{"type":"v1","addr":"172.21.15.151:6807","nonce":564685781}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6804","nonce":564685781},{"type":"v1","addr":"172.21.15.151:6805","nonce":564685781}]},"public_addr":"172.21.15.151:6801/564685781","cluster_addr":"172.21.15.151:6803/564685781","heartbeat_back_addr":"172.21.15.151:6807/564685781","heartbeat_front_addr":"172.21.15.151:6805/564685781","state":["exists","up"]},{"osd":3,"uuid":"7c03db05-e50d-41b3-acd1-64e380b6cd25","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6808","nonce":2937719624},{"type":"v1","addr":"172.21.15.151:6809","nonce":2937719624}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6810","nonce":2937719624},{"type":"v1","addr":"172.21.15.151:6811","nonce":2937719624}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6814","nonce":2937719624},{"type":"v1","addr":"172.21.15.151:6815","nonce":2937719624}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6812","nonce":2937719624},{"type":"v1","addr":"172.21.15.151:6813","nonce":2937719624}]},"public_addr":"172.21.15.151:6809/2937719624","cluster_addr":"172.21.15.151:6811/2937719624","heartbeat_back_addr":"172.21.15.151:6815/2937719624","heartbeat_front_addr":"172.21.15.151:6813/2937719624","state":["exists","up"]},{"osd":4,"uuid":"3e5cee99-61a3-4136-b1fe-e1739f2579fc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6800","nonce":2214385103},{"type":"v1","addr":"172.21.15.174:6801","nonce":2214385103}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6802","nonce":2214385103},{"type":"v1","addr":"172.21.15.174:6803","nonce":2214385103}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6806","nonce":2214385103},{"type":"v1","addr":"172.21.15.174:6807","nonce":2214385103}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6804","nonce":2214385103},{"type":"v1","addr":"172.21.15.174:6805","nonce":2214385103}]},"public_addr":"172.21.15.174:6801/2214385103","cluster_addr":"172.21.15.174:6803/2214385103","heartbeat_back_addr":"172.21.15.174:6807/2214385103","heartbeat_front_addr":"172.21.15.174:6805/2214385103","state":["exists","up"]},{"osd":5,"uuid":"38016023-9f93-4d2a-8067-772339932fc9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6808","nonce":3188083469},{"type":"v1","addr":"172.21.15.174:6809","nonce":3188083469}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6810","nonce":3188083469},{"type":"v1","addr":"172.21.15.174:6811","nonce":3188083469}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6814","nonce":3188083469},{"type":"v1","addr":"172.21.15.174:6815","nonce":3188083469}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6812","nonce":3188083469},{"type":"v1","addr":"172.21.15.174:6813","nonce":3188083469}]},"public_addr":"172.21.15.174:6809/3188083469","cluster_addr":"172.21.15.174:6811/3188083469","heartbeat_back_addr":"172.21.15.174:6815/3188083469","heartbeat_front_addr":"172.21.15.174:6813/3188083469","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:05:55.241590+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:06:20.319811+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:06:45.577516+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:07:09.439805+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:07:34.490775+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:07:59.321028+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.50:6801/1616499280":"2024-04-16T21:04:16.937682+0000","172.21.15.50:6800/1616499280":"2024-04-16T21:04:16.937682+0000","172.21.15.50:0/2699688006":"2024-04-16T21:04:16.937682+0000","172.21.15.50:6801/2331411735":"2024-04-16T21:03:48.520783+0000","172.21.15.50:0/1760312914":"2024-04-16T21:04:16.937682+0000","172.21.15.50:0/1022985751":"2024-04-16T21:03:48.520783+0000","172.21.15.50:0/378699040":"2024-04-16T21:03:48.520783+0000","172.21.15.50:6800/2331411735":"2024-04-16T21:03:48.520783+0000","172.21.15.50:0/2795528791":"2024-04-16T21:03:48.520783+0000","172.21.15.50:0/1829807878":"2024-04-16T21:04:16.937682+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-04-15T21:08:18.049 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:17 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3747137321' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:08:18.081 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-04-15T21:08:18.081 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph osd dump --format=json 2024-04-15T21:08:18.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:17 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/3747137321' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:08:18.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:17 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/3747137321' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:08:18.330 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:19.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:18 smithi050 ceph-mon[30310]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-15T21:08:19.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:18 smithi174 ceph-mon[32022]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-15T21:08:19.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:18 smithi151 ceph-mon[31870]: pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail; 48 KiB/s, 0 objects/s recovering 2024-04-15T21:08:20.210 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:08:20.211 INFO:teuthology.orchestra.run.smithi050.stdout:{"epoch":46,"fsid":"650ea436-fb6b-11ee-bc8f-c7b262605968","created":"2024-04-15T21:03:21.091845+0000","modified":"2024-04-15T21:08:04.362161+0000","last_up_change":"2024-04-15T21:08:01.232613+0000","last_in_change":"2024-04-15T21:07:42.401353+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-04-15T21:06:49.024962+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"22","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"399c1ba1-fe0a-420d-9aa3-dc6d244f66dc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6802","nonce":3974039033},{"type":"v1","addr":"172.21.15.50:6803","nonce":3974039033}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6804","nonce":3974039033},{"type":"v1","addr":"172.21.15.50:6805","nonce":3974039033}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6808","nonce":3974039033},{"type":"v1","addr":"172.21.15.50:6809","nonce":3974039033}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6806","nonce":3974039033},{"type":"v1","addr":"172.21.15.50:6807","nonce":3974039033}]},"public_addr":"172.21.15.50:6803/3974039033","cluster_addr":"172.21.15.50:6805/3974039033","heartbeat_back_addr":"172.21.15.50:6809/3974039033","heartbeat_front_addr":"172.21.15.50:6807/3974039033","state":["exists","up"]},{"osd":1,"uuid":"b804456e-3c8a-4fc7-8b79-acf61f1f6be6","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.50:6810","nonce":3439637919},{"type":"v1","addr":"172.21.15.50:6811","nonce":3439637919}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6812","nonce":3439637919},{"type":"v1","addr":"172.21.15.50:6813","nonce":3439637919}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6816","nonce":3439637919},{"type":"v1","addr":"172.21.15.50:6817","nonce":3439637919}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.50:6814","nonce":3439637919},{"type":"v1","addr":"172.21.15.50:6815","nonce":3439637919}]},"public_addr":"172.21.15.50:6811/3439637919","cluster_addr":"172.21.15.50:6813/3439637919","heartbeat_back_addr":"172.21.15.50:6817/3439637919","heartbeat_front_addr":"172.21.15.50:6815/3439637919","state":["exists","up"]},{"osd":2,"uuid":"dad747ec-cf84-4840-8c86-b3a67b24201d","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.151:6800","nonce":564685781},{"type":"v1","addr":"172.21.15.151:6801","nonce":564685781}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6802","nonce":564685781},{"type":"v1","addr":"172.21.15.151:6803","nonce":564685781}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6806","nonce":564685781},{"type":"v1","addr":"172.21.15.151:6807","nonce":564685781}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6804","nonce":564685781},{"type":"v1","addr":"172.21.15.151:6805","nonce":564685781}]},"public_addr":"172.21.15.151:6801/564685781","cluster_addr":"172.21.15.151:6803/564685781","heartbeat_back_addr":"172.21.15.151:6807/564685781","heartbeat_front_addr":"172.21.15.151:6805/564685781","state":["exists","up"]},{"osd":3,"uuid":"7c03db05-e50d-41b3-acd1-64e380b6cd25","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":45,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6808","nonce":2937719624},{"type":"v1","addr":"172.21.15.151:6809","nonce":2937719624}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6810","nonce":2937719624},{"type":"v1","addr":"172.21.15.151:6811","nonce":2937719624}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6814","nonce":2937719624},{"type":"v1","addr":"172.21.15.151:6815","nonce":2937719624}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.151:6812","nonce":2937719624},{"type":"v1","addr":"172.21.15.151:6813","nonce":2937719624}]},"public_addr":"172.21.15.151:6809/2937719624","cluster_addr":"172.21.15.151:6811/2937719624","heartbeat_back_addr":"172.21.15.151:6815/2937719624","heartbeat_front_addr":"172.21.15.151:6813/2937719624","state":["exists","up"]},{"osd":4,"uuid":"3e5cee99-61a3-4136-b1fe-e1739f2579fc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6800","nonce":2214385103},{"type":"v1","addr":"172.21.15.174:6801","nonce":2214385103}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6802","nonce":2214385103},{"type":"v1","addr":"172.21.15.174:6803","nonce":2214385103}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6806","nonce":2214385103},{"type":"v1","addr":"172.21.15.174:6807","nonce":2214385103}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6804","nonce":2214385103},{"type":"v1","addr":"172.21.15.174:6805","nonce":2214385103}]},"public_addr":"172.21.15.174:6801/2214385103","cluster_addr":"172.21.15.174:6803/2214385103","heartbeat_back_addr":"172.21.15.174:6807/2214385103","heartbeat_front_addr":"172.21.15.174:6805/2214385103","state":["exists","up"]},{"osd":5,"uuid":"38016023-9f93-4d2a-8067-772339932fc9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":42,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6808","nonce":3188083469},{"type":"v1","addr":"172.21.15.174:6809","nonce":3188083469}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6810","nonce":3188083469},{"type":"v1","addr":"172.21.15.174:6811","nonce":3188083469}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6814","nonce":3188083469},{"type":"v1","addr":"172.21.15.174:6815","nonce":3188083469}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.174:6812","nonce":3188083469},{"type":"v1","addr":"172.21.15.174:6813","nonce":3188083469}]},"public_addr":"172.21.15.174:6809/3188083469","cluster_addr":"172.21.15.174:6811/3188083469","heartbeat_back_addr":"172.21.15.174:6815/3188083469","heartbeat_front_addr":"172.21.15.174:6813/3188083469","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:05:55.241590+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:06:20.319811+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:06:45.577516+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:07:09.439805+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:07:34.490775+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2024-04-15T21:07:59.321028+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.50:6801/1616499280":"2024-04-16T21:04:16.937682+0000","172.21.15.50:6800/1616499280":"2024-04-16T21:04:16.937682+0000","172.21.15.50:0/2699688006":"2024-04-16T21:04:16.937682+0000","172.21.15.50:6801/2331411735":"2024-04-16T21:03:48.520783+0000","172.21.15.50:0/1760312914":"2024-04-16T21:04:16.937682+0000","172.21.15.50:0/1022985751":"2024-04-16T21:03:48.520783+0000","172.21.15.50:0/378699040":"2024-04-16T21:03:48.520783+0000","172.21.15.50:6800/2331411735":"2024-04-16T21:03:48.520783+0000","172.21.15.50:0/2795528791":"2024-04-16T21:03:48.520783+0000","172.21.15.50:0/1829807878":"2024-04-16T21:04:16.937682+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-04-15T21:08:20.808 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph tell osd.0 flush_pg_stats 2024-04-15T21:08:20.808 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph tell osd.1 flush_pg_stats 2024-04-15T21:08:20.809 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph tell osd.2 flush_pg_stats 2024-04-15T21:08:20.809 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph tell osd.3 flush_pg_stats 2024-04-15T21:08:20.809 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph tell osd.4 flush_pg_stats 2024-04-15T21:08:20.810 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph tell osd.5 flush_pg_stats 2024-04-15T21:08:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:20 smithi050 ceph-mon[30310]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:20 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/2024059879' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:08:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:21.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:21.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:20 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:21.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:20 smithi174 ceph-mon[32022]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:21.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:20 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/2024059879' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:08:21.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:21.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:21.147 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:20 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:21.152 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:21.153 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:21.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:20 smithi151 ceph-mon[31870]: pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:21.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:20 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/2024059879' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-04-15T21:08:21.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:21.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:21.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:20 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:21.417 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:21.417 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:22.039 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:23.143 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:22 smithi050 ceph-mon[30310]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:23.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:22 smithi174 ceph-mon[32022]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:23.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:22 smithi151 ceph-mon[31870]: pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:24.112 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:24.978 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:24 smithi174 ceph-mon[32022]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:25.162 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:24 smithi050 ceph-mon[30310]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:25.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:24 smithi151 ceph-mon[31870]: pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:27.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:26 smithi050 ceph-mon[30310]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:27.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:26 smithi174 ceph-mon[32022]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:27.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:26 smithi151 ceph-mon[31870]: pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:29.008 INFO:teuthology.orchestra.run.smithi050.stdout:146028888076 2024-04-15T21:08:29.008 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.4 2024-04-15T21:08:29.145 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:28 smithi174 ceph-mon[32022]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:29.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:28 smithi151 ceph-mon[31870]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:29.256 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:28 smithi050 ceph-mon[30310]: pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:29.995 INFO:teuthology.orchestra.run.smithi050.stdout:111669149714 2024-04-15T21:08:29.995 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.3 2024-04-15T21:08:30.389 INFO:teuthology.orchestra.run.smithi050.stdout:77309411350 2024-04-15T21:08:30.389 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.2 2024-04-15T21:08:30.732 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:30 smithi050 ceph-mon[30310]: pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:30.732 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:30.732 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:30.732 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:30.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:30 smithi174 ceph-mon[32022]: pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:30.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:30.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:30.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:30 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:30.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:30 smithi151 ceph-mon[31870]: pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:30.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:30.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:30.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:31.160 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:31.197 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:32.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:32 smithi050 ceph-mon[30310]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:32.895 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:32 smithi174 ceph-mon[32022]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:32.975 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:32 smithi151 ceph-mon[31870]: pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:33.685 INFO:teuthology.orchestra.run.smithi050.stdout:55834574876 2024-04-15T21:08:33.686 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.1 2024-04-15T21:08:34.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:34.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:34.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:33 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:34.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:33 smithi151 ceph-mon[31870]: pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:34.301 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:34.302 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:34.302 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:33 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:34.302 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:33 smithi050 ceph-mon[30310]: pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:34.329 INFO:teuthology.orchestra.run.smithi050.stdout:34359738402 2024-04-15T21:08:34.330 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.0 2024-04-15T21:08:34.396 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:34.396 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:34.396 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:33 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:34.396 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:33 smithi174 ceph-mon[32022]: pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:34.830 INFO:teuthology.orchestra.run.smithi050.stdout:180388626442 2024-04-15T21:08:34.830 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph osd last-stat-seq osd.5 2024-04-15T21:08:36.442 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:36 smithi151 ceph-mon[31870]: pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:36.454 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:36 smithi050 ceph-mon[30310]: pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:36.506 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:36.506 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:36.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:36 smithi174 ceph-mon[32022]: pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:37.505 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:38.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:38 smithi151 ceph-mon[31870]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:38.536 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:38 smithi050 ceph-mon[30310]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:38.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:38 smithi174 ceph-mon[32022]: pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:38.681 INFO:teuthology.orchestra.run.smithi050.stdout:111669149716 2024-04-15T21:08:39.589 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:39 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/2328562283' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-15T21:08:39.640 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:39 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/2328562283' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-15T21:08:39.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:39 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/2328562283' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-04-15T21:08:40.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:40 smithi050 ceph-mon[30310]: pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:40.385 INFO:teuthology.orchestra.run.smithi050.stdout:77309411352 2024-04-15T21:08:40.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:40 smithi174 ceph-mon[32022]: pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:40.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:40 smithi151 ceph-mon[31870]: pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:41.142 INFO:tasks.cephadm.ceph_manager.ceph:need seq 77309411350 got 77309411352 for osd.2 2024-04-15T21:08:41.143 DEBUG:teuthology.parallel:result is None 2024-04-15T21:08:41.371 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:41 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3727110532' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-15T21:08:41.371 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:41 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:41.371 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:41 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:41.372 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:41 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:41.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:41 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/3727110532' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-15T21:08:41.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:41 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:41.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:41 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:41.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:41 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:41.686 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:41 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/3727110532' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-04-15T21:08:41.686 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:41 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:41.686 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:41 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:41.686 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:41 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:41.808 INFO:teuthology.orchestra.run.smithi050.stdout:180388626443 2024-04-15T21:08:43.010 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:42 smithi050 ceph-mon[30310]: pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:43.010 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:42 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3404942883' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-15T21:08:43.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:42 smithi174 ceph-mon[32022]: pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:43.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:42 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/3404942883' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-15T21:08:43.155 INFO:teuthology.orchestra.run.smithi050.stdout:146028888078 2024-04-15T21:08:43.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:42 smithi151 ceph-mon[31870]: pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:43.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:42 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/3404942883' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-04-15T21:08:43.443 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:43.474 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149714 got 111669149716 for osd.3 2024-04-15T21:08:43.475 DEBUG:teuthology.parallel:result is None 2024-04-15T21:08:44.050 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:43 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3974951337' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-15T21:08:44.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:43 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/3974951337' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-15T21:08:44.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:43 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/3974951337' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-04-15T21:08:44.896 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:44 smithi174 ceph-mon[32022]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:45.015 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:44 smithi050 ceph-mon[30310]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:45.179 INFO:teuthology.orchestra.run.smithi050.stdout:55834574879 2024-04-15T21:08:45.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:44 smithi151 ceph-mon[31870]: pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:45.820 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574876 got 55834574879 for osd.1 2024-04-15T21:08:45.820 DEBUG:teuthology.parallel:result is None 2024-04-15T21:08:45.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:45 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/475880339' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-15T21:08:46.098 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:45 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/475880339' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-15T21:08:46.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:45 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/475880339' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-04-15T21:08:46.264 INFO:tasks.cephadm.ceph_manager.ceph:need seq 180388626442 got 180388626443 for osd.5 2024-04-15T21:08:46.264 DEBUG:teuthology.parallel:result is None 2024-04-15T21:08:47.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:46 smithi050 ceph-mon[30310]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:47.128 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888076 got 146028888078 for osd.4 2024-04-15T21:08:47.128 DEBUG:teuthology.parallel:result is None 2024-04-15T21:08:47.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:46 smithi174 ceph-mon[32022]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:47.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:46 smithi151 ceph-mon[31870]: pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:47.813 INFO:teuthology.orchestra.run.smithi050.stdout:34359738405 2024-04-15T21:08:48.089 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:47 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/220022837' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-15T21:08:48.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:47 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/220022837' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-15T21:08:48.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:47 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/220022837' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-04-15T21:08:48.383 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738402 got 34359738405 for osd.0 2024-04-15T21:08:48.383 DEBUG:teuthology.parallel:result is None 2024-04-15T21:08:48.384 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-04-15T21:08:48.384 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph pg dump --format=json 2024-04-15T21:08:48.631 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:49.001 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:48 smithi050 ceph-mon[30310]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:49.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:48 smithi174 ceph-mon[32022]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:49.228 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:48 smithi151 ceph-mon[31870]: pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:50.559 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:08:50.561 INFO:teuthology.orchestra.run.smithi050.stderr:dumped all 2024-04-15T21:08:50.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:50 smithi050 ceph-mon[30310]: pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:50.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:50.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:50.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:50 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:50.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:50 smithi151 ceph-mon[31870]: pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:50.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:50.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:50.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:50 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:51.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:50 smithi174 ceph-mon[32022]: pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:51.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:51.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:51.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:50 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:51.167 INFO:teuthology.orchestra.run.smithi050.stdout:{"pg_ready":true,"pg_map":{"version":174,"stamp":"2024-04-15T21:08:49.187111+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":170500,"kb_used_data":4188,"kb_used_omap":9,"kb_used_meta":166198,"kb_avail":562300412,"statfs":{"total":575970213888,"available":575795621888,"internally_reserved":0,"allocated":4288512,"data_stored":2750106,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":170187424},"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.001925"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":257,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-04-15T21:08:04.368861+0000","last_change":"2024-04-15T21:08:04.368861+0000","last_active":"2024-04-15T21:08:04.368861+0000","last_peered":"2024-04-15T21:08:04.368861+0000","last_clean":"2024-04-15T21:08:04.368861+0000","last_became_active":"2024-04-15T21:08:04.368251+0000","last_became_peered":"2024-04-15T21:08:04.368251+0000","last_unstale":"2024-04-15T21:08:04.368861+0000","last_undegraded":"2024-04-15T21:08:04.368861+0000","last_fullsized":"2024-04-15T21:08:04.368861+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-15T21:06:49.986314+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-15T21:06:49.986314+0000","last_clean_scrub_stamp":"2024-04-15T21:06:49.986314+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-04-17T01:59:21.470844+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":42,"seq":180388626445,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":34,"seq":146028888080,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27432,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717720,"statfs":{"total":95995035648,"available":95966945280,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":26,"seq":111669149718,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28016,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717136,"statfs":{"total":95995035648,"available":95966347264,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411354,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28012,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717140,"statfs":{"total":95995035648,"available":95966351360,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738406,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31596,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713556,"statfs":{"total":95995035648,"available":95962681344,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574880,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27436,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717716,"statfs":{"total":95995035648,"available":95966941184,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":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-04-15T21:08:51.168 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph pg dump --format=json 2024-04-15T21:08:51.414 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:51.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:51 smithi050 ceph-mon[30310]: from='client.14463 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:08:51.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:51 smithi151 ceph-mon[31870]: from='client.14463 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:08:52.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:51 smithi174 ceph-mon[32022]: from='client.14463 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:08:52.907 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:52 smithi050 ceph-mon[30310]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:52.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:52 smithi151 ceph-mon[31870]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:53.146 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:52 smithi174 ceph-mon[32022]: pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:53.363 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:08:53.365 INFO:teuthology.orchestra.run.smithi050.stderr:dumped all 2024-04-15T21:08:54.039 INFO:teuthology.orchestra.run.smithi050.stdout:{"pg_ready":true,"pg_map":{"version":176,"stamp":"2024-04-15T21:08:53.187722+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":562470912,"kb_used":170500,"kb_used_data":4188,"kb_used_omap":9,"kb_used_meta":166198,"kb_avail":562300412,"statfs":{"total":575970213888,"available":575795621888,"internally_reserved":0,"allocated":4288512,"data_stored":2750106,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9568,"internal_metadata":170187424},"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.001876"},"pg_stats":[{"pgid":"1.0","version":"21'137","reported_seq":257,"reported_epoch":46,"state":"active+clean","last_fresh":"2024-04-15T21:08:04.368861+0000","last_change":"2024-04-15T21:08:04.368861+0000","last_active":"2024-04-15T21:08:04.368861+0000","last_peered":"2024-04-15T21:08:04.368861+0000","last_clean":"2024-04-15T21:08:04.368861+0000","last_became_active":"2024-04-15T21:08:04.368251+0000","last_became_peered":"2024-04-15T21:08:04.368251+0000","last_unstale":"2024-04-15T21:08:04.368861+0000","last_undegraded":"2024-04-15T21:08:04.368861+0000","last_fullsized":"2024-04-15T21:08:04.368861+0000","mapping_epoch":45,"log_start":"0'0","ondisk_log_start":"0'0","created":20,"last_epoch_clean":46,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-04-15T21:06:49.986314+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-04-15T21:06:49.986314+0000","last_clean_scrub_stamp":"2024-04-15T21:06:49.986314+0000","objects_scrubbed":0,"log_size":137,"log_dups_size":0,"ondisk_log_size":137,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-04-17T01:59:21.470844+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":126,"num_read_kb":109,"num_write":181,"num_write_kb":2938,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":137,"ondisk_log_size":137,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":42,"seq":180388626446,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28008,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717144,"statfs":{"total":95995035648,"available":95966355456,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":34,"seq":146028888081,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27432,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717720,"statfs":{"total":95995035648,"available":95966945280,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":26,"seq":111669149719,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28016,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717136,"statfs":{"total":95995035648,"available":95966347264,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1593,"internal_metadata":27654599},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":18,"seq":77309411355,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93745152,"kb_used":28012,"kb_used_data":988,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717140,"statfs":{"total":95995035648,"available":95966351360,"internally_reserved":0,"allocated":1011712,"data_stored":753535,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738406,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":31596,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93713556,"statfs":{"total":95995035648,"available":95962681344,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"hb_peers":[1,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":13,"seq":55834574881,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93745152,"kb_used":27436,"kb_used_data":408,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93717716,"statfs":{"total":95995035648,"available":95966941184,"internally_reserved":0,"allocated":417792,"data_stored":163167,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":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-04-15T21:08:54.039 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-04-15T21:08:54.040 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-04-15T21:08:54.040 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-04-15T21:08:54.040 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- ceph health --format=json 2024-04-15T21:08:54.283 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:54.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:54.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:54.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:54.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:54 smithi050 ceph-mon[30310]: pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:54.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:54 smithi050 ceph-mon[30310]: from='client.14469 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:08:54.396 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:54 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:54.396 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:54 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:54.396 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:54 smithi174 ceph-mon[32022]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:54.396 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:54 smithi174 ceph-mon[32022]: pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:54.397 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:54 smithi174 ceph-mon[32022]: from='client.14469 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:08:54.478 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:54 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:54.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:54 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:54.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:54 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:08:54.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:54 smithi151 ceph-mon[31870]: pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:54.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:54 smithi151 ceph-mon[31870]: from='client.14469 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:08:56.219 INFO:teuthology.orchestra.run.smithi050.stdout: 2024-04-15T21:08:56.219 INFO:teuthology.orchestra.run.smithi050.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-04-15T21:08:56.515 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:56 smithi050 ceph-mon[30310]: pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:56.515 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:56 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3901478566' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-15T21:08:56.615 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:56 smithi151 ceph-mon[31870]: pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:56.615 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:56 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/3901478566' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-15T21:08:56.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:56 smithi174 ceph-mon[32022]: pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:56.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:56 smithi174 ceph-mon[32022]: from='client.? 172.21.15.50:0/3901478566' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-04-15T21:08:56.863 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-04-15T21:08:56.863 INFO:tasks.cephadm:Setup complete, yielding 2024-04-15T21:08:56.864 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-04-15T21:08:56.875 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi050.front.sepia.ceph.com 2024-04-15T21:08:56.875 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 -- bash -c 'set -ex 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> for host in $HOSTNAMES; do 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> # find the hostname for "host.c" which will have no mgr 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> if [ "$HAS_MGRS" == "false" ]; then 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> HOST_C="${host}" 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> fi 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> done 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> # One last thing to worry about before draining the host 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> # is that the teuthology test tends to put the explicit 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> # hostnames in the placement for the mon service. 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> # We want to make sure we can drain without providing 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> # --force and there is a check for the host being removed 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> # being listed explicitly in the placements. Therefore, 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> # we should remove it from the mon placement. 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> ceph orch ls mon --export > mon.yaml 2024-04-15T21:08:56.876 DEBUG:teuthology.orchestra.run.smithi050:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2024-04-15T21:08:56.877 DEBUG:teuthology.orchestra.run.smithi050:> ceph orch apply -i mon_adjusted.yaml 2024-04-15T21:08:56.877 DEBUG:teuthology.orchestra.run.smithi050:> # now drain that host 2024-04-15T21:08:56.877 DEBUG:teuthology.orchestra.run.smithi050:> ceph orch host drain $HOST_C --zap-osd-devices 2024-04-15T21:08:56.877 DEBUG:teuthology.orchestra.run.smithi050:> # wait for drain to complete 2024-04-15T21:08:56.877 DEBUG:teuthology.orchestra.run.smithi050:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-04-15T21:08:56.877 DEBUG:teuthology.orchestra.run.smithi050:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2024-04-15T21:08:56.877 DEBUG:teuthology.orchestra.run.smithi050:> sleep 15 2024-04-15T21:08:56.877 DEBUG:teuthology.orchestra.run.smithi050:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2024-04-15T21:08:56.877 DEBUG:teuthology.orchestra.run.smithi050:> done 2024-04-15T21:08:56.877 DEBUG:teuthology.orchestra.run.smithi050:> # we want to check the ability to remove the host from 2024-04-15T21:08:56.877 DEBUG:teuthology.orchestra.run.smithi050:> # the CRUSH map, so we should first verify the host is in 2024-04-15T21:08:56.878 DEBUG:teuthology.orchestra.run.smithi050:> # the CRUSH map. 2024-04-15T21:08:56.878 DEBUG:teuthology.orchestra.run.smithi050:> ceph osd getcrushmap -o compiled-crushmap 2024-04-15T21:08:56.878 DEBUG:teuthology.orchestra.run.smithi050:> crushtool -d compiled-crushmap -o crushmap.txt 2024-04-15T21:08:56.878 DEBUG:teuthology.orchestra.run.smithi050:> CRUSH_MAP=$(cat crushmap.txt) 2024-04-15T21:08:56.878 DEBUG:teuthology.orchestra.run.smithi050:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-04-15T21:08:56.878 DEBUG:teuthology.orchestra.run.smithi050:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2024-04-15T21:08:56.879 DEBUG:teuthology.orchestra.run.smithi050:> exit 1 2024-04-15T21:08:56.879 DEBUG:teuthology.orchestra.run.smithi050:> fi 2024-04-15T21:08:56.879 DEBUG:teuthology.orchestra.run.smithi050:> # If the drain was successful, we should be able to remove the 2024-04-15T21:08:56.879 DEBUG:teuthology.orchestra.run.smithi050:> # host without force with no issues. If there are still daemons 2024-04-15T21:08:56.879 DEBUG:teuthology.orchestra.run.smithi050:> # we will get a response telling us to drain the host and a 2024-04-15T21:08:56.879 DEBUG:teuthology.orchestra.run.smithi050:> # non-zero return code 2024-04-15T21:08:56.879 DEBUG:teuthology.orchestra.run.smithi050:> ceph orch host rm $HOST_C --rm-crush-entry 2024-04-15T21:08:56.879 DEBUG:teuthology.orchestra.run.smithi050:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2024-04-15T21:08:56.879 DEBUG:teuthology.orchestra.run.smithi050:> sleep 30 2024-04-15T21:08:56.880 DEBUG:teuthology.orchestra.run.smithi050:> ceph osd getcrushmap -o compiled-crushmap 2024-04-15T21:08:56.880 DEBUG:teuthology.orchestra.run.smithi050:> crushtool -d compiled-crushmap -o crushmap.txt 2024-04-15T21:08:56.880 DEBUG:teuthology.orchestra.run.smithi050:> CRUSH_MAP=$(cat crushmap.txt) 2024-04-15T21:08:56.880 DEBUG:teuthology.orchestra.run.smithi050:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2024-04-15T21:08:56.880 DEBUG:teuthology.orchestra.run.smithi050:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2024-04-15T21:08:56.880 DEBUG:teuthology.orchestra.run.smithi050:> exit 1 2024-04-15T21:08:56.880 DEBUG:teuthology.orchestra.run.smithi050:> fi 2024-04-15T21:08:56.880 DEBUG:teuthology.orchestra.run.smithi050:> ' 2024-04-15T21:08:57.123 INFO:teuthology.orchestra.run.smithi050.stderr:Inferring config /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/mon.a/config 2024-04-15T21:08:58.572 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:08:58 smithi050 ceph-mon[30310]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:58.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:08:58 smithi174 ceph-mon[32022]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:58.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:08:58 smithi151 ceph-mon[31870]: pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:08:59.002 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch host ls --format json 2024-04-15T21:08:59.002 INFO:teuthology.orchestra.run.smithi050.stderr:++ jq -r '.[] | .hostname' 2024-04-15T21:08:59.269 INFO:teuthology.orchestra.run.smithi050.stderr:+ HOSTNAMES='smithi050 2024-04-15T21:08:59.269 INFO:teuthology.orchestra.run.smithi050.stderr:smithi151 2024-04-15T21:08:59.269 INFO:teuthology.orchestra.run.smithi050.stderr:smithi174' 2024-04-15T21:08:59.269 INFO:teuthology.orchestra.run.smithi050.stderr:+ for host in $HOSTNAMES 2024-04-15T21:08:59.269 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch ps --hostname smithi050 --format json 2024-04-15T21:08:59.269 INFO:teuthology.orchestra.run.smithi050.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-15T21:08:59.613 INFO:teuthology.orchestra.run.smithi050.stderr:+ HAS_MGRS=true 2024-04-15T21:08:59.613 INFO:teuthology.orchestra.run.smithi050.stderr:+ '[' true == false ']' 2024-04-15T21:08:59.614 INFO:teuthology.orchestra.run.smithi050.stderr:+ for host in $HOSTNAMES 2024-04-15T21:08:59.614 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch ps --hostname smithi151 --format json 2024-04-15T21:08:59.614 INFO:teuthology.orchestra.run.smithi050.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-15T21:08:59.961 INFO:teuthology.orchestra.run.smithi050.stderr:+ HAS_MGRS=true 2024-04-15T21:08:59.961 INFO:teuthology.orchestra.run.smithi050.stderr:+ '[' true == false ']' 2024-04-15T21:08:59.961 INFO:teuthology.orchestra.run.smithi050.stderr:+ for host in $HOSTNAMES 2024-04-15T21:08:59.961 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch ps --hostname smithi174 --format json 2024-04-15T21:08:59.961 INFO:teuthology.orchestra.run.smithi050.stderr:++ jq 'any(.daemon_type == "mgr")' 2024-04-15T21:09:00.305 INFO:teuthology.orchestra.run.smithi050.stderr:+ HAS_MGRS=false 2024-04-15T21:09:00.306 INFO:teuthology.orchestra.run.smithi050.stderr:+ '[' false == false ']' 2024-04-15T21:09:00.306 INFO:teuthology.orchestra.run.smithi050.stderr:+ HOST_C=smithi174 2024-04-15T21:09:00.306 INFO:teuthology.orchestra.run.smithi050.stderr:+ ceph orch ls mon --export 2024-04-15T21:09:00.578 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:00 smithi050 ceph-mon[30310]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:00.578 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:00 smithi050 ceph-mon[30310]: from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:09:00.578 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:00 smithi050 ceph-mon[30310]: from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi050", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:09:00.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:09:00 smithi174 ceph-mon[32022]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:00.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:09:00 smithi174 ceph-mon[32022]: from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:09:00.646 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:09:00 smithi174 ceph-mon[32022]: from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi050", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:09:00.655 INFO:teuthology.orchestra.run.smithi050.stderr:+ sed /smithi174/d mon.yaml 2024-04-15T21:09:00.657 INFO:teuthology.orchestra.run.smithi050.stderr:+ ceph orch apply -i mon_adjusted.yaml 2024-04-15T21:09:00.728 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:00 smithi151 ceph-mon[31870]: pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:00.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:00 smithi151 ceph-mon[31870]: from='client.14481 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:09:00.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:00 smithi151 ceph-mon[31870]: from='client.14487 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi050", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-04-15T21:09:00.994 INFO:teuthology.orchestra.run.smithi050.stdout:Scheduled mon update... 2024-04-15T21:09:01.006 INFO:teuthology.orchestra.run.smithi050.stderr:+ ceph orch host drain smithi174 --zap-osd-devices 2024-04-15T21:09:01.396 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:09:01 smithi174 podman[44355]: 2024-04-15 21:09:01.077126458 +0000 UTC m=+0.019347764 container died 6713668ab0b71fb36ea7ddbeb34f13018ca9fd3269892dbd111e3719d25c38d3 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-c, ceph=True, RELEASE=main-87dbfb6, GIT_CLEAN=True, org.label-schema.build-date=20240409, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, GIT_BRANCH=HEAD) 2024-04-15T21:09:02.124 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:09:01 smithi174 podman[44355]: 2024-04-15 21:09:01.686994198 +0000 UTC m=+0.629215483 container remove 6713668ab0b71fb36ea7ddbeb34f13018ca9fd3269892dbd111e3719d25c38d3 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-c, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, GIT_CLEAN=True, ceph=True, RELEASE=main-87dbfb6, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240409, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux ) 2024-04-15T21:09:02.396 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:09:02 smithi174 systemd[1]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.c.service: Deactivated successfully. 2024-04-15T21:09:02.396 INFO:journalctl@ceph.mon.c.smithi174.stdout:Apr 15 21:09:02 smithi174 systemd[1]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.c.service: Consumed 3.077s CPU time. 2024-04-15T21:09:03.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:09:03.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: Saving service mon spec with placement smithi050:172.21.15.50=a;smithi151:172.21.15.151=b;count:3 2024-04-15T21:09:03.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-04-15T21:09:03.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: Removing monitor c from monmap... 2024-04-15T21:09:03.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-04-15T21:09:03.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:09:03.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:09:03.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: mon.b calling monitor election 2024-04-15T21:09:03.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:03.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: mon.a calling monitor election 2024-04-15T21:09:03.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-04-15T21:09:03.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: monmap epoch 4 2024-04-15T21:09:03.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:09:03.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: last_changed 2024-04-15T21:09:01.044522+0000 2024-04-15T21:09:03.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: created 2024-04-15T21:03:07.001665+0000 2024-04-15T21:09:03.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: min_mon_release 19 (squid) 2024-04-15T21:09:03.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: election_strategy: 1 2024-04-15T21:09:03.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-04-15T21:09:03.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: 1: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.b 2024-04-15T21:09:03.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: fsmap 2024-04-15T21:09:03.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: osdmap e46: 6 total, 6 up, 6 in 2024-04-15T21:09:03.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: mgrmap e15: a(active, since 4m), standbys: b 2024-04-15T21:09:03.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:03 smithi151 ceph-mon[31870]: overall HEALTH_OK 2024-04-15T21:09:03.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: from='client.14511 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:09:03.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: Saving service mon spec with placement smithi050:172.21.15.50=a;smithi151:172.21.15.151=b;count:3 2024-04-15T21:09:03.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2024-04-15T21:09:03.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: Removing monitor c from monmap... 2024-04-15T21:09:03.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2024-04-15T21:09:03.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-15T21:09:03.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2024-04-15T21:09:03.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: mon.b calling monitor election 2024-04-15T21:09:03.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:03.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: mon.a calling monitor election 2024-04-15T21:09:03.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2024-04-15T21:09:03.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: monmap epoch 4 2024-04-15T21:09:03.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:09:03.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: last_changed 2024-04-15T21:09:01.044522+0000 2024-04-15T21:09:03.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: created 2024-04-15T21:03:07.001665+0000 2024-04-15T21:09:03.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: min_mon_release 19 (squid) 2024-04-15T21:09:03.592 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: election_strategy: 1 2024-04-15T21:09:03.592 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: 0: [v2:172.21.15.50:3300/0,v1:172.21.15.50:6789/0] mon.a 2024-04-15T21:09:03.592 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: 1: [v2:172.21.15.151:3300/0,v1:172.21.15.151:6789/0] mon.b 2024-04-15T21:09:03.592 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: fsmap 2024-04-15T21:09:03.592 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: osdmap e46: 6 total, 6 up, 6 in 2024-04-15T21:09:03.592 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: mgrmap e15: a(active, since 4m), standbys: b 2024-04-15T21:09:03.592 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:03 smithi050 ceph-mon[30310]: overall HEALTH_OK 2024-04-15T21:09:04.373 INFO:teuthology.orchestra.run.smithi050.stdout:Scheduled to remove the following daemons from host 'smithi174' 2024-04-15T21:09:04.373 INFO:teuthology.orchestra.run.smithi050.stdout:type id 2024-04-15T21:09:04.373 INFO:teuthology.orchestra.run.smithi050.stdout:-------------------- --------------- 2024-04-15T21:09:04.374 INFO:teuthology.orchestra.run.smithi050.stdout:agent smithi174 2024-04-15T21:09:04.374 INFO:teuthology.orchestra.run.smithi050.stdout:osd 4 2024-04-15T21:09:04.374 INFO:teuthology.orchestra.run.smithi050.stdout:osd 5 2024-04-15T21:09:04.387 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch ps --hostname smithi174 2024-04-15T21:09:04.750 INFO:teuthology.orchestra.run.smithi050.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-15T21:09:04.751 INFO:teuthology.orchestra.run.smithi050.stderr:agent.smithi174 smithi174 running 3s ago 4m - - 2024-04-15T21:09:04.751 INFO:teuthology.orchestra.run.smithi050.stderr:osd.4 smithi174 running (94s) 3s ago 94s 45.3M 9.84G 19.0.0-3084-g87dbfb63 a452a57266c7 997880f059f8 2024-04-15T21:09:04.751 INFO:teuthology.orchestra.run.smithi050.stderr:osd.5 smithi174 running (69s) 3s ago 69s 35.4M 9.84G 19.0.0-3084-g87dbfb63 a452a57266c7 6a10036eb709 ' 2024-04-15T21:09:04.751 INFO:teuthology.orchestra.run.smithi050.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-15T21:09:04.751 INFO:teuthology.orchestra.run.smithi050.stderr:agent.smithi174 smithi174 running 3s ago 4m - - 2024-04-15T21:09:04.751 INFO:teuthology.orchestra.run.smithi050.stderr:osd.4 smithi174 running (94s) 3s ago 94s 45.3M 9.84G 19.0.0-3084-g87dbfb63 a452a57266c7 997880f059f8 2024-04-15T21:09:04.751 INFO:teuthology.orchestra.run.smithi050.stderr:osd.5 smithi174 running (69s) 3s ago 69s 35.4M 9.84G 19.0.0-3084-g87dbfb63 a452a57266c7 6a10036eb709 ' '!=' 'No daemons reported' ']' 2024-04-15T21:09:04.751 INFO:teuthology.orchestra.run.smithi050.stderr:+ sleep 15 2024-04-15T21:09:05.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: Removing daemon mon.c from smithi174 -- ports [] 2024-04-15T21:09:05.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:05.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:09:05.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:05.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-15T21:09:05.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:04 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-04-15T21:09:05.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: Removing daemon mon.c from smithi174 -- ports [] 2024-04-15T21:09:05.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:05.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:09:05.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:05.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-15T21:09:05.231 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:04 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2024-04-15T21:09:05.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a[30287]: 2024-04-15T21:09:05.583+0000 7f71029c9700 -1 mon.a@0(leader).osd e47 definitely_dead 0 2024-04-15T21:09:05.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: Updating smithi050:/etc/ceph/ceph.conf 2024-04-15T21:09:05.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: Updating smithi151:/etc/ceph/ceph.conf 2024-04-15T21:09:05.840 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: Updating smithi174:/etc/ceph/ceph.conf 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: Updating smithi151:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: Updating smithi050:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: Updating smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi174", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: Added label _no_schedule to host smithi174 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: Added label _no_conf_keyring to host smithi174 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: osd.4 crush weight is 0.0872955322265625 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: osd.5 crush weight is 0.0872955322265625 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi174", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-04-15T21:09:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: osdmap e47: 6 total, 6 up, 6 in 2024-04-15T21:09:05.842 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:05.842 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-15T21:09:05.842 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:05 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-04-15T21:09:06.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: Updating smithi050:/etc/ceph/ceph.conf 2024-04-15T21:09:06.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: Updating smithi151:/etc/ceph/ceph.conf 2024-04-15T21:09:06.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: Updating smithi174:/etc/ceph/ceph.conf 2024-04-15T21:09:06.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: Updating smithi151:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:09:06.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: Updating smithi050:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:09:06.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: Updating smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:09:06.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "smithi174", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:09:06.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: Added label _no_schedule to host smithi174 2024-04-15T21:09:06.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: Added label _no_conf_keyring to host smithi174 2024-04-15T21:09:06.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: osd.4 crush weight is 0.0872955322265625 2024-04-15T21:09:06.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: osd.5 crush weight is 0.0872955322265625 2024-04-15T21:09:06.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:06.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:06.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2024-04-15T21:09:06.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: from='client.14518 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi174", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:09:06.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2024-04-15T21:09:06.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: osdmap e47: 6 total, 6 up, 6 in 2024-04-15T21:09:06.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:06.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-15T21:09:06.230 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:05 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2024-04-15T21:09:07.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:06 smithi050 ceph-mon[30310]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:07.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:06 smithi050 ceph-mon[30310]: osd.5 weight is now 0.0 2024-04-15T21:09:07.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:06 smithi050 ceph-mon[30310]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:07.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:06 smithi050 ceph-mon[30310]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-15T21:09:07.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:06 smithi050 ceph-mon[30310]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-15T21:09:07.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:06 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-04-15T21:09:07.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:06 smithi050 ceph-mon[30310]: osdmap e48: 6 total, 5 up, 6 in 2024-04-15T21:09:07.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:06 smithi151 ceph-mon[31870]: pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:07.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:06 smithi151 ceph-mon[31870]: osd.5 weight is now 0.0 2024-04-15T21:09:07.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:06 smithi151 ceph-mon[31870]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:07.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:06 smithi151 ceph-mon[31870]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2024-04-15T21:09:07.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:06 smithi151 ceph-mon[31870]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-15T21:09:07.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:06 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2024-04-15T21:09:07.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:06 smithi151 ceph-mon[31870]: osdmap e48: 6 total, 5 up, 6 in 2024-04-15T21:09:07.765 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:07 smithi174 systemd[1]: Stopping Ceph osd.4 for 650ea436-fb6b-11ee-bc8f-c7b262605968... 2024-04-15T21:09:08.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:07 smithi050 ceph-mon[30310]: osd.4 now down 2024-04-15T21:09:08.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:07 smithi050 ceph-mon[30310]: Removing daemon osd.4 from smithi174 -- ports [] 2024-04-15T21:09:08.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:07 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:08.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:07 smithi050 ceph-mon[30310]: osdmap e49: 6 total, 5 up, 6 in 2024-04-15T21:09:08.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:07 smithi151 ceph-mon[31870]: osd.4 now down 2024-04-15T21:09:08.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:07 smithi151 ceph-mon[31870]: Removing daemon osd.4 from smithi174 -- ports [] 2024-04-15T21:09:08.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:07 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:08.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:07 smithi151 ceph-mon[31870]: osdmap e49: 6 total, 5 up, 6 in 2024-04-15T21:09:09.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:08 smithi050 ceph-mon[30310]: pgmap v185: 1 pgs: 1 peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:09.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:08 smithi050 ceph-mon[30310]: Health check failed: Reduced data availability: 1 pg peering (PG_AVAILABILITY) 2024-04-15T21:09:09.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:08 smithi050 ceph-mon[30310]: osdmap e50: 6 total, 5 up, 6 in 2024-04-15T21:09:09.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:08 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:09.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:08 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:09.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:08 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:09.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:08 smithi151 ceph-mon[31870]: pgmap v185: 1 pgs: 1 peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:09.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:08 smithi151 ceph-mon[31870]: Health check failed: Reduced data availability: 1 pg peering (PG_AVAILABILITY) 2024-04-15T21:09:09.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:08 smithi151 ceph-mon[31870]: osdmap e50: 6 total, 5 up, 6 in 2024-04-15T21:09:09.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:08 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:09.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:08 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:09.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:08 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:09.396 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:09 smithi174 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4[38702]: 2024-04-15T21:09:09.245+0000 7f30b838f700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.4 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-15T21:09:09.396 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:09 smithi174 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4[38702]: 2024-04-15T21:09:09.245+0000 7f30b838f700 -1 osd.4 47 *** Got signal Terminated *** 2024-04-15T21:09:09.397 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:09 smithi174 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4[38702]: 2024-04-15T21:09:09.245+0000 7f30b838f700 -1 osd.4 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T21:09:10.028 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:09 smithi174 podman[45585]: 2024-04-15 21:09:09.768205553 +0000 UTC m=+0.646154128 container died 997880f059f8458767f506e0e62dd2b616e3a798762aa30513fb0f167d151c1e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.license=GPLv2, ceph=True, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-87dbfb6, org.label-schema.vendor=CentOS) 2024-04-15T21:09:10.387 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:10 smithi174 podman[45585]: 2024-04-15 21:09:10.134992421 +0000 UTC m=+1.012940998 container cleanup 997880f059f8458767f506e0e62dd2b616e3a798762aa30513fb0f167d151c1e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, ceph=True, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.build-date=20240409, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-87dbfb6, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_CLEAN=True) 2024-04-15T21:09:10.387 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:10 smithi174 bash[45585]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4 2024-04-15T21:09:10.646 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:10 smithi174 podman[45608]: 2024-04-15 21:09:10.394267615 +0000 UTC m=+0.622999695 container remove 997880f059f8458767f506e0e62dd2b616e3a798762aa30513fb0f167d151c1e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-87dbfb6, org.label-schema.build-date=20240409, GIT_CLEAN=True, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, ceph=True) 2024-04-15T21:09:11.048 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:10 smithi174 podman[45707]: 2024-04-15 21:09:10.651331649 +0000 UTC m=+0.018114233 image pull a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f 2024-04-15T21:09:11.049 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:10 smithi174 podman[45707]: 2024-04-15 21:09:10.778253141 +0000 UTC m=+0.145035715 container create d4b5252a2051e0e6f6cda2d9f7635271b9a9452d1aae8e5d2f161b6e3be2f3ee (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4-deactivate, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image, ceph=True, GIT_BRANCH=HEAD, RELEASE=main-87dbfb6, org.label-schema.build-date=20240409, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-15T21:09:11.049 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:10 smithi174 podman[45707]: 2024-04-15 21:09:10.972296911 +0000 UTC m=+0.339079485 container init d4b5252a2051e0e6f6cda2d9f7635271b9a9452d1aae8e5d2f161b6e3be2f3ee (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4-deactivate, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240409, RELEASE=main-87dbfb6, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS) 2024-04-15T21:09:11.049 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:10 smithi174 podman[45707]: 2024-04-15 21:09:10.978575075 +0000 UTC m=+0.345357650 container start d4b5252a2051e0e6f6cda2d9f7635271b9a9452d1aae8e5d2f161b6e3be2f3ee (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4-deactivate, org.label-schema.name=CentOS Stream 8 Base Image, ceph=True, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-87dbfb6, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.build-date=20240409, GIT_CLEAN=True, maintainer=Guillaume Abrioux ) 2024-04-15T21:09:11.049 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:11 smithi174 podman[45707]: 2024-04-15 21:09:11.055326091 +0000 UTC m=+0.422108676 container attach d4b5252a2051e0e6f6cda2d9f7635271b9a9452d1aae8e5d2f161b6e3be2f3ee (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4-deactivate, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.build-date=20240409, ceph=True, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-87dbfb6) 2024-04-15T21:09:11.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:10 smithi050 ceph-mon[30310]: pgmap v188: 1 pgs: 1 peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:11.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:10 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:11.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:10 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:11.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:10 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:11.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:10 smithi151 ceph-mon[31870]: pgmap v188: 1 pgs: 1 peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:11.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:10 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:11.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:10 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:11.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:10 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:11.397 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:11 smithi174 podman[45707]: 2024-04-15 21:09:11.276285264 +0000 UTC m=+0.643067838 container died d4b5252a2051e0e6f6cda2d9f7635271b9a9452d1aae8e5d2f161b6e3be2f3ee (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4-deactivate, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, RELEASE=main-87dbfb6, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True, GIT_CLEAN=True, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2) 2024-04-15T21:09:11.887 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:11 smithi174 podman[45754]: 2024-04-15 21:09:11.891448124 +0000 UTC m=+0.610265821 container remove d4b5252a2051e0e6f6cda2d9f7635271b9a9452d1aae8e5d2f161b6e3be2f3ee (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-4-deactivate, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_BRANCH=HEAD, org.label-schema.build-date=20240409, maintainer=Guillaume Abrioux , GIT_CLEAN=True, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, RELEASE=main-87dbfb6) 2024-04-15T21:09:12.278 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:11 smithi174 systemd[1]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.4.service: Deactivated successfully. 2024-04-15T21:09:12.279 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:11 smithi174 systemd[1]: Stopped Ceph osd.4 for 650ea436-fb6b-11ee-bc8f-c7b262605968. 2024-04-15T21:09:12.279 INFO:journalctl@ceph.osd.4.smithi174.stdout:Apr 15 21:09:11 smithi174 systemd[1]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.4.service: Consumed 1.997s CPU time. 2024-04-15T21:09:12.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:12 smithi151 ceph-mon[31870]: pgmap v189: 1 pgs: 1 peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:12.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:12 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-04-15T21:09:12.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:12 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-04-15T21:09:12.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:12 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T21:09:12.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:12 smithi151 ceph-mon[31870]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-15T21:09:12.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:12 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-04-15T21:09:12.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:12 smithi151 ceph-mon[31870]: osdmap e51: 5 total, 5 up, 5 in 2024-04-15T21:09:13.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:12 smithi050 ceph-mon[30310]: pgmap v189: 1 pgs: 1 peering; 577 KiB data, 167 MiB used, 536 GiB / 536 GiB avail 2024-04-15T21:09:13.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:12 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2024-04-15T21:09:13.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:12 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2024-04-15T21:09:13.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:12 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T21:09:13.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:12 smithi050 ceph-mon[30310]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-15T21:09:13.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:12 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2024-04-15T21:09:13.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:12 smithi050 ceph-mon[30310]: osdmap e51: 5 total, 5 up, 5 in 2024-04-15T21:09:14.148 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:13 smithi050 ceph-mon[30310]: Removing key for osd.4 2024-04-15T21:09:14.148 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:13 smithi050 ceph-mon[30310]: Successfully removed osd.4 on smithi174 2024-04-15T21:09:14.148 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:13 smithi050 ceph-mon[30310]: Successfully purged osd.4 on smithi174 2024-04-15T21:09:14.148 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:13 smithi050 ceph-mon[30310]: Zapping devices for osd.4 on smithi174 2024-04-15T21:09:14.149 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:13 smithi050 ceph-mon[30310]: osdmap e52: 5 total, 5 up, 5 in 2024-04-15T21:09:14.149 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:13 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:14.149 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:13 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:14.149 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:13 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:14.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:13 smithi151 ceph-mon[31870]: Removing key for osd.4 2024-04-15T21:09:14.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:13 smithi151 ceph-mon[31870]: Successfully removed osd.4 on smithi174 2024-04-15T21:09:14.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:13 smithi151 ceph-mon[31870]: Successfully purged osd.4 on smithi174 2024-04-15T21:09:14.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:13 smithi151 ceph-mon[31870]: Zapping devices for osd.4 on smithi174 2024-04-15T21:09:14.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:13 smithi151 ceph-mon[31870]: osdmap e52: 5 total, 5 up, 5 in 2024-04-15T21:09:14.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:14.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:14.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:13 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:15.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:14 smithi151 ceph-mon[31870]: pgmap v192: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-04-15T21:09:15.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:14 smithi151 ceph-mon[31870]: Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 1 pg peering) 2024-04-15T21:09:15.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:14 smithi151 ceph-mon[31870]: Cluster is now healthy 2024-04-15T21:09:15.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:14 smithi151 ceph-mon[31870]: osdmap e53: 5 total, 5 up, 5 in 2024-04-15T21:09:15.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:14 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:15.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:14 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:15.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:14 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:15.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:14 smithi050 ceph-mon[30310]: pgmap v192: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-04-15T21:09:15.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:14 smithi050 ceph-mon[30310]: Health check cleared: PG_AVAILABILITY (was: Reduced data availability: 1 pg peering) 2024-04-15T21:09:15.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:14 smithi050 ceph-mon[30310]: Cluster is now healthy 2024-04-15T21:09:15.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:14 smithi050 ceph-mon[30310]: osdmap e53: 5 total, 5 up, 5 in 2024-04-15T21:09:15.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:14 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:15.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:14 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:15.341 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:14 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:16.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:16 smithi151 ceph-mon[31870]: osdmap e54: 5 total, 5 up, 5 in 2024-04-15T21:09:16.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:16 smithi151 ceph-mon[31870]: pgmap v195: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-04-15T21:09:16.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:16 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:16.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:16 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:16.548 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:16 smithi050 ceph-mon[30310]: osdmap e54: 5 total, 5 up, 5 in 2024-04-15T21:09:16.548 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:16 smithi050 ceph-mon[30310]: pgmap v195: 1 pgs: 1 active+clean+remapped+wait; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 2/6 objects misplaced (33.333%) 2024-04-15T21:09:16.548 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:16.548 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:16 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:17.420 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:17 smithi050 ceph-mon[30310]: Successfully zapped devices for osd.4 on smithi174 2024-04-15T21:09:17.420 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:17 smithi050 ceph-mon[30310]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:17.420 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:17 smithi050 ceph-mon[30310]: Removing daemon agent.smithi174 from smithi174 -- ports [] 2024-04-15T21:09:17.420 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:17 smithi050 ceph-mon[30310]: osdmap e55: 5 total, 5 up, 5 in 2024-04-15T21:09:17.421 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:17 smithi050 ceph-mon[30310]: Removing key for client.agent.smithi174 2024-04-15T21:09:17.421 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:17 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.smithi174"}]: dispatch 2024-04-15T21:09:17.421 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:17 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi174"}]': finished 2024-04-15T21:09:17.421 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:17 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:17.421 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:17 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:17.421 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:17 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:09:17.421 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:17 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:17.424 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:17 smithi151 ceph-mon[31870]: Successfully zapped devices for osd.4 on smithi174 2024-04-15T21:09:17.424 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:17 smithi151 ceph-mon[31870]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:17.424 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:17 smithi151 ceph-mon[31870]: Removing daemon agent.smithi174 from smithi174 -- ports [] 2024-04-15T21:09:17.424 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:17 smithi151 ceph-mon[31870]: osdmap e55: 5 total, 5 up, 5 in 2024-04-15T21:09:17.424 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:17 smithi151 ceph-mon[31870]: Removing key for client.agent.smithi174 2024-04-15T21:09:17.425 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:17 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.smithi174"}]: dispatch 2024-04-15T21:09:17.425 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:17 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.smithi174"}]': finished 2024-04-15T21:09:17.425 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:17 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:17.425 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:17 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:17.425 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:17 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:09:17.425 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:17 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:18.340 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:18 smithi050 ceph-mon[30310]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 143 KiB/s, 0 objects/s recovering 2024-04-15T21:09:18.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:18 smithi151 ceph-mon[31870]: pgmap v197: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 143 KiB/s, 0 objects/s recovering 2024-04-15T21:09:19.333 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:19.334 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:19.334 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:19.334 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:19 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:19.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:19.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:19.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:19.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:19 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:19.755 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch ps --hostname smithi174 2024-04-15T21:09:20.111 INFO:teuthology.orchestra.run.smithi050.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-15T21:09:20.111 INFO:teuthology.orchestra.run.smithi050.stderr:osd.5 smithi174 running (85s) 1s ago 84s 37.3M 9.84G 19.0.0-3084-g87dbfb63 a452a57266c7 6a10036eb709 ' 2024-04-15T21:09:20.112 INFO:teuthology.orchestra.run.smithi050.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-04-15T21:09:20.112 INFO:teuthology.orchestra.run.smithi050.stderr:osd.5 smithi174 running (85s) 1s ago 84s 37.3M 9.84G 19.0.0-3084-g87dbfb63 a452a57266c7 6a10036eb709 ' '!=' 'No daemons reported' ']' 2024-04-15T21:09:20.112 INFO:teuthology.orchestra.run.smithi050.stderr:+ sleep 15 2024-04-15T21:09:20.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:20 smithi151 ceph-mon[31870]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-15T21:09:20.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:20 smithi050 ceph-mon[30310]: pgmap v198: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-04-15T21:09:21.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:21 smithi151 ceph-mon[31870]: from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi174", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:09:21.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:21 smithi050 ceph-mon[30310]: from='client.14522 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi174", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:09:22.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:22 smithi151 ceph-mon[31870]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-04-15T21:09:22.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:22.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:22.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:22.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:09:22.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:22.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:22.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:22.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:22.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:22.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-15T21:09:22.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:22 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-04-15T21:09:22.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:22 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a[30287]: 2024-04-15T21:09:22.148+0000 7f71029c9700 -1 mon.a@0(leader).osd e55 definitely_dead 0 2024-04-15T21:09:22.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:22 smithi050 ceph-mon[30310]: pgmap v199: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 82 KiB/s, 0 objects/s recovering 2024-04-15T21:09:22.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:22.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:22.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:22.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:09:22.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:22.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:22.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:22.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:22.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:22.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-15T21:09:22.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:22 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2024-04-15T21:09:23.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:23 smithi151 ceph-mon[31870]: Detected new or changed devices on smithi174 2024-04-15T21:09:23.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:23 smithi151 ceph-mon[31870]: Removing smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:09:23.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:23 smithi151 ceph-mon[31870]: Removing smithi174:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:09:23.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:23 smithi151 ceph-mon[31870]: Removing smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:09:23.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:23 smithi151 ceph-mon[31870]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:23.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:23 smithi151 ceph-mon[31870]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:23.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:23 smithi151 ceph-mon[31870]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:23.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:23 smithi151 ceph-mon[31870]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-15T21:09:23.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:23 smithi151 ceph-mon[31870]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-15T21:09:23.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:23 smithi151 ceph-mon[31870]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-04-15T21:09:23.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:23 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-04-15T21:09:23.481 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:23 smithi151 ceph-mon[31870]: osdmap e56: 5 total, 4 up, 5 in 2024-04-15T21:09:23.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:23 smithi050 ceph-mon[30310]: Detected new or changed devices on smithi174 2024-04-15T21:09:23.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:23 smithi050 ceph-mon[30310]: Removing smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.conf 2024-04-15T21:09:23.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:23 smithi050 ceph-mon[30310]: Removing smithi174:/etc/ceph/ceph.client.admin.keyring 2024-04-15T21:09:23.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:23 smithi050 ceph-mon[30310]: Removing smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/config/ceph.client.admin.keyring 2024-04-15T21:09:23.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:23 smithi050 ceph-mon[30310]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:23.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:23 smithi050 ceph-mon[30310]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:23.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:23 smithi050 ceph-mon[30310]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2024-04-15T21:09:23.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:23 smithi050 ceph-mon[30310]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2024-04-15T21:09:23.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:23 smithi050 ceph-mon[30310]: Health check failed: 1 osds down (OSD_DOWN) 2024-04-15T21:09:23.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:23 smithi050 ceph-mon[30310]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2024-04-15T21:09:23.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:23 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2024-04-15T21:09:23.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:23 smithi050 ceph-mon[30310]: osdmap e56: 5 total, 4 up, 5 in 2024-04-15T21:09:23.867 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:23 smithi174 systemd[1]: Stopping Ceph osd.5 for 650ea436-fb6b-11ee-bc8f-c7b262605968... 2024-04-15T21:09:24.146 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:23 smithi174 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5[42444]: 2024-04-15T21:09:23.872+0000 7f7c0aeed700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.5 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-15T21:09:24.147 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:23 smithi174 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5[42444]: 2024-04-15T21:09:23.872+0000 7f7c0aeed700 -1 osd.5 55 *** Got signal Terminated *** 2024-04-15T21:09:24.147 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:23 smithi174 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5[42444]: 2024-04-15T21:09:23.872+0000 7f7c0aeed700 -1 osd.5 55 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T21:09:24.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:24 smithi151 ceph-mon[31870]: osd.5 now down 2024-04-15T21:09:24.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:24 smithi151 ceph-mon[31870]: Removing daemon osd.5 from smithi174 -- ports [] 2024-04-15T21:09:24.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:24 smithi151 ceph-mon[31870]: pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T21:09:24.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:24 smithi050 ceph-mon[30310]: osd.5 now down 2024-04-15T21:09:24.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:24 smithi050 ceph-mon[30310]: Removing daemon osd.5 from smithi174 -- ports [] 2024-04-15T21:09:24.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:24 smithi050 ceph-mon[30310]: pgmap v201: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 72 KiB/s, 0 objects/s recovering 2024-04-15T21:09:24.647 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:24 smithi174 podman[48856]: 2024-04-15 21:09:24.394510737 +0000 UTC m=+0.632389142 container died 6a10036eb709871fa173080826c148b78bd2432943e85f393af7c2b1729b4a63 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, RELEASE=main-87dbfb6, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, ceph=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.vendor=CentOS) 2024-04-15T21:09:24.989 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:24 smithi174 podman[48856]: 2024-04-15 21:09:24.778063648 +0000 UTC m=+1.015942048 container cleanup 6a10036eb709871fa173080826c148b78bd2432943e85f393af7c2b1729b4a63 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , RELEASE=main-87dbfb6, org.label-schema.build-date=20240409, GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67) 2024-04-15T21:09:24.989 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:24 smithi174 bash[48856]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5 2024-04-15T21:09:25.295 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:24 smithi174 podman[48878]: 2024-04-15 21:09:24.995629686 +0000 UTC m=+0.598335994 container remove 6a10036eb709871fa173080826c148b78bd2432943e85f393af7c2b1729b4a63 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5, RELEASE=main-87dbfb6, org.label-schema.build-date=20240409, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0) 2024-04-15T21:09:25.591 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:25 smithi174 podman[48971]: 2024-04-15 21:09:25.205940067 +0000 UTC m=+0.017768388 image pull a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f 2024-04-15T21:09:25.592 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:25 smithi174 podman[48971]: 2024-04-15 21:09:25.31318711 +0000 UTC m=+0.125015415 container create 4497a51f812a52dbae6c50146a5c45c42974dc8634a0b98253b7aff85caaf0fd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5-deactivate, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, GIT_CLEAN=True, maintainer=Guillaume Abrioux , RELEASE=main-87dbfb6, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, ceph=True) 2024-04-15T21:09:25.592 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:25 smithi174 podman[48971]: 2024-04-15 21:09:25.515495626 +0000 UTC m=+0.327323930 container init 4497a51f812a52dbae6c50146a5c45c42974dc8634a0b98253b7aff85caaf0fd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5-deactivate, RELEASE=main-87dbfb6, GIT_BRANCH=HEAD, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240409, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True) 2024-04-15T21:09:25.592 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:25 smithi174 podman[48971]: 2024-04-15 21:09:25.521060468 +0000 UTC m=+0.332888773 container start 4497a51f812a52dbae6c50146a5c45c42974dc8634a0b98253b7aff85caaf0fd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5-deactivate, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240409, org.label-schema.vendor=CentOS, RELEASE=main-87dbfb6, org.label-schema.license=GPLv2, ceph=True, org.label-schema.schema-version=1.0, GIT_CLEAN=True, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, GIT_BRANCH=HEAD) 2024-04-15T21:09:25.592 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:25 smithi174 podman[48971]: 2024-04-15 21:09:25.598379709 +0000 UTC m=+0.410208017 container attach 4497a51f812a52dbae6c50146a5c45c42974dc8634a0b98253b7aff85caaf0fd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5-deactivate, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, GIT_CLEAN=True, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True, RELEASE=main-87dbfb6, org.label-schema.schema-version=1.0) 2024-04-15T21:09:25.897 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:25 smithi174 podman[48971]: 2024-04-15 21:09:25.810986732 +0000 UTC m=+0.622815048 container died 4497a51f812a52dbae6c50146a5c45c42974dc8634a0b98253b7aff85caaf0fd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5-deactivate, RELEASE=main-87dbfb6, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, ceph=True, GIT_CLEAN=True, org.label-schema.build-date=20240409) 2024-04-15T21:09:26.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:26 smithi151 ceph-mon[31870]: pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 64 KiB/s, 0 objects/s recovering 2024-04-15T21:09:26.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:26 smithi050 ceph-mon[30310]: pgmap v202: 1 pgs: 1 active+clean; 577 KiB data, 140 MiB used, 447 GiB / 447 GiB avail; 64 KiB/s, 0 objects/s recovering 2024-04-15T21:09:26.647 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:26 smithi174 podman[49017]: 2024-04-15 21:09:26.367699323 +0000 UTC m=+0.551048446 container remove 4497a51f812a52dbae6c50146a5c45c42974dc8634a0b98253b7aff85caaf0fd (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-5-deactivate, GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, RELEASE=main-87dbfb6, org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_CLEAN=True, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0) 2024-04-15T21:09:26.647 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:26 smithi174 systemd[1]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.5.service: Deactivated successfully. 2024-04-15T21:09:26.647 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:26 smithi174 systemd[1]: Stopped Ceph osd.5 for 650ea436-fb6b-11ee-bc8f-c7b262605968. 2024-04-15T21:09:26.647 INFO:journalctl@ceph.osd.5.smithi174.stdout:Apr 15 21:09:26 smithi174 systemd[1]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.5.service: Consumed 1.751s CPU time. 2024-04-15T21:09:27.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:27 smithi151 ceph-mon[31870]: Removing key for osd.5 2024-04-15T21:09:27.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:27 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-04-15T21:09:27.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:27 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-04-15T21:09:27.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:27 smithi151 ceph-mon[31870]: Successfully removed osd.5 on smithi174 2024-04-15T21:09:27.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:27 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T21:09:27.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:27 smithi151 ceph-mon[31870]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-15T21:09:27.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:27 smithi151 ceph-mon[31870]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-04-15T21:09:27.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:27 smithi151 ceph-mon[31870]: Cluster is now healthy 2024-04-15T21:09:27.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:27 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-04-15T21:09:27.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:27 smithi151 ceph-mon[31870]: osdmap e57: 4 total, 4 up, 4 in 2024-04-15T21:09:27.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:27 smithi151 ceph-mon[31870]: Successfully purged osd.5 on smithi174 2024-04-15T21:09:27.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:27 smithi151 ceph-mon[31870]: Zapping devices for osd.5 on smithi174 2024-04-15T21:09:27.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:27 smithi050 ceph-mon[30310]: Removing key for osd.5 2024-04-15T21:09:27.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2024-04-15T21:09:27.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2024-04-15T21:09:27.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:27 smithi050 ceph-mon[30310]: Successfully removed osd.5 on smithi174 2024-04-15T21:09:27.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2024-04-15T21:09:27.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:27 smithi050 ceph-mon[30310]: Health check cleared: OSD_DOWN (was: 1 osds down) 2024-04-15T21:09:27.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:27 smithi050 ceph-mon[30310]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2024-04-15T21:09:27.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:27 smithi050 ceph-mon[30310]: Cluster is now healthy 2024-04-15T21:09:27.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:27 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2024-04-15T21:09:27.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:27 smithi050 ceph-mon[30310]: osdmap e57: 4 total, 4 up, 4 in 2024-04-15T21:09:27.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:27 smithi050 ceph-mon[30310]: Successfully purged osd.5 on smithi174 2024-04-15T21:09:27.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:27 smithi050 ceph-mon[30310]: Zapping devices for osd.5 on smithi174 2024-04-15T21:09:28.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:28 smithi151 ceph-mon[31870]: pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:29.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:28 smithi050 ceph-mon[30310]: pgmap v204: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:30.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:30 smithi151 ceph-mon[31870]: pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:30.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:30.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:30.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:30.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:30.980 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:09:30.980 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:09:30.980 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:30 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:30.997 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:30 smithi050 ceph-mon[30310]: pgmap v205: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:30.998 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:30.998 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:30.998 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:30.998 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:30.998 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:09:30.998 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:09:30.998 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:30 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:31.776 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:31 smithi050 ceph-mon[30310]: Successfully zapped devices for osd.5 on smithi174 2024-04-15T21:09:31.776 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:31 smithi050 ceph-mon[30310]: Reconfiguring mon.a (monmap changed)... 2024-04-15T21:09:31.776 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:31 smithi050 ceph-mon[30310]: Reconfiguring daemon mon.a on smithi050 2024-04-15T21:09:31.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:31 smithi151 ceph-mon[31870]: Successfully zapped devices for osd.5 on smithi174 2024-04-15T21:09:31.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:31 smithi151 ceph-mon[31870]: Reconfiguring mon.a (monmap changed)... 2024-04-15T21:09:31.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:31 smithi151 ceph-mon[31870]: Reconfiguring daemon mon.a on smithi050 2024-04-15T21:09:33.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:32 smithi050 ceph-mon[30310]: pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:33.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:32 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:33.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:32 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:33.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:32 smithi050 ceph-mon[30310]: Reconfiguring mgr.a (monmap changed)... 2024-04-15T21:09:33.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:32 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:09:33.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:32 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:09:33.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:32 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:33.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:32 smithi050 ceph-mon[30310]: Reconfiguring daemon mgr.a on smithi050 2024-04-15T21:09:33.168 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:32 smithi151 ceph-mon[31870]: pgmap v206: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:33.168 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:32 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:33.168 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:32 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:33.168 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:32 smithi151 ceph-mon[31870]: Reconfiguring mgr.a (monmap changed)... 2024-04-15T21:09:33.168 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:32 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:09:33.168 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:32 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:09:33.168 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:32 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:33.169 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:32 smithi151 ceph-mon[31870]: Reconfiguring daemon mgr.a on smithi050 2024-04-15T21:09:34.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:34 smithi050 ceph-mon[30310]: pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:34.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:34.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:34.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:34.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:34.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:34.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:34 smithi050 ceph-mon[30310]: Reconfiguring osd.0 (monmap changed)... 2024-04-15T21:09:34.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T21:09:34.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:34 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:34.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:34 smithi050 ceph-mon[30310]: Reconfiguring daemon osd.0 on smithi050 2024-04-15T21:09:34.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:34 smithi151 ceph-mon[31870]: pgmap v207: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:34.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:34.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:34.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:34.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:34.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:34.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:34 smithi151 ceph-mon[31870]: Reconfiguring osd.0 (monmap changed)... 2024-04-15T21:09:34.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-04-15T21:09:34.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:34 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:34.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:34 smithi151 ceph-mon[31870]: Reconfiguring daemon osd.0 on smithi050 2024-04-15T21:09:35.113 INFO:teuthology.orchestra.run.smithi050.stderr:++ ceph orch ps --hostname smithi174 2024-04-15T21:09:35.456 INFO:teuthology.orchestra.run.smithi050.stderr:+ HOST_C_DAEMONS='No daemons reported' 2024-04-15T21:09:35.456 INFO:teuthology.orchestra.run.smithi050.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2024-04-15T21:09:35.456 INFO:teuthology.orchestra.run.smithi050.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-04-15T21:09:35.772 INFO:teuthology.orchestra.run.smithi050.stderr:17 2024-04-15T21:09:35.782 INFO:teuthology.orchestra.run.smithi050.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-04-15T21:09:35.797 INFO:teuthology.orchestra.run.smithi050.stderr:++ cat crushmap.txt 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr:+ CRUSH_MAP='# begin crush map 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr:tunable choose_local_tries 0 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr:tunable choose_local_fallback_tries 0 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr:tunable choose_total_tries 50 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr:tunable chooseleaf_descend_once 1 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr:tunable chooseleaf_vary_r 1 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr:tunable chooseleaf_stable 1 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr:tunable straw_calc_version 1 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr:tunable allowed_bucket_algs 54 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr:# devices 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr:device 0 osd.0 class ssd 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr:device 1 osd.1 class ssd 2024-04-15T21:09:35.799 INFO:teuthology.orchestra.run.smithi050.stderr:device 2 osd.2 class ssd 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr:device 3 osd.3 class ssd 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr:# types 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr:type 0 osd 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr:type 1 host 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr:type 2 chassis 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr:type 3 rack 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr:type 4 row 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr:type 5 pdu 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr:type 6 pod 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr:type 7 room 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr:type 8 datacenter 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr:type 9 zone 2024-04-15T21:09:35.800 INFO:teuthology.orchestra.run.smithi050.stderr:type 10 region 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr:type 11 root 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr:# buckets 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr:host smithi050 { 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr: id -3 # do not change unnecessarily 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr: id -4 class ssd # do not change unnecessarily 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.17459 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.0 weight 0.08730 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.1 weight 0.08730 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr:host smithi151 { 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr: id -5 # do not change unnecessarily 2024-04-15T21:09:35.801 INFO:teuthology.orchestra.run.smithi050.stderr: id -6 class ssd # do not change unnecessarily 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.17459 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.2 weight 0.08730 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.3 weight 0.08730 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr:host smithi174 { 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr: id -7 # do not change unnecessarily 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr: id -8 class ssd # do not change unnecessarily 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.00000 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr:root default { 2024-04-15T21:09:35.802 INFO:teuthology.orchestra.run.smithi050.stderr: id -1 # do not change unnecessarily 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr: id -2 class ssd # do not change unnecessarily 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.34918 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr: item smithi050 weight 0.17459 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr: item smithi151 weight 0.17459 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr: item smithi174 weight 0.00000 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr:# rules 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr:rule replicated_rule { 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr: id 0 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr: type replicated 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr: step take default 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr: step choose firstn 0 type osd 2024-04-15T21:09:35.803 INFO:teuthology.orchestra.run.smithi050.stderr: step emit 2024-04-15T21:09:35.804 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-04-15T21:09:35.804 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-04-15T21:09:35.804 INFO:teuthology.orchestra.run.smithi050.stderr:# end crush map' 2024-04-15T21:09:35.804 INFO:teuthology.orchestra.run.smithi050.stderr:+ grep -q smithi174 2024-04-15T21:09:35.804 INFO:teuthology.orchestra.run.smithi050.stderr:+ ceph orch host rm smithi174 --rm-crush-entry 2024-04-15T21:09:36.590 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:36 smithi050 ceph-mon[30310]: pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:36.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:36 smithi050 ceph-mon[30310]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi174", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:09:36.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:36 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3297191862' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-15T21:09:36.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:36 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:36.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:36 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:36.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:36 smithi050 ceph-mon[30310]: Reconfiguring osd.1 (monmap changed)... 2024-04-15T21:09:36.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:36 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T21:09:36.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:36 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:36.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:36 smithi050 ceph-mon[30310]: Reconfiguring daemon osd.1 on smithi050 2024-04-15T21:09:36.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:36 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi174"}]: dispatch 2024-04-15T21:09:36.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:36 smithi151 ceph-mon[31870]: pgmap v208: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:36.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:36 smithi151 ceph-mon[31870]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "smithi174", "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:09:36.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:36 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/3297191862' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-15T21:09:36.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:36 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:36.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:36 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:36.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:36 smithi151 ceph-mon[31870]: Reconfiguring osd.1 (monmap changed)... 2024-04-15T21:09:36.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:36 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-04-15T21:09:36.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:36 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:36.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:36 smithi151 ceph-mon[31870]: Reconfiguring daemon osd.1 on smithi050 2024-04-15T21:09:36.731 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:36 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "smithi174"}]: dispatch 2024-04-15T21:09:36.828 INFO:teuthology.orchestra.run.smithi050.stdout:Removed host 'smithi174' 2024-04-15T21:09:36.840 INFO:teuthology.orchestra.run.smithi050.stderr:+ sleep 30 2024-04-15T21:09:37.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:37 smithi151 ceph-mon[31870]: from='client.14534 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi174", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:09:37.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:37 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi174"}]': finished 2024-04-15T21:09:37.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:37 smithi151 ceph-mon[31870]: osdmap e58: 4 total, 4 up, 4 in 2024-04-15T21:09:37.977 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:37 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:37.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:37 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi174"}]: dispatch 2024-04-15T21:09:37.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:37 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi174"}]': finished 2024-04-15T21:09:37.978 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:37 smithi151 ceph-mon[31870]: Removed host smithi174 2024-04-15T21:09:38.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:37 smithi050 ceph-mon[30310]: from='client.14534 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "smithi174", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2024-04-15T21:09:38.092 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:37 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "smithi174"}]': finished 2024-04-15T21:09:38.092 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:37 smithi050 ceph-mon[30310]: osdmap e58: 4 total, 4 up, 4 in 2024-04-15T21:09:38.092 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:37 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:38.092 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:37 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi174"}]: dispatch 2024-04-15T21:09:38.092 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:37 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.smithi174"}]': finished 2024-04-15T21:09:38.092 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:37 smithi050 ceph-mon[30310]: Removed host smithi174 2024-04-15T21:09:38.939 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:38 smithi151 ceph-mon[31870]: pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:38.939 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:38 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:38.939 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:38 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:38.939 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:38 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:09:38.939 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:38 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:09:38.939 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:38 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:39.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:38 smithi050 ceph-mon[30310]: pgmap v210: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:39.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:38 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:39.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:38 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:39.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:38 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-04-15T21:09:39.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:38 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-04-15T21:09:39.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:38 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:40.078 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:39 smithi151 ceph-mon[31870]: Reconfiguring mon.b (monmap changed)... 2024-04-15T21:09:40.079 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:39 smithi151 ceph-mon[31870]: Reconfiguring daemon mon.b on smithi151 2024-04-15T21:09:40.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:39 smithi050 ceph-mon[30310]: Reconfiguring mon.b (monmap changed)... 2024-04-15T21:09:40.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:39 smithi050 ceph-mon[30310]: Reconfiguring daemon mon.b on smithi151 2024-04-15T21:09:41.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:40 smithi050 ceph-mon[30310]: pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:41.092 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:40 smithi151 ceph-mon[31870]: pgmap v211: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:42.706 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:42 smithi151 ceph-mon[31870]: pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:42.706 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:42 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:42.707 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:42 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:42.707 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:42 smithi151 ceph-mon[31870]: Reconfiguring mgr.b (monmap changed)... 2024-04-15T21:09:42.707 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:42 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:09:42.707 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:42 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:09:42.707 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:42 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:42.707 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:42 smithi151 ceph-mon[31870]: Reconfiguring daemon mgr.b on smithi151 2024-04-15T21:09:42.842 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:42 smithi050 ceph-mon[30310]: pgmap v212: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:42.842 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:42 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:42.842 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:42 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:42.842 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:42 smithi050 ceph-mon[30310]: Reconfiguring mgr.b (monmap changed)... 2024-04-15T21:09:42.842 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:42 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-04-15T21:09:42.842 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:42 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2024-04-15T21:09:42.842 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:42 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:42.842 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:42 smithi050 ceph-mon[30310]: Reconfiguring daemon mgr.b on smithi151 2024-04-15T21:09:44.124 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:44 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:44.124 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:44 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:44.124 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:44 smithi050 ceph-mon[30310]: Reconfiguring osd.2 (monmap changed)... 2024-04-15T21:09:44.124 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:44 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T21:09:44.124 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:44 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:44.124 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:44 smithi050 ceph-mon[30310]: Reconfiguring daemon osd.2 on smithi151 2024-04-15T21:09:44.125 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:44 smithi050 ceph-mon[30310]: pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:44.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:44 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:44.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:44 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:44.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:44 smithi151 ceph-mon[31870]: Reconfiguring osd.2 (monmap changed)... 2024-04-15T21:09:44.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:44 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-04-15T21:09:44.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:44 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:44.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:44 smithi151 ceph-mon[31870]: Reconfiguring daemon osd.2 on smithi151 2024-04-15T21:09:44.229 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:44 smithi151 ceph-mon[31870]: pgmap v213: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:45.952 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:45.952 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:45.952 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:45 smithi151 ceph-mon[31870]: Reconfiguring osd.3 (monmap changed)... 2024-04-15T21:09:45.953 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-15T21:09:45.953 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:45 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:45.953 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:45 smithi151 ceph-mon[31870]: Reconfiguring daemon osd.3 on smithi151 2024-04-15T21:09:46.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:46.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:46.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:45 smithi050 ceph-mon[30310]: Reconfiguring osd.3 (monmap changed)... 2024-04-15T21:09:46.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-04-15T21:09:46.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:45 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:46.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:45 smithi050 ceph-mon[30310]: Reconfiguring daemon osd.3 on smithi151 2024-04-15T21:09:46.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:46 smithi151 ceph-mon[31870]: pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:46.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:46 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:46.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:46 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:46.980 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:46 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:09:46.980 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:46 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:46.980 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:46 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:09:46.980 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:46 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:47.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:46 smithi050 ceph-mon[30310]: pgmap v214: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:47.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:46 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:47.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:46 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:47.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:46 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-04-15T21:09:47.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:46 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-15T21:09:47.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:46 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-04-15T21:09:47.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:46 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:47.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:47 smithi151 ceph-mon[31870]: pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:47.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:47 smithi151 ceph-mon[31870]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-04-15T21:09:48.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:47 smithi050 ceph-mon[30310]: pgmap v215: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:48.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:47 smithi050 ceph-mon[30310]: Health check failed: 1 stray host(s) with 1 daemon(s) not managed by cephadm (CEPHADM_STRAY_HOST) 2024-04-15T21:09:49.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:49 smithi151 ceph-mon[31870]: pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:50.090 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:49 smithi050 ceph-mon[30310]: pgmap v216: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:51.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:51.479 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:51.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:51 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:51.480 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:51 smithi151 ceph-mon[31870]: pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:51.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:51.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:51.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:51 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:51.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:51 smithi050 ceph-mon[30310]: pgmap v217: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:53.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:53 smithi151 ceph-mon[31870]: pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:53.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:53 smithi050 ceph-mon[30310]: pgmap v218: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:54.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:54 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:54.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:54 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:54.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:54 smithi151 ceph-mon[31870]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:54.741 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:54.741 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:54.741 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:54 smithi050 ceph-mon[30310]: from='mgr.14152 172.21.15.50:0/2649485975' entity='mgr.a' 2024-04-15T21:09:55.726 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:55 smithi050 ceph-mon[30310]: pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:55.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:55 smithi151 ceph-mon[31870]: pgmap v219: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:57.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:57 smithi151 ceph-mon[31870]: pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:57.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:57 smithi050 ceph-mon[30310]: pgmap v220: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:59.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:09:59 smithi151 ceph-mon[31870]: pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:09:59.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:09:59 smithi050 ceph-mon[30310]: pgmap v221: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:10:00.581 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:00 smithi151 ceph-mon[31870]: Health detail: HEALTH_WARN 1 stray host(s) with 1 daemon(s) not managed by cephadm 2024-04-15T21:10:00.581 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:00 smithi151 ceph-mon[31870]: [WRN] CEPHADM_STRAY_HOST: 1 stray host(s) with 1 daemon(s) not managed by cephadm 2024-04-15T21:10:00.581 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:00 smithi151 ceph-mon[31870]: stray host smithi174 has 1 stray daemons: ['mon.b'] 2024-04-15T21:10:00.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:00 smithi050 ceph-mon[30310]: Health detail: HEALTH_WARN 1 stray host(s) with 1 daemon(s) not managed by cephadm 2024-04-15T21:10:00.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:00 smithi050 ceph-mon[30310]: [WRN] CEPHADM_STRAY_HOST: 1 stray host(s) with 1 daemon(s) not managed by cephadm 2024-04-15T21:10:00.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:00 smithi050 ceph-mon[30310]: stray host smithi174 has 1 stray daemons: ['mon.b'] 2024-04-15T21:10:01.729 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:01 smithi151 ceph-mon[31870]: pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:10:01.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:01 smithi050 ceph-mon[30310]: pgmap v222: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:10:03.730 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:03 smithi151 ceph-mon[31870]: pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:10:03.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:03 smithi050 ceph-mon[30310]: pgmap v223: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:10:05.841 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:05 smithi050 ceph-mon[30310]: pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:10:05.979 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:05 smithi151 ceph-mon[31870]: pgmap v224: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:10:06.845 INFO:teuthology.orchestra.run.smithi050.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2024-04-15T21:10:07.175 INFO:teuthology.orchestra.run.smithi050.stderr:18 2024-04-15T21:10:07.185 INFO:teuthology.orchestra.run.smithi050.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2024-04-15T21:10:07.199 INFO:teuthology.orchestra.run.smithi050.stderr:++ cat crushmap.txt 2024-04-15T21:10:07.200 INFO:teuthology.orchestra.run.smithi050.stderr:+ CRUSH_MAP='# begin crush map 2024-04-15T21:10:07.200 INFO:teuthology.orchestra.run.smithi050.stderr:tunable choose_local_tries 0 2024-04-15T21:10:07.200 INFO:teuthology.orchestra.run.smithi050.stderr:tunable choose_local_fallback_tries 0 2024-04-15T21:10:07.200 INFO:teuthology.orchestra.run.smithi050.stderr:tunable choose_total_tries 50 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr:tunable chooseleaf_descend_once 1 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr:tunable chooseleaf_vary_r 1 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr:tunable chooseleaf_stable 1 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr:tunable straw_calc_version 1 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr:tunable allowed_bucket_algs 54 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr:# devices 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr:device 0 osd.0 class ssd 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr:device 1 osd.1 class ssd 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr:device 2 osd.2 class ssd 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr:device 3 osd.3 class ssd 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr:# types 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr:type 0 osd 2024-04-15T21:10:07.201 INFO:teuthology.orchestra.run.smithi050.stderr:type 1 host 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr:type 2 chassis 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr:type 3 rack 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr:type 4 row 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr:type 5 pdu 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr:type 6 pod 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr:type 7 room 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr:type 8 datacenter 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr:type 9 zone 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr:type 10 region 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr:type 11 root 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr:# buckets 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr:host smithi050 { 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr: id -3 # do not change unnecessarily 2024-04-15T21:10:07.202 INFO:teuthology.orchestra.run.smithi050.stderr: id -4 class ssd # do not change unnecessarily 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.17459 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.0 weight 0.08730 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.1 weight 0.08730 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr:host smithi151 { 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr: id -5 # do not change unnecessarily 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr: id -6 class ssd # do not change unnecessarily 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.17459 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.2 weight 0.08730 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr: item osd.3 weight 0.08730 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-04-15T21:10:07.203 INFO:teuthology.orchestra.run.smithi050.stderr:root default { 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr: id -1 # do not change unnecessarily 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr: id -2 class ssd # do not change unnecessarily 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr: # weight 0.34918 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr: alg straw2 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr: hash 0 # rjenkins1 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr: item smithi050 weight 0.17459 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr: item smithi151 weight 0.17459 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr:# rules 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr:rule replicated_rule { 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr: id 0 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr: type replicated 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr: step take default 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr: step choose firstn 0 type osd 2024-04-15T21:10:07.204 INFO:teuthology.orchestra.run.smithi050.stderr: step emit 2024-04-15T21:10:07.205 INFO:teuthology.orchestra.run.smithi050.stderr:} 2024-04-15T21:10:07.205 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-04-15T21:10:07.205 INFO:teuthology.orchestra.run.smithi050.stderr:# end crush map' 2024-04-15T21:10:07.205 INFO:teuthology.orchestra.run.smithi050.stderr:+ grep -q smithi174 2024-04-15T21:10:07.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:07 smithi050 ceph-mon[30310]: pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:10:07.839 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:07 smithi050 ceph-mon[30310]: from='client.? 172.21.15.50:0/3720440339' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-15T21:10:07.867 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-15T21:10:07.882 INFO:tasks.cephadm:Teardown begin 2024-04-15T21:10:07.883 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:10:07.916 DEBUG:teuthology.orchestra.run.smithi151:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:10:07.950 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:07 smithi151 ceph-mon[31870]: pgmap v225: 1 pgs: 1 active+clean; 577 KiB data, 113 MiB used, 357 GiB / 358 GiB avail 2024-04-15T21:10:07.950 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:07 smithi151 ceph-mon[31870]: from='client.? 172.21.15.50:0/3720440339' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2024-04-15T21:10:07.955 DEBUG:teuthology.orchestra.run.smithi174:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:10:07.987 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-04-15T21:10:07.988 DEBUG:teuthology.orchestra.run.smithi050:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-15T21:10:08.004 DEBUG:teuthology.orchestra.run.smithi151:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-15T21:10:08.022 DEBUG:teuthology.orchestra.run.smithi174:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-15T21:10:08.042 INFO:tasks.cephadm:Stopping all daemons... 2024-04-15T21:10:08.042 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-04-15T21:10:08.043 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.a 2024-04-15T21:10:08.091 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:08 smithi050 systemd[1]: Stopping Ceph mon.a for 650ea436-fb6b-11ee-bc8f-c7b262605968... 2024-04-15T21:10:08.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:08 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a[30287]: 2024-04-15T21:10:08.343+0000 7f71081d4700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-04-15T21:10:08.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:08 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a[30287]: 2024-04-15T21:10:08.343+0000 7f71081d4700 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2024-04-15T21:10:08.591 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:08 smithi050 podman[57094]: 2024-04-15 21:10:08.405161133 +0000 UTC m=+0.169470708 container died 00a2c11cf43de48ca3a8a369c7db87ad5c4f354f39fb6014819a752d2004fcf2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True, RELEASE=main-87dbfb6, org.label-schema.build-date=20240409, CEPH_POINT_RELEASE=) 2024-04-15T21:10:09.027 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:08 smithi050 podman[57094]: 2024-04-15 21:10:08.756821436 +0000 UTC m=+0.521131021 container cleanup 00a2c11cf43de48ca3a8a369c7db87ad5c4f354f39fb6014819a752d2004fcf2 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a, RELEASE=main-87dbfb6, CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.build-date=20240409, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, GIT_BRANCH=HEAD) 2024-04-15T21:10:09.027 INFO:journalctl@ceph.mon.a.smithi050.stdout:Apr 15 21:10:08 smithi050 bash[57094]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-a 2024-04-15T21:10:09.180 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.a.service' 2024-04-15T21:10:09.235 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:10:09.235 INFO:tasks.cephadm.mon.a:Stopped mon.a 2024-04-15T21:10:09.235 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2024-04-15T21:10:09.235 DEBUG:teuthology.orchestra.run.smithi151:> sudo systemctl stop ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.b 2024-04-15T21:10:09.595 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:09 smithi151 systemd[1]: Stopping Ceph mon.b for 650ea436-fb6b-11ee-bc8f-c7b262605968... 2024-04-15T21:10:09.980 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:09 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-b[31847]: 2024-04-15T21:10:09.600+0000 7f4a62f6f700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.b -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-04-15T21:10:09.980 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:09 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-b[31847]: 2024-04-15T21:10:09.600+0000 7f4a62f6f700 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2024-04-15T21:10:09.980 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:09 smithi151 podman[46277]: 2024-04-15 21:10:09.826508676 +0000 UTC m=+0.390688647 container died 73c4cd3264adb1ac294534655d1d32603d0d83cadb1ad86951f761e8687e196e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-b, maintainer=Guillaume Abrioux , RELEASE=main-87dbfb6, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=) 2024-04-15T21:10:10.435 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:10 smithi151 podman[46277]: 2024-04-15 21:10:10.265236236 +0000 UTC m=+0.829416246 container cleanup 73c4cd3264adb1ac294534655d1d32603d0d83cadb1ad86951f761e8687e196e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-b, CEPH_POINT_RELEASE=, GIT_CLEAN=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, RELEASE=main-87dbfb6, ceph=True, org.label-schema.build-date=20240409, org.label-schema.vendor=CentOS) 2024-04-15T21:10:10.435 INFO:journalctl@ceph.mon.b.smithi151.stdout:Apr 15 21:10:10 smithi151 bash[46277]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mon-b 2024-04-15T21:10:10.653 DEBUG:teuthology.orchestra.run.smithi151:> sudo pkill -f 'journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.b.service' 2024-04-15T21:10:10.703 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:10:10.704 INFO:tasks.cephadm.mon.c:Stopped mon.b 2024-04-15T21:10:10.704 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2024-04-15T21:10:10.704 DEBUG:teuthology.orchestra.run.smithi174:> sudo systemctl stop ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.c 2024-04-15T21:10:10.752 DEBUG:teuthology.orchestra.run.smithi174:> sudo pkill -f 'journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mon.c.service' 2024-04-15T21:10:10.807 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:10:10.807 INFO:tasks.cephadm.mon.c:Stopped mon.c 2024-04-15T21:10:10.808 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2024-04-15T21:10:10.808 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mgr.a 2024-04-15T21:10:11.091 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:10:10 smithi050 systemd[1]: Stopping Ceph mgr.a for 650ea436-fb6b-11ee-bc8f-c7b262605968... 2024-04-15T21:10:11.434 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:10:11 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a[30566]: 2024-04-15T21:10:11.125+0000 7f20b94b6700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mgr -n mgr.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-15T21:10:11.434 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:10:11 smithi050 podman[57505]: 2024-04-15 21:10:11.156402902 +0000 UTC m=+0.159532695 container died c09eeb519b1261535e5b0be3a3a4cc47123678fc6f6c423f4ed055a868e07d32 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, RELEASE=main-87dbfb6, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, io.buildah.version=1.33.5, org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, ceph=True, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS) 2024-04-15T21:10:11.841 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:10:11 smithi050 podman[57505]: 2024-04-15 21:10:11.614517302 +0000 UTC m=+0.617647145 container cleanup c09eeb519b1261535e5b0be3a3a4cc47123678fc6f6c423f4ed055a868e07d32 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:87dbfb632e974cb2c28d17423071d2d833b53b29, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.build-date=20240409, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, GIT_CLEAN=True, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-87dbfb6, org.label-schema.name=CentOS Stream 8 Base Image, ceph=True) 2024-04-15T21:10:11.841 INFO:journalctl@ceph.mgr.a.smithi050.stdout:Apr 15 21:10:11 smithi050 bash[57505]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-a 2024-04-15T21:10:11.988 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mgr.a.service' 2024-04-15T21:10:12.027 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:10:12.028 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2024-04-15T21:10:12.028 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2024-04-15T21:10:12.028 DEBUG:teuthology.orchestra.run.smithi151:> sudo systemctl stop ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mgr.b 2024-04-15T21:10:12.345 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:10:12 smithi151 systemd[1]: Stopping Ceph mgr.b for 650ea436-fb6b-11ee-bc8f-c7b262605968... 2024-04-15T21:10:12.638 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:10:12 smithi151 podman[46407]: 2024-04-15 21:10:12.351215143 +0000 UTC m=+0.116761650 container died 1c193dc8c9458b70adb7bc5a4a08733b509cbc8136fdea8ca667d2b8a36886ef (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_CLEAN=True, maintainer=Guillaume Abrioux , RELEASE=main-87dbfb6, org.label-schema.build-date=20240409, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67) 2024-04-15T21:10:12.906 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:10:12 smithi151 podman[46407]: 2024-04-15 21:10:12.786268499 +0000 UTC m=+0.551815052 container cleanup 1c193dc8c9458b70adb7bc5a4a08733b509cbc8136fdea8ca667d2b8a36886ef (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-87dbfb6, org.label-schema.build-date=20240409, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2) 2024-04-15T21:10:12.906 INFO:journalctl@ceph.mgr.b.smithi151.stdout:Apr 15 21:10:12 smithi151 bash[46407]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-mgr-b 2024-04-15T21:10:13.124 DEBUG:teuthology.orchestra.run.smithi151:> sudo pkill -f 'journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@mgr.b.service' 2024-04-15T21:10:13.161 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:10:13.161 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2024-04-15T21:10:13.162 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2024-04-15T21:10:13.162 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.0 2024-04-15T21:10:13.449 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:13 smithi050 systemd[1]: Stopping Ceph osd.0 for 650ea436-fb6b-11ee-bc8f-c7b262605968... 2024-04-15T21:10:13.841 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:13 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0[42618]: 2024-04-15T21:10:13.454+0000 7fb31ee16700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.0 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-15T21:10:13.841 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:13 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0[42618]: 2024-04-15T21:10:13.454+0000 7fb31ee16700 -1 osd.0 58 *** Got signal Terminated *** 2024-04-15T21:10:13.841 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:13 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0[42618]: 2024-04-15T21:10:13.454+0000 7fb31ee16700 -1 osd.0 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T21:10:19.084 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:18 smithi050 podman[57661]: 2024-04-15 21:10:18.802233983 +0000 UTC m=+5.446002360 container stop 67608a415d23e2336110d7756dee4175628ed728da7462a653df2f90afcae0da (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0, org.label-schema.build-date=20240409, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, ceph=True, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-87dbfb6, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-15T21:10:19.084 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:18 smithi050 podman[57661]: 2024-04-15 21:10:18.829749186 +0000 UTC m=+5.473517558 container died 67608a415d23e2336110d7756dee4175628ed728da7462a653df2f90afcae0da (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0, CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-87dbfb6, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux ) 2024-04-15T21:10:19.341 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:19 smithi050 podman[57661]: 2024-04-15 21:10:19.17995419 +0000 UTC m=+5.823722547 container cleanup 67608a415d23e2336110d7756dee4175628ed728da7462a653df2f90afcae0da (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, RELEASE=main-87dbfb6, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True, org.label-schema.build-date=20240409, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , GIT_CLEAN=True) 2024-04-15T21:10:19.341 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:19 smithi050 bash[57661]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0 2024-04-15T21:10:19.752 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:19 smithi050 podman[57855]: 2024-04-15 21:10:19.347616316 +0000 UTC m=+0.537316086 container remove 67608a415d23e2336110d7756dee4175628ed728da7462a653df2f90afcae0da (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-87dbfb6, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , ceph=True, CEPH_POINT_RELEASE=) 2024-04-15T21:10:20.091 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:19 smithi050 podman[57949]: 2024-04-15 21:10:19.66177787 +0000 UTC m=+0.017585563 image pull a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f 2024-04-15T21:10:20.091 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:19 smithi050 podman[57949]: 2024-04-15 21:10:19.765068874 +0000 UTC m=+0.120876565 container create cc3eb788dac7237ec77732d5ff62f4276641285952d03f30eebb5e66adf4af3e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0-deactivate, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-87dbfb6, GIT_CLEAN=True, org.label-schema.license=GPLv2, ceph=True, org.label-schema.build-date=20240409, GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-15T21:10:20.092 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:19 smithi050 podman[57949]: 2024-04-15 21:10:19.967549914 +0000 UTC m=+0.323357608 container init cc3eb788dac7237ec77732d5ff62f4276641285952d03f30eebb5e66adf4af3e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0-deactivate, org.label-schema.schema-version=1.0, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, org.label-schema.build-date=20240409, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, RELEASE=main-87dbfb6, org.label-schema.license=GPLv2) 2024-04-15T21:10:20.092 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:19 smithi050 podman[57949]: 2024-04-15 21:10:19.973069093 +0000 UTC m=+0.328876786 container start cc3eb788dac7237ec77732d5ff62f4276641285952d03f30eebb5e66adf4af3e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0-deactivate, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, GIT_CLEAN=True, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240409, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , RELEASE=main-87dbfb6) 2024-04-15T21:10:20.505 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:20 smithi050 podman[57949]: 2024-04-15 21:10:20.100692208 +0000 UTC m=+0.456499917 container attach cc3eb788dac7237ec77732d5ff62f4276641285952d03f30eebb5e66adf4af3e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0-deactivate, ceph=True, org.label-schema.build-date=20240409, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, RELEASE=main-87dbfb6, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , GIT_CLEAN=True, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.schema-version=1.0) 2024-04-15T21:10:20.505 INFO:journalctl@ceph.osd.0.smithi050.stdout:Apr 15 21:10:20 smithi050 podman[57949]: 2024-04-15 21:10:20.279701992 +0000 UTC m=+0.635509682 container died cc3eb788dac7237ec77732d5ff62f4276641285952d03f30eebb5e66adf4af3e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-0-deactivate, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240409, RELEASE=main-87dbfb6, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_BRANCH=HEAD, GIT_CLEAN=True, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, io.buildah.version=1.33.5) 2024-04-15T21:10:20.873 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.0.service' 2024-04-15T21:10:20.923 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:10:20.923 INFO:tasks.cephadm.osd.0:Stopped osd.0 2024-04-15T21:10:20.923 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2024-04-15T21:10:20.924 DEBUG:teuthology.orchestra.run.smithi050:> sudo systemctl stop ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.1 2024-04-15T21:10:21.264 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:20 smithi050 systemd[1]: Stopping Ceph osd.1 for 650ea436-fb6b-11ee-bc8f-c7b262605968... 2024-04-15T21:10:21.592 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:21 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-1[46437]: 2024-04-15T21:10:21.268+0000 7f576f01f700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.1 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-15T21:10:21.592 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:21 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-1[46437]: 2024-04-15T21:10:21.268+0000 7f576f01f700 -1 osd.1 58 *** Got signal Terminated *** 2024-04-15T21:10:21.592 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:21 smithi050 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-1[46437]: 2024-04-15T21:10:21.268+0000 7f576f01f700 -1 osd.1 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T21:10:27.060 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:26 smithi050 podman[58083]: 2024-04-15 21:10:26.778778244 +0000 UTC m=+5.648439185 container died 98ec8d60090670561db4da29f4681cf5ee631ba4922592cde07c32c969b4177e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-1, org.label-schema.license=GPLv2, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, RELEASE=main-87dbfb6, ceph=True, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD) 2024-04-15T21:10:27.341 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:27 smithi050 podman[58083]: 2024-04-15 21:10:27.240178521 +0000 UTC m=+6.109839500 container cleanup 98ec8d60090670561db4da29f4681cf5ee631ba4922592cde07c32c969b4177e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-1, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, RELEASE=main-87dbfb6, io.buildah.version=1.33.5) 2024-04-15T21:10:27.341 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:27 smithi050 bash[58083]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-1 2024-04-15T21:10:27.785 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:27 smithi050 podman[58109]: 2024-04-15 21:10:27.482740715 +0000 UTC m=+0.704934120 container remove 98ec8d60090670561db4da29f4681cf5ee631ba4922592cde07c32c969b4177e (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-1, GIT_CLEAN=True, org.label-schema.build-date=20240409, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_BRANCH=HEAD, RELEASE=main-87dbfb6, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-15T21:10:28.091 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:27 smithi050 podman[58202]: 2024-04-15 21:10:27.791760557 +0000 UTC m=+0.093920395 container create aa4832500ed46ec34a000033229359fc8f6e7b75c9aa991eea9cc32ee949e1ff (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-1-deactivate, GIT_BRANCH=HEAD, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240409, RELEASE=main-87dbfb6, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-15T21:10:28.092 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:27 smithi050 podman[58202]: 2024-04-15 21:10:27.71593791 +0000 UTC m=+0.018097773 image pull a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f 2024-04-15T21:10:28.092 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:27 smithi050 podman[58202]: 2024-04-15 21:10:27.960557449 +0000 UTC m=+0.262717289 container init aa4832500ed46ec34a000033229359fc8f6e7b75c9aa991eea9cc32ee949e1ff (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-1-deactivate, GIT_CLEAN=True, io.buildah.version=1.33.5, RELEASE=main-87dbfb6, CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0) 2024-04-15T21:10:28.092 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:27 smithi050 podman[58202]: 2024-04-15 21:10:27.96583492 +0000 UTC m=+0.267994758 container start aa4832500ed46ec34a000033229359fc8f6e7b75c9aa991eea9cc32ee949e1ff (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-1-deactivate, RELEASE=main-87dbfb6, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_BRANCH=HEAD, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 8 Base Image, ceph=True, GIT_CLEAN=True) 2024-04-15T21:10:28.092 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:28 smithi050 podman[58202]: 2024-04-15 21:10:28.0353838 +0000 UTC m=+0.337543652 container attach aa4832500ed46ec34a000033229359fc8f6e7b75c9aa991eea9cc32ee949e1ff (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-1-deactivate, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, RELEASE=main-87dbfb6, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, maintainer=Guillaume Abrioux , GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_CLEAN=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=) 2024-04-15T21:10:28.591 INFO:journalctl@ceph.osd.1.smithi050.stdout:Apr 15 21:10:28 smithi050 podman[58202]: 2024-04-15 21:10:28.271454033 +0000 UTC m=+0.573613887 container died aa4832500ed46ec34a000033229359fc8f6e7b75c9aa991eea9cc32ee949e1ff (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-1-deactivate, ceph=True, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.schema-version=1.0, GIT_CLEAN=True, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, RELEASE=main-87dbfb6, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-15T21:10:28.861 DEBUG:teuthology.orchestra.run.smithi050:> sudo pkill -f 'journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.1.service' 2024-04-15T21:10:28.905 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:10:28.905 INFO:tasks.cephadm.osd.1:Stopped osd.1 2024-04-15T21:10:28.905 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2024-04-15T21:10:28.905 DEBUG:teuthology.orchestra.run.smithi151:> sudo systemctl stop ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.2 2024-04-15T21:10:29.217 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:28 smithi151 systemd[1]: Stopping Ceph osd.2 for 650ea436-fb6b-11ee-bc8f-c7b262605968... 2024-04-15T21:10:29.480 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:29 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2[37593]: 2024-04-15T21:10:29.222+0000 7f0bbd70f700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.2 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-15T21:10:29.480 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:29 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2[37593]: 2024-04-15T21:10:29.222+0000 7f0bbd70f700 -1 osd.2 58 *** Got signal Terminated *** 2024-04-15T21:10:29.480 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:29 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2[37593]: 2024-04-15T21:10:29.222+0000 7f0bbd70f700 -1 osd.2 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T21:10:34.808 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:34 smithi151 podman[47021]: 2024-04-15 21:10:34.530177348 +0000 UTC m=+5.424402650 container died 27a8ad1f5715f3a25a42578858ffce01a9ff404d271a202bcf448f11aea05ac0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2, GIT_CLEAN=True, CEPH_POINT_RELEASE=, RELEASE=main-87dbfb6, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, GIT_BRANCH=HEAD, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux ) 2024-04-15T21:10:35.122 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:34 smithi151 podman[47021]: 2024-04-15 21:10:34.987485348 +0000 UTC m=+5.881710680 container cleanup 27a8ad1f5715f3a25a42578858ffce01a9ff404d271a202bcf448f11aea05ac0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, ceph=True, org.label-schema.build-date=20240409, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_CLEAN=True, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-87dbfb6) 2024-04-15T21:10:35.123 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:34 smithi151 bash[47021]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2 2024-04-15T21:10:35.450 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:35 smithi151 bash[47127]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2 2024-04-15T21:10:35.730 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:35 smithi151 podman[47045]: 2024-04-15 21:10:35.455686301 +0000 UTC m=+0.918510074 container remove 27a8ad1f5715f3a25a42578858ffce01a9ff404d271a202bcf448f11aea05ac0 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240409, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, RELEASE=main-87dbfb6, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, io.buildah.version=1.33.5, ceph=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_CLEAN=True) 2024-04-15T21:10:35.730 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:35 smithi151 podman[47264]: 2024-04-15 21:10:35.656480238 +0000 UTC m=+0.102199889 container create d6f65d8c3db799a3da339ee532b62ffa54da8c191b0b57dc1e8d6fe7aee4e671 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2-deactivate, ceph=True, RELEASE=main-87dbfb6, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.build-date=20240409, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, GIT_CLEAN=True, io.buildah.version=1.33.5, GIT_BRANCH=HEAD) 2024-04-15T21:10:35.730 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:35 smithi151 podman[47264]: 2024-04-15 21:10:35.576630406 +0000 UTC m=+0.022350099 image pull a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f 2024-04-15T21:10:36.168 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:35 smithi151 podman[47264]: 2024-04-15 21:10:35.825625103 +0000 UTC m=+0.271344768 container init d6f65d8c3db799a3da339ee532b62ffa54da8c191b0b57dc1e8d6fe7aee4e671 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2-deactivate, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-87dbfb6, GIT_CLEAN=True, ceph=True, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.build-date=20240409) 2024-04-15T21:10:36.168 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:35 smithi151 podman[47264]: 2024-04-15 21:10:35.831667673 +0000 UTC m=+0.277387327 container start d6f65d8c3db799a3da339ee532b62ffa54da8c191b0b57dc1e8d6fe7aee4e671 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2-deactivate, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240409, org.label-schema.vendor=CentOS, RELEASE=main-87dbfb6, ceph=True, GIT_CLEAN=True, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-15T21:10:36.168 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:35 smithi151 podman[47264]: 2024-04-15 21:10:35.916775651 +0000 UTC m=+0.362495306 container attach d6f65d8c3db799a3da339ee532b62ffa54da8c191b0b57dc1e8d6fe7aee4e671 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2-deactivate, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, RELEASE=main-87dbfb6, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, ceph=True, GIT_CLEAN=True) 2024-04-15T21:10:36.169 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:36 smithi151 podman[47264]: 2024-04-15 21:10:36.173966513 +0000 UTC m=+0.619686177 container died d6f65d8c3db799a3da339ee532b62ffa54da8c191b0b57dc1e8d6fe7aee4e671 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2-deactivate, org.label-schema.build-date=20240409, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, RELEASE=main-87dbfb6, GIT_CLEAN=True, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.schema-version=1.0) 2024-04-15T21:10:36.704 INFO:journalctl@ceph.osd.2.smithi151.stdout:Apr 15 21:10:36 smithi151 podman[47356]: 2024-04-15 21:10:36.68669587 +0000 UTC m=+0.507261020 container remove d6f65d8c3db799a3da339ee532b62ffa54da8c191b0b57dc1e8d6fe7aee4e671 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-2-deactivate, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.vendor=CentOS, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, ceph=True, CEPH_POINT_RELEASE=, RELEASE=main-87dbfb6, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5) 2024-04-15T21:10:36.708 DEBUG:teuthology.orchestra.run.smithi151:> sudo pkill -f 'journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.2.service' 2024-04-15T21:10:36.753 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:10:36.754 INFO:tasks.cephadm.osd.2:Stopped osd.2 2024-04-15T21:10:36.754 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2024-04-15T21:10:36.754 DEBUG:teuthology.orchestra.run.smithi151:> sudo systemctl stop ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.3 2024-04-15T21:10:36.980 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:36 smithi151 systemd[1]: Stopping Ceph osd.3 for 650ea436-fb6b-11ee-bc8f-c7b262605968... 2024-04-15T21:10:37.478 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:37 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3[41518]: 2024-04-15T21:10:37.092+0000 7f7a259fa700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.3 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-15T21:10:37.479 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:37 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3[41518]: 2024-04-15T21:10:37.092+0000 7f7a259fa700 -1 osd.3 58 *** Got signal Terminated *** 2024-04-15T21:10:37.479 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:37 smithi151 ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3[41518]: 2024-04-15T21:10:37.092+0000 7f7a259fa700 -1 osd.3 58 *** Immediate shutdown (osd_fast_shutdown=true) *** 2024-04-15T21:10:42.880 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:42 smithi151 podman[47482]: 2024-04-15 21:10:42.599720714 +0000 UTC m=+5.630317786 container died 1a0aa24e1425e70a67ab8745145d58d295a47a07688045e95a3cad018ad86a89 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, CEPH_POINT_RELEASE=, ceph=True, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-87dbfb6, maintainer=Guillaume Abrioux ) 2024-04-15T21:10:43.196 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:42 smithi151 podman[47482]: 2024-04-15 21:10:42.984268965 +0000 UTC m=+6.014866029 container cleanup 1a0aa24e1425e70a67ab8745145d58d295a47a07688045e95a3cad018ad86a89 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240409, org.label-schema.name=CentOS Stream 8 Base Image, GIT_BRANCH=HEAD, ceph=True, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, CEPH_POINT_RELEASE=, RELEASE=main-87dbfb6, GIT_CLEAN=True, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67) 2024-04-15T21:10:43.196 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:42 smithi151 bash[47482]: ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3 2024-04-15T21:10:43.480 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:43 smithi151 podman[47767]: 2024-04-15 21:10:43.201698028 +0000 UTC m=+0.598277452 container remove 1a0aa24e1425e70a67ab8745145d58d295a47a07688045e95a3cad018ad86a89 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, ceph=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.build-date=20240409, RELEASE=main-87dbfb6, CEPH_POINT_RELEASE=, GIT_CLEAN=True) 2024-04-15T21:10:43.832 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:43 smithi151 podman[47864]: 2024-04-15 21:10:43.429426941 +0000 UTC m=+0.017994232 image pull a452a57266c718c37049de4c2da9a5e566bb7b9c6db62908ada4c8b0e854997b quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f 2024-04-15T21:10:43.832 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:43 smithi151 podman[47864]: 2024-04-15 21:10:43.527483234 +0000 UTC m=+0.116050511 container create 9d37183466220fdbe070959724c9176f963145286650680909fb06f97e652cfa (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3-deactivate, ceph=True, org.label-schema.build-date=20240409, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, org.label-schema.license=GPLv2, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, RELEASE=main-87dbfb6, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS) 2024-04-15T21:10:43.832 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:43 smithi151 podman[47864]: 2024-04-15 21:10:43.746697936 +0000 UTC m=+0.335265212 container init 9d37183466220fdbe070959724c9176f963145286650680909fb06f97e652cfa (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3-deactivate, GIT_BRANCH=HEAD, RELEASE=main-87dbfb6, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, CEPH_POINT_RELEASE=, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, GIT_CLEAN=True, ceph=True, org.label-schema.vendor=CentOS, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.build-date=20240409) 2024-04-15T21:10:43.833 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:43 smithi151 podman[47864]: 2024-04-15 21:10:43.75255742 +0000 UTC m=+0.341124698 container start 9d37183466220fdbe070959724c9176f963145286650680909fb06f97e652cfa (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3-deactivate, ceph=True, GIT_CLEAN=True, GIT_BRANCH=HEAD, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, RELEASE=main-87dbfb6, org.label-schema.build-date=20240409, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-15T21:10:43.833 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:43 smithi151 podman[47864]: 2024-04-15 21:10:43.838161798 +0000 UTC m=+0.426729076 container attach 9d37183466220fdbe070959724c9176f963145286650680909fb06f97e652cfa (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3-deactivate, org.label-schema.build-date=20240409, GIT_CLEAN=True, org.label-schema.vendor=CentOS, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, RELEASE=main-87dbfb6, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67) 2024-04-15T21:10:44.230 INFO:journalctl@ceph.osd.3.smithi151.stdout:Apr 15 21:10:44 smithi151 podman[47864]: 2024-04-15 21:10:44.044419441 +0000 UTC m=+0.632986719 container died 9d37183466220fdbe070959724c9176f963145286650680909fb06f97e652cfa (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:386dcbdb0b8a78b880705c56a17f715946e178c298e478ab4b58fddb8072ae6f, name=ceph-650ea436-fb6b-11ee-bc8f-c7b262605968-osd-3-deactivate, org.label-schema.build-date=20240409, GIT_COMMIT=e83daab126629de4b83b70f7819e84da953b5b67, GIT_BRANCH=HEAD, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, 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.33.5, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, RELEASE=main-87dbfb6, maintainer=Guillaume Abrioux ) 2024-04-15T21:10:44.580 DEBUG:teuthology.orchestra.run.smithi151:> sudo pkill -f 'journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.3.service' 2024-04-15T21:10:44.621 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:10:44.622 INFO:tasks.cephadm.osd.3:Stopped osd.3 2024-04-15T21:10:44.622 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2024-04-15T21:10:44.622 DEBUG:teuthology.orchestra.run.smithi174:> sudo systemctl stop ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.4 2024-04-15T21:10:44.672 DEBUG:teuthology.orchestra.run.smithi174:> sudo pkill -f 'journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.4.service' 2024-04-15T21:10:44.710 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:10:44.711 INFO:tasks.cephadm.osd.4:Stopped osd.4 2024-04-15T21:10:44.711 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2024-04-15T21:10:44.711 DEBUG:teuthology.orchestra.run.smithi174:> sudo systemctl stop ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.5 2024-04-15T21:10:44.794 DEBUG:teuthology.orchestra.run.smithi174:> sudo pkill -f 'journalctl -f -n 0 -u ceph-650ea436-fb6b-11ee-bc8f-c7b262605968@osd.5.service' 2024-04-15T21:10:44.870 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-04-15T21:10:44.871 INFO:tasks.cephadm.osd.5:Stopped osd.5 2024-04-15T21:10:44.871 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 --force --keep-logs 2024-04-15T21:10:45.075 INFO:teuthology.orchestra.run.smithi050.stdout:Deleting cluster with fsid: 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:10:46.643 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 --force --keep-logs 2024-04-15T21:10:46.840 INFO:teuthology.orchestra.run.smithi151.stdout:Deleting cluster with fsid: 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:10:48.262 DEBUG:teuthology.orchestra.run.smithi174:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 --force --keep-logs 2024-04-15T21:10:48.456 INFO:teuthology.orchestra.run.smithi174.stdout:Deleting cluster with fsid: 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:10:48.842 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:10:48.880 DEBUG:teuthology.orchestra.run.smithi151:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:10:48.915 DEBUG:teuthology.orchestra.run.smithi174:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-04-15T21:10:48.945 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-15T21:10:48.946 DEBUG:teuthology.misc:Transferring archived files from smithi050:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319/remote/smithi050/crash 2024-04-15T21:10:48.947 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T21:10:48.991 INFO:teuthology.orchestra.run.smithi050.stderr:tar: /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T21:10:48.991 INFO:teuthology.orchestra.run.smithi050.stderr:tar: Error is not recoverable: exiting now 2024-04-15T21:10:48.993 DEBUG:teuthology.misc:Transferring archived files from smithi151:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319/remote/smithi151/crash 2024-04-15T21:10:48.994 DEBUG:teuthology.orchestra.run.smithi151:> sudo tar c -f - -C /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T21:10:49.057 INFO:teuthology.orchestra.run.smithi151.stderr:tar: /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T21:10:49.057 INFO:teuthology.orchestra.run.smithi151.stderr:tar: Error is not recoverable: exiting now 2024-04-15T21:10:49.058 DEBUG:teuthology.misc:Transferring archived files from smithi174:/var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319/remote/smithi174/crash 2024-04-15T21:10:49.059 DEBUG:teuthology.orchestra.run.smithi174:> sudo tar c -f - -C /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/crash -- . 2024-04-15T21:10:49.100 INFO:teuthology.orchestra.run.smithi174.stderr:tar: /var/lib/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T21:10:49.100 INFO:teuthology.orchestra.run.smithi174.stderr:tar: Error is not recoverable: exiting now 2024-04-15T21:10:49.101 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-15T21:10:49.101 DEBUG:teuthology.orchestra.run.smithi050:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/650ea436-fb6b-11ee-bc8f-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' | head -n 1 2024-04-15T21:10:49.137 INFO:teuthology.orchestra.run.smithi050.stdout:2024-04-15T21:06:29.685210+0000 mon.a (mon.0) 471 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-15T21:10:49.138 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2024-04-15T21:10:49.138 DEBUG:teuthology.orchestra.run.smithi050:> sudo egrep '\[SEC\]' /var/log/ceph/650ea436-fb6b-11ee-bc8f-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' | head -n 1 2024-04-15T21:10:49.212 DEBUG:teuthology.orchestra.run.smithi050:> sudo egrep '\[ERR\]' /var/log/ceph/650ea436-fb6b-11ee-bc8f-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' | head -n 1 2024-04-15T21:10:49.286 DEBUG:teuthology.orchestra.run.smithi050:> sudo egrep '\[WRN\]' /var/log/ceph/650ea436-fb6b-11ee-bc8f-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' | head -n 1 2024-04-15T21:10:49.359 INFO:teuthology.orchestra.run.smithi050.stdout:2024-04-15T21:06:29.685210+0000 mon.a (mon.0) 471 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON) 2024-04-15T21:10:49.360 INFO:tasks.cephadm:Compressing logs... 2024-04-15T21:10:49.360 DEBUG:teuthology.orchestra.run.smithi050:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-15T21:10:49.402 DEBUG:teuthology.orchestra.run.smithi151:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-15T21:10:49.405 DEBUG:teuthology.orchestra.run.smithi174:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-15T21:10:49.428 INFO:teuthology.orchestra.run.smithi050.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T21:10:49.428 INFO:teuthology.orchestra.run.smithi050.stderr:: No such file or directory 2024-04-15T21:10:49.428 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mon.a.log 2024-04-15T21:10:49.429 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.audit.log 2024-04-15T21:10:49.430 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mgr.a.log 2024-04-15T21:10:49.430 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mon.a.log: /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.1.log 2024-04-15T21:10:49.435 INFO:teuthology.orchestra.run.smithi050.stderr:gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.0.log 2024-04-15T21:10:49.436 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mgr.a.log: /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.cephadm.log 2024-04-15T21:10:49.436 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.log 2024-04-15T21:10:49.436 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-volume.log 2024-04-15T21:10:49.436 INFO:teuthology.orchestra.run.smithi050.stderr: 83.2% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.cephadm.log.gz 2024-04-15T21:10:49.436 INFO:teuthology.orchestra.run.smithi050.stderr: 86.5% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T21:10:49.436 INFO:teuthology.orchestra.run.smithi050.stderr: 90.4% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.audit.log.gz 2024-04-15T21:10:49.436 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.log: 86.0% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.log.gz 2024-04-15T21:10:49.441 INFO:teuthology.orchestra.run.smithi174.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T21:10:49.441 INFO:teuthology.orchestra.run.smithi174.stderr:: No such file or directory 2024-04-15T21:10:49.441 INFO:teuthology.orchestra.run.smithi174.stderr:gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.audit.log 2024-04-15T21:10:49.441 INFO:teuthology.orchestra.run.smithi174.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.4.log 2024-04-15T21:10:49.441 INFO:teuthology.orchestra.run.smithi174.stderr:gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.5.log 2024-04-15T21:10:49.441 INFO:teuthology.orchestra.run.smithi174.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.audit.log: /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.cephadm.log 2024-04-15T21:10:49.441 INFO:teuthology.orchestra.run.smithi174.stderr:gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.log 2024-04-15T21:10:49.441 INFO:teuthology.orchestra.run.smithi174.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.5.log: /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-volume.log 2024-04-15T21:10:49.442 INFO:teuthology.orchestra.run.smithi174.stderr: 79.6% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.cephadm.log.gz 2024-04-15T21:10:49.442 INFO:teuthology.orchestra.run.smithi174.stderr: 83.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T21:10:49.442 INFO:teuthology.orchestra.run.smithi174.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.log: gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mon.c.log 2024-04-15T21:10:49.442 INFO:teuthology.orchestra.run.smithi174.stderr: 90.5% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.audit.log.gz 2024-04-15T21:10:49.442 INFO:teuthology.orchestra.run.smithi174.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-volume.log: 85.6% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.log.gz 2024-04-15T21:10:49.442 INFO:teuthology.orchestra.run.smithi151.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T21:10:49.442 INFO:teuthology.orchestra.run.smithi151.stderr:: No such file or directory 2024-04-15T21:10:49.443 INFO:teuthology.orchestra.run.smithi151.stderr:gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.audit.log 2024-04-15T21:10:49.443 INFO:teuthology.orchestra.run.smithi151.stderr:gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.3.log 2024-04-15T21:10:49.443 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/cephadm.log: /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.cephadm.log 2024-04-15T21:10:49.443 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.log 2024-04-15T21:10:49.443 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.cephadm.log: 83.9% -- replaced with /var/log/ceph/cephadm.log.gzgzip 2024-04-15T21:10:49.443 INFO:teuthology.orchestra.run.smithi151.stderr: -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.2.log 2024-04-15T21:10:49.443 INFO:teuthology.orchestra.run.smithi151.stderr: 82.5% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.cephadm.log.gz 2024-04-15T21:10:49.443 INFO:teuthology.orchestra.run.smithi151.stderr:gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mgr.b.log 2024-04-15T21:10:49.443 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.log: 90.5% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.audit.log.gz 2024-04-15T21:10:49.443 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-volume.log 2024-04-15T21:10:49.443 INFO:teuthology.orchestra.run.smithi151.stderr: 85.8% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph.log.gz 2024-04-15T21:10:49.443 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mon.b.log 2024-04-15T21:10:49.443 INFO:teuthology.orchestra.run.smithi151.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-volume.log: /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mon.b.log: 91.0% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mgr.b.log.gz 2024-04-15T21:10:49.447 INFO:teuthology.orchestra.run.smithi050.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-volume.log: 91.4% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-volume.log.gz 2024-04-15T21:10:49.447 INFO:teuthology.orchestra.run.smithi174.stderr:/var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mon.c.log: 91.5% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-volume.log.gz 2024-04-15T21:10:49.456 INFO:teuthology.orchestra.run.smithi174.stderr: 92.7% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.4.log.gz 2024-04-15T21:10:49.456 INFO:teuthology.orchestra.run.smithi174.stderr: 92.7% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.5.log.gz 2024-04-15T21:10:49.460 INFO:teuthology.orchestra.run.smithi151.stderr: 91.4% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-volume.log.gz 2024-04-15T21:10:49.485 INFO:teuthology.orchestra.run.smithi151.stderr: 93.0% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.3.log.gz 2024-04-15T21:10:49.488 INFO:teuthology.orchestra.run.smithi174.stderr: 92.6% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mon.c.log.gz 2024-04-15T21:10:49.490 INFO:teuthology.orchestra.run.smithi050.stderr: 93.3% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.1.log.gz 2024-04-15T21:10:49.491 INFO:teuthology.orchestra.run.smithi174.stderr: 2024-04-15T21:10:49.491 INFO:teuthology.orchestra.run.smithi174.stderr:real 0m0.070s 2024-04-15T21:10:49.492 INFO:teuthology.orchestra.run.smithi174.stderr:user 0m0.122s 2024-04-15T21:10:49.492 INFO:teuthology.orchestra.run.smithi174.stderr:sys 0m0.025s 2024-04-15T21:10:49.496 INFO:teuthology.orchestra.run.smithi050.stderr: 93.2% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.0.log.gz 2024-04-15T21:10:49.514 INFO:teuthology.orchestra.run.smithi151.stderr: 92.3% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mon.b.log.gz 2024-04-15T21:10:49.515 INFO:teuthology.orchestra.run.smithi050.stderr: 87.8% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mgr.a.log.gz 2024-04-15T21:10:49.519 INFO:teuthology.orchestra.run.smithi151.stderr: 93.4% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-osd.2.log.gz 2024-04-15T21:10:49.520 INFO:teuthology.orchestra.run.smithi151.stderr: 2024-04-15T21:10:49.520 INFO:teuthology.orchestra.run.smithi151.stderr:real 0m0.100s 2024-04-15T21:10:49.521 INFO:teuthology.orchestra.run.smithi151.stderr:user 0m0.242s 2024-04-15T21:10:49.521 INFO:teuthology.orchestra.run.smithi151.stderr:sys 0m0.028s 2024-04-15T21:10:49.681 INFO:teuthology.orchestra.run.smithi050.stderr: 91.2% -- replaced with /var/log/ceph/650ea436-fb6b-11ee-bc8f-c7b262605968/ceph-mon.a.log.gz 2024-04-15T21:10:49.683 INFO:teuthology.orchestra.run.smithi050.stderr: 2024-04-15T21:10:49.683 INFO:teuthology.orchestra.run.smithi050.stderr:real 0m0.268s 2024-04-15T21:10:49.683 INFO:teuthology.orchestra.run.smithi050.stderr:user 0m0.482s 2024-04-15T21:10:49.683 INFO:teuthology.orchestra.run.smithi050.stderr:sys 0m0.035s 2024-04-15T21:10:49.683 INFO:tasks.cephadm:Archiving logs... 2024-04-15T21:10:49.684 DEBUG:teuthology.misc:Transferring archived files from smithi050:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319/remote/smithi050/log 2024-04-15T21:10:49.685 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T21:10:49.840 DEBUG:teuthology.misc:Transferring archived files from smithi151:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319/remote/smithi151/log 2024-04-15T21:10:49.841 DEBUG:teuthology.orchestra.run.smithi151:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T21:10:49.920 DEBUG:teuthology.misc:Transferring archived files from smithi174:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319/remote/smithi174/log 2024-04-15T21:10:49.920 DEBUG:teuthology.orchestra.run.smithi174:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T21:10:49.971 INFO:tasks.cephadm:Removing cluster... 2024-04-15T21:10:49.972 DEBUG:teuthology.orchestra.run.smithi050:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 --force 2024-04-15T21:10:50.159 INFO:teuthology.orchestra.run.smithi050.stdout:Deleting cluster with fsid: 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:10:50.412 DEBUG:teuthology.orchestra.run.smithi151:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 --force 2024-04-15T21:10:50.602 INFO:teuthology.orchestra.run.smithi151.stdout:Deleting cluster with fsid: 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:10:50.854 DEBUG:teuthology.orchestra.run.smithi174:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 650ea436-fb6b-11ee-bc8f-c7b262605968 --force 2024-04-15T21:10:51.046 INFO:teuthology.orchestra.run.smithi174.stdout:Deleting cluster with fsid: 650ea436-fb6b-11ee-bc8f-c7b262605968 2024-04-15T21:10:51.298 INFO:tasks.cephadm:Removing cephadm ... 2024-04-15T21:10:51.298 DEBUG:teuthology.orchestra.run.smithi050:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T21:10:51.317 DEBUG:teuthology.orchestra.run.smithi151:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T21:10:51.335 DEBUG:teuthology.orchestra.run.smithi174:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T21:10:51.350 INFO:tasks.cephadm:Teardown complete 2024-04-15T21:10:51.351 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-04-15T21:10:51.362 INFO:teuthology.task.install.util:Removing shipped files: /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer... 2024-04-15T21:10:51.363 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T21:10:51.365 DEBUG:teuthology.orchestra.run.smithi151:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T21:10:51.378 DEBUG:teuthology.orchestra.run.smithi174:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T21:10:51.498 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-15T21:10:51.507 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-15T21:10:51.507 DEBUG:teuthology.orchestra.run.smithi050:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T21:10:51.510 DEBUG:teuthology.orchestra.run.smithi151:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T21:10:51.513 DEBUG:teuthology.orchestra.run.smithi174:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T21:10:51.524 INFO:teuthology.orchestra.run.smithi050.stderr:bash: line 1: ntpq: command not found 2024-04-15T21:10:51.526 INFO:teuthology.orchestra.run.smithi151.stderr:bash: line 1: ntpq: command not found 2024-04-15T21:10:51.527 INFO:teuthology.orchestra.run.smithi174.stderr:bash: line 1: ntpq: command not found 2024-04-15T21:10:51.529 INFO:teuthology.orchestra.run.smithi050.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T21:10:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:=============================================================================== 2024-04-15T21:10:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:^+ hv01.front.sepia.ceph.com 3 6 377 33 +837us[ +860us] +/- 68ms 2024-04-15T21:10:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:^* hv02.front.sepia.ceph.com 3 6 377 33 -432us[ -408us] +/- 64ms 2024-04-15T21:10:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 34 -423us[ -400us] +/- 73ms 2024-04-15T21:10:51.530 INFO:teuthology.orchestra.run.smithi050.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T21:10:51.531 INFO:teuthology.orchestra.run.smithi151.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T21:10:51.531 INFO:teuthology.orchestra.run.smithi151.stdout:=============================================================================== 2024-04-15T21:10:51.531 INFO:teuthology.orchestra.run.smithi151.stdout:^+ hv01.front.sepia.ceph.com 3 6 377 35 +849us[ +864us] +/- 67ms 2024-04-15T21:10:51.531 INFO:teuthology.orchestra.run.smithi151.stdout:^* hv02.front.sepia.ceph.com 3 6 377 34 -421us[ -406us] +/- 64ms 2024-04-15T21:10:51.531 INFO:teuthology.orchestra.run.smithi151.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 34 -413us[ -413us] +/- 73ms 2024-04-15T21:10:51.531 INFO:teuthology.orchestra.run.smithi151.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T21:10:51.532 INFO:teuthology.orchestra.run.smithi174.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T21:10:51.532 INFO:teuthology.orchestra.run.smithi174.stdout:=============================================================================== 2024-04-15T21:10:51.532 INFO:teuthology.orchestra.run.smithi174.stdout:^+ hv01.front.sepia.ceph.com 3 6 377 35 +854us[ +865us] +/- 67ms 2024-04-15T21:10:51.533 INFO:teuthology.orchestra.run.smithi174.stdout:^* hv02.front.sepia.ceph.com 3 6 377 34 -436us[ -425us] +/- 64ms 2024-04-15T21:10:51.533 INFO:teuthology.orchestra.run.smithi174.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 34 -414us[ -403us] +/- 73ms 2024-04-15T21:10:51.533 INFO:teuthology.orchestra.run.smithi174.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T21:10:51.533 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-15T21:10:51.542 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-15T21:10:51.542 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-15T21:10:51.554 DEBUG:teuthology.orchestra.run.smithi050:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-15T21:10:51.655 DEBUG:teuthology.orchestra.run.smithi151:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-15T21:10:51.730 DEBUG:teuthology.orchestra.run.smithi174:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-15T21:10:51.804 DEBUG:teuthology.orchestra.run.smithi050:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T21:10:51.838 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:10:51.838 DEBUG:teuthology.orchestra.run.smithi151:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T21:10:51.871 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:10:51.871 DEBUG:teuthology.orchestra.run.smithi174:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T21:10:51.902 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:10:51.903 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-15T21:10:51.915 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-15T21:10:51.931 INFO:teuthology.task.internal:Duration was 950.407862 seconds 2024-04-15T21:10:51.931 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-15T21:10:51.951 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-15T21:10:52.025 DEBUG:teuthology.orchestra.run.smithi050:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T21:10:52.028 DEBUG:teuthology.orchestra.run.smithi151:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T21:10:52.030 DEBUG:teuthology.orchestra.run.smithi174:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T21:10:52.073 INFO:teuthology.orchestra.run.smithi151.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T21:10:52.075 INFO:teuthology.orchestra.run.smithi174.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T21:10:52.076 INFO:teuthology.orchestra.run.smithi050.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T21:10:52.518 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-15T21:10:52.518 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi050.front.sepia.ceph.com 2024-04-15T21:10:52.518 DEBUG:teuthology.orchestra.run.smithi050:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-15T21:10:52.540 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi151.front.sepia.ceph.com 2024-04-15T21:10:52.541 DEBUG:teuthology.orchestra.run.smithi151:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-15T21:10:52.572 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi174.front.sepia.ceph.com 2024-04-15T21:10:52.573 DEBUG:teuthology.orchestra.run.smithi174:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-15T21:10:52.595 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-15T21:10:52.596 DEBUG:teuthology.orchestra.run.smithi050:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T21:10:52.598 DEBUG:teuthology.orchestra.run.smithi151:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T21:10:52.617 DEBUG:teuthology.orchestra.run.smithi174:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T21:10:52.666 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-15T21:10:52.667 DEBUG:teuthology.orchestra.run.smithi050:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T21:10:52.669 DEBUG:teuthology.orchestra.run.smithi151:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T21:10:52.688 DEBUG:teuthology.orchestra.run.smithi174:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T21:10:52.862 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-15T21:10:52.874 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-15T21:10:52.874 DEBUG:teuthology.orchestra.run.smithi050:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T21:10:52.903 DEBUG:teuthology.orchestra.run.smithi151:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T21:10:52.931 DEBUG:teuthology.orchestra.run.smithi174:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T21:10:52.961 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-15T21:10:52.972 DEBUG:teuthology.orchestra.run.smithi050:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:10:52.975 DEBUG:teuthology.orchestra.run.smithi151:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:10:52.977 DEBUG:teuthology.orchestra.run.smithi174:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:10:52.998 INFO:teuthology.orchestra.run.smithi050.stdout:kernel.core_pattern = core 2024-04-15T21:10:53.001 INFO:teuthology.orchestra.run.smithi151.stdout:kernel.core_pattern = core 2024-04-15T21:10:53.027 INFO:teuthology.orchestra.run.smithi174.stdout:kernel.core_pattern = core 2024-04-15T21:10:53.050 DEBUG:teuthology.orchestra.run.smithi050:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:10:53.078 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:10:53.078 DEBUG:teuthology.orchestra.run.smithi151:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:10:53.092 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:10:53.093 DEBUG:teuthology.orchestra.run.smithi174:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T21:10:53.107 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T21:10:53.108 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-15T21:10:53.119 INFO:teuthology.task.internal:Transferring archived files... 2024-04-15T21:10:53.120 DEBUG:teuthology.misc:Transferring archived files from smithi050:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319/remote/smithi050 2024-04-15T21:10:53.120 DEBUG:teuthology.orchestra.run.smithi050:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T21:10:53.161 DEBUG:teuthology.misc:Transferring archived files from smithi151:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319/remote/smithi151 2024-04-15T21:10:53.161 DEBUG:teuthology.orchestra.run.smithi151:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T21:10:53.202 DEBUG:teuthology.misc:Transferring archived files from smithi174:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319/remote/smithi174 2024-04-15T21:10:53.202 DEBUG:teuthology.orchestra.run.smithi174:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T21:10:53.242 INFO:teuthology.task.internal:Removing archive directory... 2024-04-15T21:10:53.242 DEBUG:teuthology.orchestra.run.smithi050:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T21:10:53.245 DEBUG:teuthology.orchestra.run.smithi151:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T21:10:53.248 DEBUG:teuthology.orchestra.run.smithi174:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T21:10:53.294 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-15T21:10:53.304 INFO:teuthology.task.internal:Not uploading archives. 2024-04-15T21:10:53.304 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-15T21:10:53.316 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-15T21:10:53.317 DEBUG:teuthology.orchestra.run.smithi050:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T21:10:53.322 DEBUG:teuthology.orchestra.run.smithi151:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T21:10:53.324 DEBUG:teuthology.orchestra.run.smithi174:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T21:10:53.331 INFO:teuthology.orchestra.run.smithi050.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 21:10 /home/ubuntu/cephtest 2024-04-15T21:10:53.337 INFO:teuthology.orchestra.run.smithi151.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 21:10 /home/ubuntu/cephtest 2024-04-15T21:10:53.349 INFO:teuthology.orchestra.run.smithi174.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 21:10 /home/ubuntu/cephtest 2024-04-15T21:10:53.350 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-15T21:10:53.361 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-15T21:10:53.384 INFO:teuthology.nuke:Checking targets against current locks 2024-04-15T21:10:53.412 DEBUG:teuthology.nuke:shortname: smithi050 2024-04-15T21:10:53.412 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:10:53.436 DEBUG:teuthology.nuke:shortname: smithi151 2024-04-15T21:10:53.437 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:10:53.441 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi050.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 20:45:46.692543', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBGISAtBOGaUPpRc9FVZD59QNfE4FFYCZnFJ0ov8h4/sBYpl2zfQmqb/X/nxr26qizSMTf+RasgNnwY8QyNT6rWk='} 2024-04-15T21:10:53.461 DEBUG:teuthology.nuke:shortname: smithi174 2024-04-15T21:10:53.462 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T21:10:53.466 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi151.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 20:45:46.693768', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBE9BI2C0bnKTAnbUt4NR4vdhVFKrgthWGhm/3YJ5PTRRx/YkZpJOlfL6skmV2ZWd5kBkFcfVtN2aXhls6vs2qxc='} 2024-04-15T21:10:53.487 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi174.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-15_20:08:15-orch-main-distro-default-smithi/7657319', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 20:45:46.694803', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJMlTQ2NVG1ZXQnuwmTKBgaa2Nhum59Ajf6HGKhh/kHs38rcIvUAsZWjuTNnRst6j81x/rs9AZyb+wXNDO/DJAc='} 2024-04-15T21:10:53.498 INFO:teuthology.orchestra.console.smithi050:Power off 2024-04-15T21:10:53.498 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T21:10:53.524 DEBUG:teuthology.orchestra.console.smithi050:power off output: Chassis Power Control: Down/Off 2024-04-15T21:10:53.525 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:10:53.545 INFO:teuthology.orchestra.console.smithi151:Power off 2024-04-15T21:10:53.546 DEBUG:teuthology.orchestra.console.smithi151:pexpect command: ipmitool -H smithi151.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T21:10:53.558 DEBUG:teuthology.orchestra.console.smithi050:check power output: Chassis Power is on 2024-04-15T21:10:53.567 DEBUG:teuthology.orchestra.console.smithi151:power off output: Chassis Power Control: Down/Off 2024-04-15T21:10:53.567 DEBUG:teuthology.orchestra.console.smithi151:pexpect command: ipmitool -H smithi151.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:10:53.587 INFO:teuthology.orchestra.console.smithi174:Power off 2024-04-15T21:10:53.587 DEBUG:teuthology.orchestra.console.smithi174:pexpect command: ipmitool -H smithi174.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T21:10:53.596 DEBUG:teuthology.orchestra.console.smithi151:check power output: Chassis Power is on 2024-04-15T21:10:53.610 DEBUG:teuthology.orchestra.console.smithi174:power off output: Chassis Power Control: Down/Off 2024-04-15T21:10:53.610 DEBUG:teuthology.orchestra.console.smithi174:pexpect command: ipmitool -H smithi174.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:10:53.636 DEBUG:teuthology.orchestra.console.smithi174:check power output: Chassis Power is on 2024-04-15T21:10:57.559 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:10:57.597 DEBUG:teuthology.orchestra.console.smithi151:pexpect command: ipmitool -H smithi151.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:10:57.638 DEBUG:teuthology.orchestra.console.smithi174:pexpect command: ipmitool -H smithi174.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:10:57.670 DEBUG:teuthology.orchestra.console.smithi050:check power output: Chassis Power is on 2024-04-15T21:10:57.708 DEBUG:teuthology.orchestra.console.smithi151:check power output: Chassis Power is on 2024-04-15T21:10:57.748 DEBUG:teuthology.orchestra.console.smithi174:check power output: Chassis Power is on 2024-04-15T21:11:01.674 DEBUG:teuthology.orchestra.console.smithi050:pexpect command: ipmitool -H smithi050.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:11:01.709 DEBUG:teuthology.orchestra.console.smithi151:pexpect command: ipmitool -H smithi151.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:11:01.749 DEBUG:teuthology.orchestra.console.smithi174:pexpect command: ipmitool -H smithi174.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:11:01.785 DEBUG:teuthology.orchestra.console.smithi050:check power output: Chassis Power is off 2024-04-15T21:11:01.820 DEBUG:teuthology.orchestra.console.smithi151:check power output: Chassis Power is on 2024-04-15T21:11:01.860 DEBUG:teuthology.orchestra.console.smithi174:check power output: Chassis Power is on 2024-04-15T21:11:01.886 INFO:teuthology.orchestra.console.smithi050:Power off completed 2024-04-15T21:11:05.822 DEBUG:teuthology.orchestra.console.smithi151:pexpect command: ipmitool -H smithi151.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:11:05.861 DEBUG:teuthology.orchestra.console.smithi174:pexpect command: ipmitool -H smithi174.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T21:11:05.934 DEBUG:teuthology.orchestra.console.smithi151:check power output: Chassis Power is off 2024-04-15T21:11:05.972 DEBUG:teuthology.orchestra.console.smithi174:check power output: Chassis Power is off 2024-04-15T21:11:06.035 INFO:teuthology.orchestra.console.smithi151:Power off completed 2024-04-15T21:11:06.073 INFO:teuthology.orchestra.console.smithi174:Power off completed 2024-04-15T21:11:06.177 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/on mon_election/classic task/test_host_drain} duration: 950.4078619480133 failure_reason: '"2024-04-15T21:06:29.685210+0000 mon.a (mon.0) 471 : cluster [WRN] Health check failed: 1 stray daemon(s) not managed by cephadm (CEPHADM_STRAY_DAEMON)" in cluster log' flavor: default owner: scheduled_teuthology@teuthology success: false 2024-04-15T21:11:06.178 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T21:11:06.262 INFO:teuthology.run:FAIL